SA-MP Forums Archive
How can playerid be undefined? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: How can playerid be undefined? (/showthread.php?tid=432727)



How can playerid be undefined? - KiNG3 - 23.04.2013

pawn Код:
CMD:healme(playerid, params[])
{
    if(IsPlayerInRangeOfPoint(playerid, 7.0, -2249.1409,2065.4504,6.0776) || IsPlayerInRangeOfPoint(playerid, 7.0, -786.4995,424.1443,11.3629) || IsPlayerInRangeOfPoint(playerid, 7.0, 211.1811,386.8993,24.9100) || IsPlayerInRangeOfPoint(playerid, 7.0, 1530.4073,536.8085,7.4502) || IsPlayerInRangeOfPoint(playerid, 7.0, 2567.0186,476.8986,10.9767))
    {
        SendClientMessage(playerid, COLOR_WHITE, "Your position has been loaded.");
    }
    return 1;
}
I get five errors saying that playerid is not defined correctly, which makes no sense....

Am I doing something wrong, because the wiki says you do it this way

pawn Код:
if(!strcmp("/stadium",cmdtext))
{
    if(IsPlayerInRangeOfPoint(playerid, 7.0, 2695.6880, -1704.6300, 11.8438))
    {
        SendClientMessage(playerid,0xFFFFFFFF,"You are near the Stadium entrance!");
    }
    return 1;
}



Re: How can playerid be undefined? - mastermax7777 - 23.04.2013

post errors


Re: How can playerid be undefined? - KiNG3 - 23.04.2013

I just said, all my errors says

Undefined symbol, playerid


Re: How can playerid be undefined? - mastermax7777 - 23.04.2013

oh sorry, i meant to say

post REAL errors

did u include ZCMD?


Re: How can playerid be undefined? - Onfroi - 23.04.2013

pawn Код:
if(!strcmp(cmdtext, "/stadium", true))
{
    if(IsPlayerInRangeOfPoint(playerid, 7.0, 2695.6880, -1704.6300, 11.8438))
    {
        SendClientMessage(playerid,0xFFFFFFFF,"You are near the Stadium entrance!");
    }
    return 1;
}



Re: How can playerid be undefined? - DobbysGamertag - 23.04.2013

i've just compiled this into a test fs, it compiled ok for me Both did actually


Re: How can playerid be undefined? - KiNG3 - 23.04.2013

Onfroi?

That is the example on the SAMP Wiki

The above one, is the one I am doing

I have included ZCMD
pawn Код:
C:\Users\KiNG3\Desktop\Resort Studios\FURIOUS FREEROAM\gamemodes\FD.pwn(335) : error 017: undefined symbol "playerid"
C:\Users\KiNG3\Desktop\Resort Studios\FURIOUS FREEROAM\gamemodes\FD.pwn(336) : error 017: undefined symbol "playerid"
C:\Users\KiNG3\Desktop\Resort Studios\FURIOUS FREEROAM\gamemodes\FD.pwn(337) : error 017: undefined symbol "playerid"
C:\Users\KiNG3\Desktop\Resort Studios\FURIOUS FREEROAM\gamemodes\FD.pwn(338) : error 017: undefined symbol "playerid"
C:\Users\KiNG3\Desktop\Resort Studios\FURIOUS FREEROAM\gamemodes\FD.pwn(339) : error 017: undefined symbol "playerid"
Pawn compiler 3.2.3664          Copyright (c) 1997-2006, ITB CompuPhase


5 Errors.
Already told you the errors... but ok.


EDIT: Fixed it, thanks.


Re: How can playerid be undefined? - KiNG3 - 24.04.2013

Quote:
Originally Posted by ******
Посмотреть сообщение
Those error lines don't match the code you posted.
Yea I know, I was too stupid to realize the lines.....


Re: How can playerid be undefined? - KiNG3 - 24.04.2013

If you looked at the above posts, I said I fixed it.. It's alright

I put the Mapicon's under OnGameModeInit, and OnGameModeInit doesnt have playerid...

It's all fixed ******!