Guten Abend zusammen
Ich habe Annimationen bei mir mit eingebaut
siehe
public OnPlayerCommandText(playerid, cmdtext[])
{
new cmd[256];
//Animationen
if(strcmp(cmd, "/handsup", true) == 0)
{
SetPlayerSpecialAction(playerid,SPECIAL_ACTION_HANDSUP);
return 1;
}
if(strcmp(cmd, "/smoke", true) == 0)
{
SetPlayerSpecialAction(playerid,SPECIAL_ACTION_SMOKE_CIGGY);
return 1;
}
if(strcmp(cmd, "/sit", true) == 0)
{
SetPlayerSpecialAction(playerid,SPECIAL_ACTION_SITTING);
return 1;
}
if(strcmp(cmd, "/piss", true) == 0)
{
SetPlayerSpecialAction(playerid,SPECIAL_ACTION_PISSING);
return 1;
}
//Animationen ende
Bei jeden befehl von denen macht der Player immer Handsup
woran ligt das?