I am dumb, i know, but i still need help -
Moustafa - 03.09.2009
pawn Код:
new loggedonto = false
if (loggedonto == false)
{
Kick(playerid);
return 1;
}
Код:
C:\Documents and Settings\Administrator\Desktop\SA-MP Stuff\server2\filterscripts\ladmin4v2.pwn(871) : error 017: undefined symbol "loggedonto"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
1 Error.
Re: I am dumb, i know, but i still need help -
KevKo95 - 03.09.2009
For "new loggedonto = false", you need to add a ;
Re: I am dumb, i know, but i still need help -
Moustafa - 03.09.2009
Done, there is still error.
the error is at "if (loggedonto == false)"
Re: I am dumb, i know, but i still need help -
KevKo95 - 03.09.2009
What's the error?
Re: I am dumb, i know, but i still need help -
Moustafa - 03.09.2009
You're blind? it is in the first post,
pawn Код:
new loggedonto = false;
if (loggedonto == false) // Line 871
{
Kick(playerid);
return 1;
}
Код:
C:\Documents and Settings\Administrator\Desktop\SA-MP Stuff\server2\filterscripts\ladmin4v2.pwn(871) : error 017: undefined symbol "loggedonto"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
1 Error.
Re: I am dumb, i know, but i still need help -
atvcsports - 03.09.2009
if some one is trying to help u dont insult them
Re: I am dumb, i know, but i still need help -
Kyosaur - 03.09.2009
pawn Код:
new bool:loggedonto = false;
if (loggedonto == false) // Line 871
{
Kick(playerid);
return 1;
}
Re: I am dumb, i know, but i still need help -
Norn - 03.09.2009
[quote=Moustafa ]
You're blind? it is in the first post,
The guy was trying to help you and you insult him? Seriously sort out your attitude mate or you'll never get help again.
Re: I am dumb, i know, but i still need help -
Doppeyy - 03.09.2009
I didnt fix this the first post did :
Код:
if (loggedonto == false); // Line 871
{
Kick(playerid);
return 1;
}
And thanks the guy for helping you.
/Artix
Re: I am dumb, i know, but i still need help -
KevKo95 - 03.09.2009
Sorry for trying to help, but you said there was still an error, you didn't say it was THE SAME error. Be more specific next time.