01.07.2012, 16:58
Top of your script under #include <a_samp>
Then you missed out a vital expression, replace:
With this script.
pawn Код:
#include <zcmd>
pawn Код:
CMD:nuke(playerid, params[]) //errored line 5131
{
if(IsPlayerInRangeOfPoint(playerid, 2.0, 415.6206,2533.7751,19.1484))
{
if (gTeam[playerid] == 1)
{
ShowMenuForPlayer(NukeMenu,playerid);
}
return 1;
}
}
pawn Код:
CMD:nuke(playerid, params[]) //errored line 5131
{
if(IsPlayerInRangeOfPoint(playerid, 2.0, 415.6206,2533.7751,19.1484));
if (gTeam[playerid] == 1);
ShowMenuForPlayer(NukeMenu,playerid);
return 1;
}