SA-MP Forums Archive
Yiterate errors - 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: Yiterate errors (/showthread.php?tid=457242)



Yiterate errors - lramos15 - 10.08.2013

Whenever I try to create this one stock I get these errrors
Quote:

C:\Users\logan_000\Desktop\SAMP Server\pawno\include\YSI\y_iterate.inc(646) : error 017: undefined symbol "Itter_OnPlayerConnect"
C:\Users\logan_000\Desktop\SAMP Server\pawno\include\YSI\y_iterate.inc(909) : error 017: undefined symbol "Itter_OnPlayerDisconnect"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


2 Errors.

Here is the stock
PHP код:
stock SendAdminMessage(string[],color)
{
    foreach(
Player,i)
    {
        if(
PlayerInfo[i] [pAdmin] >= 1) &&  if(GetPVarInt(i"on_adminduty")){
        
SendClientMessage(i,color,string);
    }

and yes I have the foreach include


Re: Yiterate errors - PT - 10.08.2013

you forgot 1 {

pawn Код:
stock SendAdminMessage(string[],color)
{
    foreach(Player,i)
    {
        if(PlayerInfo[i] [pAdmin] >= 1) &&  if(GetPVarInt(i, "on_adminduty"))
        {
            SendClientMessage(i,color,string);
        }
    }
}



Re: Yiterate errors - lramos15 - 10.08.2013

Thank you so much I gave you rep


Re: Yiterate errors - lramos15 - 10.08.2013

Delete this fixed


Re: Yiterate errors - PT - 11.08.2013

Thanks man