SA-MP Forums Archive
Load bizz problem? - 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: Load bizz problem? (/showthread.php?tid=381118)



Load bizz problem? - N0FeaR - 28.09.2012

Код:
C:\Users\Hellman.Hellmans-PC\Desktop\snusk\gamemodes\LC-RP.pwn(6874) : error 001: expected token: ";", but found "if"
pawn Код:
}



public LoadBizz()
{
    new file[64];
    for(new idx = 0; idx < sizeof(HouseInfo) ; idx++)
    {
        format(file, sizeof(file),"LCRP/Bizzes/%d.ini", idx)
       line 6874 if(dini_Exists(file))
        {
            BizzInfo[idx][bName] = dini_Float(file,"Name");
            BizzInfo[idx][bLock] = dini_Float(file,"Lock");
            BizzInfo[idx][bHours] = dini_Float(file,"Hours");
            BizzInfo[idx][bPrice] = dini_Float(file,"Price");
            BizzInfo[idx][bEnterX] = dini_Float(file,"Enter_X");
            BizzInfo[idx][bEnterY] = dini_Float(file,"Enter_Y");
            BizzInfo[idx][bEnterZ] = dini_Int(file,"Enter_Z");
            BizzInfo[idx][bExitX] = dini_Int(file,"Exit_X");
            BizzInfo[idx][bExitY] = dini_Int(file,"Exit_Y");
            BizzInfo[idx][bExitZ] = dini_Int(file,"Exit_Z");
            strmid(BizzInfo[idx][bOwner], dini_Get(file,"Owner"), 0, strlen(dini_Get(file,"Owner")), 255);
            BizzInfo[idx][bOwned] = dini_Int(file,"Owned");
            BizzInfo[idx][bInterior] = dini_Int(file,"Interior");
            BizzInfo[idx][bType] = dini_Int(file,"Type");
            BizzInfo[idx][bMoney] = dini_Int(file,"Money");
            //BizzInfo[idx][bInteriorNr] = dini_Int(file,"InteriorNr");
        }
    }
    print("[SCRIPT]: Loaded Bizzes");
    return 1;
}



Re: Load bizz problem? - HyDrAtIc - 28.09.2012

Try this

pawn Код:
public LoadBizz()
{
    new file[64];
    for(new idx = 0; idx < sizeof(HouseInfo) ; idx++)
    {
        format(file, sizeof(file),"LCRP/Bizzes/%d.ini", idx)
       line 6874 if(dini_Exists(file))
        {
            BizzInfo[idx][bName] = dini_Float(file,"Name");
            BizzInfo[idx][bLock] = dini_Float(file,"Lock");
            BizzInfo[idx][bHours] = dini_Float(file,"Hours");
            BizzInfo[idx][bPrice] = dini_Float(file,"Price");
            BizzInfo[idx][bEnterX] = dini_Float(file,"Enter_X");
            BizzInfo[idx][bEnterY] = dini_Float(file,"Enter_Y");
            BizzInfo[idx][bEnterZ] = dini_Int(file,"Enter_Z");
            BizzInfo[idx][bExitX] = dini_Int(file,"Exit_X");
            BizzInfo[idx][bExitY] = dini_Int(file,"Exit_Y");
            BizzInfo[idx][bExitZ] = dini_Int(file,"Exit_Z");
            strmid(BizzInfo[idx][bOwner], dini_Get(file,"Owner"), 0, strlen(dini_Get(file,"Owner"), 255);
            BizzInfo[idx][bOwned] = dini_Int(file,"Owned");
            BizzInfo[idx][bInterior] = dini_Int(file,"Interior");
            BizzInfo[idx][bType] = dini_Int(file,"Type");
            BizzInfo[idx][bMoney] = dini_Int(file,"Money");
            //BizzInfo[idx][bInteriorNr] = dini_Int(file,"InteriorNr");
        }
    }
    print("[SCRIPT]: Loaded Bizzes");



Re: Load bizz problem? - N0FeaR - 28.09.2012

Still same.


Re: Load bizz problem? - HyDrAtIc - 28.09.2012

Can you show us line 6874 by it self only?


Re: Load bizz problem? - N0FeaR - 28.09.2012

pawn Код:
if(dini_Exists(file))



Re: Load bizz problem? - HyDrAtIc - 28.09.2012

pawn Код:
if(dini_Exists(file));
If it didn't work try this

pawn Код:
if(dini_Exists(file)



Re: Load bizz problem? - N0FeaR - 28.09.2012

Quote:
Originally Posted by James_Nick
Посмотреть сообщение
pawn Код:
if(dini_Exists(file));
If it didn't work try this

pawn Код:
if(dini_Exists(file)
Wont work.


Re: Load bizz problem? - HyDrAtIc - 28.09.2012

pawn Код:
;(dini_Exists(file))