D:\SA Modding\Scripting\gamemodes\test.pwn(111) : error 004: function "ini_GetKey" is not implemented D:\SA Modding\Scripting\gamemodes\test.pwn(111) : error 033: array must be indexed (variable "keytmp") D:\SA Modding\Scripting\gamemodes\test.pwn(114) : error 004: function "ini_GetValue" is not implemented D:\SA Modding\Scripting\gamemodes\test.pwn(114) : error 033: array must be indexed (variable "valtmp") D:\SA Modding\Scripting\gamemodes\test.pwn(123) : error 004: function "ini_GetKey" is not implemented D:\SA Modding\Scripting\gamemodes\test.pwn(123) : error 033: array must be indexed (variable "key") D:\SA Modding\Scripting\gamemodes\test.pwn(124) : error 004: function "ini_GetValue" is not implemented D:\SA Modding\Scripting\gamemodes\test.pwn(124) : error 033: array must be indexed (variable "val") D:\SA Modding\Scripting\gamemodes\test.pwn(125) : error 004: function "ini_GetValue" is not implemented D:\SA Modding\Scripting\gamemodes\test.pwn(125) : error 033: array must be indexed (variable "val") D:\SA Modding\Scripting\gamemodes\test.pwn(126) : error 004: function "ini_GetValue" is not implemented D:\SA Modding\Scripting\gamemodes\test.pwn(126) : error 033: array must be indexed (variable "val") D:\SA Modding\Scripting\gamemodes\test.pwn(127) : error 004: function "ini_GetValue" is not implemented D:\SA Modding\Scripting\gamemodes\test.pwn(127) : error 033: array must be indexed (variable "val") D:\SA Modding\Scripting\gamemodes\test.pwn(12 : error 004: function "ini_GetValue" is not implemented D:\SA Modding\Scripting\gamemodes\test.pwn(12 : error 033: array must be indexed (variable "val") D:\SA Modding\Scripting\gamemodes\test.pwn(129) : error 004: function "ini_GetValue" is not implemented D:\SA Modding\Scripting\gamemodes\test.pwn(129) : error 033: array must be indexed (variable "val") D:\SA Modding\Scripting\gamemodes\test.pwn(130) : error 004: function "ini_GetValue" is not implemented D:\SA Modding\Scripting\gamemodes\test.pwn(130) : error 033: array must be indexed (variable "val") D:\SA Modding\Scripting\gamemodes\test.pwn(100) : warning 204: symbol is assigned a value that is never used: "tmp2" D:\SA Modding\Scripting\gamemodes\test.pwn(30 : warning 203: symbol is never used: "IsNumeric" D:\SA Modding\Scripting\gamemodes\test.pwn(30 : warning 203: symbol is never used: "ReturnUser" D:\SA Modding\Scripting\gamemodes\test.pwn(30 : warning 203: symbol is never used: "gPlayerAccount" |
keytmp = ini_GetKey( PassData );
valtmp = ini_GetValue( PassData );
key = ini_GetKey( Data ); if( strcmp( key , "Level" , true ) == 0 ) { val = ini_GetValue( Data ); PlayerInfo[playerid][pLevel] = strval( val ); } if( strcmp( key , "AdminLevel" , true ) == 0 ) { val = ini_GetValue( Data ); PlayerInfo[playerid][pAdmin] = strval( val ); } if( strcmp( key , "Registered" , true ) == 0 ) { val = ini_GetValue( Data ); PlayerInfo[playerid][pReg] = strval( val ); } if( strcmp( key , "Money" , true ) == 0 ) { val = ini_GetValue( Data ); PlayerInfo[playerid][pCash] = strval( val ); } if( strcmp( key , "Health" , true ) == 0 ) { val = ini_GetValue( Data ); PlayerInfo[playerid][pHealth] = strval( val ); } if( strcmp( key , "Armour" , true ) == 0 ) { val = ini_GetValue( Data ); PlayerInfo[playerid][pArmour] = strval( val ); } if( strcmp( key , "Model" , true ) == 0 ) { val = ini_GetValue( Data ); PlayerInfo[playerid][pModel] = strval( val ); }
new tmp2[256];