INI_String error (y_ini) - 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: INI_String error (y_ini) (
/showthread.php?tid=419873)
INI_String error (y_ini) -
ZmaXy - 02.03.2013
Код:
.pwn(763) : error 001: expected token: ")", but found "["
.pwn(763) : warning 215: expression has no effect
.pwn(763) : error 001: expected token: ";", but found "]"
.pwn(763) : error 029: invalid expression, assumed zero
.pwn(763) : fatal error 107: too many error messages on one line
Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
4 Errors.
Line:
Код:
INI_String("MaleFemale", PlayerInfo[playerid][xMF], 7);
Entire public:
Код:
Xperia_FNC LoadUser_data(playerid,name[],value[])
{
INI_Int("Password", PlayerInfo[playerid][xLozinka]);
INI_Int("Cash", PlayerInfo[playerid][xNovac]);
INI_Int("Admin", PlayerInfo[playerid][xAdmin]);
INI_String("MaleFemale", PlayerInfo[playerid][xMF], 7);
INI_Int("Godine", PlayerInfo[playerid][xGodine]);
INI_String("Country", PlayerInfo[playerid][xCountry], 21);
INI_Int("Level", PlayerInfo[playerid][xLevel]);
INI_Int("PlacaTime", PlayerInfo[playerid][xPayDayTime]);
INI_Int("OnlineM", PlayerInfo[playerid][xOnlineMin]);
INI_Int("OnlineH", PlayerInfo[playerid][xOnlineHours]);
INI_Int("Respekti", PlayerInfo[playerid][xRespekt]);
INI_Int("Upozorenja", PlayerInfo[playerid][xWarns]);
return 1;
}
Re: INI_String error (y_ini) -
Misiur - 02.03.2013
Line you provided lacks a starting quote, but entire public doesn't. How come?
Re: INI_String error (y_ini) -
newbienoob - 02.03.2013
Your enum?
Re: INI_String error (y_ini) -
ZmaXy - 02.03.2013
Код:
enum xInfo
{
xLozinka,
xNovac,
xAdmin,
xMF,
xGodine,
xCountry,
xPayDayTime,
xOnlineMin,
xOnlineHours,
xLevel,
xRespekt,
xWarns
}
Re: INI_String error (y_ini) -
Misiur - 02.03.2013
pawn Код:
enum xInfo
{
xLozinka,
xNovac,
xAdmin,
xMF[7],
xGodine,
xCountry[21],
xPayDayTime,
xOnlineMin,
xOnlineHours,
xLevel,
xRespekt,
xWarns
}
Re: INI_String error (y_ini) -
newbienoob - 02.03.2013
xMF[string size]
enum
{
...
xMF[7],
...
}
Re: INI_String error (y_ini) -
ZmaXy - 02.03.2013
Thanks guys, rep+