OnPlayerRequestClass TR

From SA-MP Wiki

Jump to: navigation, search



Description:

Oyuncu, skin seçme ekranında skin değiştirdiğinde bu callback çağırılır.


Parameters:
(playerid, classid)
playeridSınıfını değiştiren oyuncunun ID'si.
classidO an oyuncunun baktığı sınıfın ID'si.


Return Values:

Returning 0 in this callback will prevent the player from spawning. The player can be forced to spawn when SpawnPlayer is used however the player will re-enter class selection the next time they die.


Image:32px-Ambox_warning_orange.png

Note

Sınıf üretmek için bkz:AddPlayerClass


Image:32px-Ambox_warning_orange.png

Note

Bu callback, oyuncu F4'e basınca da çağırılır.


public OnPlayerRequestClass(playerid,classid)
{
    if(classid == 3 && !IsPlayerAdmin(playerid))
    {
        SendClientMessage(playerid,COLOR_GREEN,"Bu skin sadece admin içindir!");
        return 0;
    }
    return 1;
}

Related Callbacks

The following callbacks might be useful as well, as they are related to this callback in one way or another.


Related Functions

The following functions might be useful, as they're related to this callback in one way or another.