Yiterate errors
#1

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
Reply
#2

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);
        }
    }
}
Reply
#3

Thank you so much I gave you rep
Reply
#4

Delete this fixed
Reply
#5

Thanks man
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)