SA-MP Forums Archive
INI_Int error - 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_Int error (/showthread.php?tid=581408)



INI_Int error - Lirbo - 12.07.2015

PHP код:
public OnPlayerConnect(playerid)
{
    new 
INI:ini INI_Open(pFile(playerid));
    
INI_Int("Money",DB[playerid][Money]);
    
INI_Close(ini);
    return 
1;

error 017: undefined symbol "name"
error 017: undefined symbol "value"

Error line: INI_Int("Money",DB[playerid][Money]);


Re: INI_Int error - Vince - 12.07.2015

There is neither a "name", nor a "value" in that line. Are you sure it is not referring to another file?


Re: INI_Int error - Lirbo - 12.07.2015

Quote:
Originally Posted by Vince
Посмотреть сообщение
There is neither a "name", nor a "value" in that line. Are you sure it is not referring to another file?
PHP код:
stock pFile(playerid)
{
    
format(String,sizeof(String),"Accounts/%s.ini",GetName(playerid));
    return 
String;