01.05.2012, 10:05
Quote:
pawn Код:
|
pawn Код:
if (strcmp("/back", cmdtext, true, 5) == 0) // strcmp also considers "/" when it compares the length of the string
{
TogglePlayerControllable(playerid,1);
Delete3DTextLabel(Paused[playerid]);
SendClientMessage(playerid,COLOR_PINK,"[Pause] You are not Paused Anymore !");
return 1;
}
if (strcmp("/afk", cmdtext, true, 4) == 0) // strcmp also considers "/" when it compares the length of the string
{
Attach3DTextLabelToPlayer(Paused[playerid], playerid, 0.0, 0.0, 0.7);
TogglePlayerControllable(playerid,0);
SendClientMessage(playerid,COLOR_PINK,"[Pause] You are Paused!");
return 1;
}