> 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/isfakeclient.md).

# IsFakeClient

Oyuncunun bir bot olup/olmadığını kontrol etmenizi sağlar.

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

```cpp
if(IsFakeClient(client)) {
    // Oyuncu Bir Bot
} else {
    // Oyuncu Bir Bot Değil
}
```

{% endtab %}

{% tab title="Orijinal Kod" %}

```cpp
bool IsFakeClient(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 %}
