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



error 017 - iThePunisher - 14.12.2014

error 017: undefined symbol "INI_Booln"

this is the code
pawn Код:
INI:antidb[](name[], value[])
{
    for(new i = 1; i < 44; i++)
    {
        new str5[9];
        format(str5,9,"weapon%d",i);
        INI_Booln(str5, wc_iWeaponData[wc_VehicleWeapons] [i]);
    }
    return 0;
}



Re: error 017 - AdHaM612 - 14.12.2014

Quote:
Originally Posted by ******
Посмотреть сообщение
[*]INI_Bool
name[] - Name of the INI textual identifier.
variable - Variable to store to.

Saves the passed value as a boolean (true/false) if the name matches.
The right one is "INI_Bool" , not "INI_Booln".