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

# GetClientUserId

Oyuncunun clientId numarasını userId numarasına dönüştürür.

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

```cpp
int userId = GetClientUserId(client);
```

{% endtab %}

{% tab title="Orijinal Kod" %}

```cpp
int GetClientUserId(int client);
```

{% endtab %}
{% endtabs %}

#### Parametreler

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

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

{% hint style="info" %}
Bu fonksiyon geriye **int** değerinde **userId** döndürür.
{% endhint %}
