18.10.2011, 11:55
Quote:
|
Код:
stock Crash(playerid,bool:all)
{
if(all == true)
{
GameTextForAll("~CRASH", 10000, 3);
}
else
{
GameTextForPlayer(playerid,"~CRASH", 10000, 3);
}
}
|
pawn Код:
stock Crash(playerid)
{
if(playerid == INVALID_PLAYER_ID) GameTextForAll("~CRASH", 10000, 3);
else GameTextForPlayer(playerid,"~CRASH", 10000, 3);
}

