SA-MP Forums Archive
error 017: undefined symbol "INI_ParseFile" ???? - 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: error 017: undefined symbol "INI_ParseFile" ???? (/showthread.php?tid=443761)



error 017: undefined symbol "INI_ParseFile" ???? - radiobizza - 13.06.2013

Help with this...
PHP код:
error 017undefined symbol "INI_ParseFile" 
PHP код:
stock LoadCameras()
{
    new 
file[64];
    for(new 
0;i<CAMERA_LIMIT;i++)
    {
        
format(file,sizeof file,"/SpeedCameras/%i.txt",i);
        if(
fexist(file))
        {
            
INI_ParseFile(file,"_LoadCam", .bExtra true, .extra i);
            
#if STREAMER_ENABLED == true
                
SpeedCameras[i][_objectid] = STREAMER_ADD(18880,SpeedCameras[i][_x],SpeedCameras[i][_y],SpeedCameras[i][_z],0,0,SpeedCameras[i][_rot]);
            
#else
                
SpeedCameras[i][_objectid] = CreateObject(18880,SpeedCameras[i][_x],SpeedCameras[i][_y],SpeedCameras[i][_z],0,0,SpeedCameras[i][_rot]);
            
#endif
            
SpeedCameras[i][_active] = true;
            if(
SpeedCameras[i][_activelabel] == true)
            {
                
SpeedCameras[i][_label] = AttachLabelToCamera(i,SpeedCameras[i][_labeltxt]);
            }
            
loaded_cameras++;
        }
    }
    
printf("gCamera has succesfully loaded %i camera(s).",loaded_cameras);




Re: error 017: undefined symbol "INI_ParseFile" ???? - IstuntmanI - 13.06.2013

pawn Код:
#include <YSI\y_ini>