zcmd problem!
#2

Top of your script under #include <a_samp>
pawn Код:
#include <zcmd>
Then you missed out a vital expression, replace:
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;
    }
    }
With this script.
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;
 }
Reply


Messages In This Thread
zcmd problem! - by RadekB0Y - 01.07.2012, 16:41
Re: zcmd problem! - by Cxnnor - 01.07.2012, 16:58
Re: zcmd problem! - by RadekB0Y - 01.07.2012, 17:07
Respuesta: zcmd problem! - by bogdyutzu - 01.07.2012, 17:11
Re: zcmd problem! - by RadekB0Y - 01.07.2012, 17:13
Re: zcmd problem! - by marquezsanchez - 01.07.2012, 17:15
Re: zcmd problem! - by Cxnnor - 01.07.2012, 17:19
Re: zcmd problem! - by RadekB0Y - 01.07.2012, 17:21
Re: zcmd problem! - by Steven82 - 01.07.2012, 17:25
Re: zcmd problem! - by RadekB0Y - 01.07.2012, 17:31

Forum Jump:


Users browsing this thread: 2 Guest(s)