20.10.2009, 17:40
Is there any way to teleport to class selection.
I've used ForceClassSelection and then SetPlayerHealth(playerid,0);
and that doesn't look nice when you are on server. You type /classselection and you are dead
I've used ForceClassSelection and then SetPlayerHealth(playerid,0);
and that doesn't look nice when you are on server. You type /classselection and you are dead
pawn Код:
if(strcmp(cmd,"/classselection",true)==0)
{
ForceClassSelection(playerid);
SetPlayerHealth(playerid,0);
return 1;
}