13.03.2010, 08:01
I tried but failed. How can I disable teleport commands when a player is jailed.
Muted players ARE allowed to use teleport commands.
I tried this one, could someone help me with this one and I will do the rest of my TP commands.
Muted players ARE allowed to use teleport commands.
I tried this one, could someone help me with this one and I will do the rest of my TP commands.
pawn Код:
//baseball
if(strcmp(cmdtext, "/baseball", true) == 0)
{
SetPlayerHealth(playerid, 2.0);
SetPlayerArmour(playerid, 0.0);
ResetPlayerWeapons(playerid);
GivePlayerWeapon(playerid, 5, 1);
SetPlayerPos(playerid, 1384.0188,2185.7866,11.0234);
SetPlayerInterior(playerid, 0);
SetPlayerVirtualWorld(playerid, 0);
return 1;
}