03.03.2010, 20:08
Quote:
|
Originally Posted by killerpiggy
nice FS man! but xD i got a question: how can i get the /jail command get people here?
|
Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/jail", cmdtext, true) == 0)
{
if(GetPlayerColor(playerid) == 0x2641FEAA)
{
new Float:X, Float:Y, Float:Z;
GetPlayerPos(playerid, X, Y, Z);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(IsPlayerInRangeOfPoint(i, 3, X, Y, Z) && i != playerid && GetPlayerColor(i) == 0xFF8000FF)
{
SetPlayerPos(i, 263.7086,81.9716,1001.0391);
SetPlayerInterior(i, 6);
SetTimerEx("JailTimer", 180000, 0, "i", i);
}
}
}
}
return 1;
}

