> For the complete documentation index, see [llms.txt](https://sourcemod.botbenson.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://sourcemod.botbenson.com/komutlar/oyuncu-komutlari/isclientconnected.md).

# IsClientConnected

Oyuncunun oyuna bağlı olup/olmadığını kontrol etmenizi sağlar.

{% tabs %}
{% tab title="Kullanım" %}

```cpp
if(IsClientConnected(client)) {
    // Oyuncu Oyuna Bağlı
} else {
    // Oyuncu Oyuna Bağlı Değil
}
```

{% endtab %}

{% tab title="Orijinal Kod" %}

```cpp
bool IsClientConnected(int client);
```

{% endtab %}
{% endtabs %}

#### Parametreler

| Değişken | Tür | Açıklama         |
| -------- | --- | ---------------- |
| client   | int | İstemci numarası |

#### Geri Dönüş Değeri

{% hint style="info" %}
Bu fonksiyon geriye **bool** değerinde **başarılı/başarısız** döndürmez.
{% endhint %}
