undefined symbol - 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: undefined symbol (
/showthread.php?tid=443835)
undefined symbol -
Goldilox - 14.06.2013
So I have an if statement if player is banned or not. But why the heck Pos is not defined?
pawn Код:
if(dini_Int(Pos(playerid), "Banned")==1
The error:
Код:
error 017: undefined symbol "Pos"
Re: undefined symbol -
Zex Tan - 14.06.2013
Add something like above your line.
Example:
Also, I don't really understand your Ban line :/
Re: undefined symbol -
Goldilox - 14.06.2013
The ban was just an example, you know when we want to check from the dini we add it like this
pawn Код:
if(dini_Exists(Pos(playerid)))
{
format(str1, 500, "{FFFFFF}Please punch in your password in order to play.\nAccount Name: %s",name);
ShowPlayerDialog(playerid, LOGIN, DIALOG_STYLE_PASSWORD, "Membership Area", str1, "Login", "");
}
It gives me an undefined symbol error of "Pos" not defined.
Re: undefined symbol -
Zex Tan - 14.06.2013
This is my question: Is there any "Pos" inside your line ?
If not you can just create a variable or something like the code I posted just now.
Re: undefined symbol -
Goldilox - 14.06.2013
There is a Pos inside my line.
dini_Exists(
Pos(playerid)
Re: undefined symbol -
DobbysGamertag - 14.06.2013
Isn't it supposed to be:
pawn Код:
if(dini_Int(Pos(playerid), "Banned" == 1)
I forgot how Dini looks, so i could be wrong.
Re: undefined symbol -
gtakillerIV - 14.06.2013
Dude, you don't have a stock named "Pos" in your script.
Re: undefined symbol -
Goldilox - 14.06.2013
Quote:
Originally Posted by DobbysGamertag
Isn't it supposed to be:
pawn Код:
if(dini_Int(Pos(playerid), "Banned" == 1)
|
Yeah but that doesn't helps me fixing the Pos thingy.
Quote:
Originally Posted by gtakillerIV
Dude, you don't have a stock named "Pos" in your script.
|
How would that look like?