26.07.2009, 15:12
111:
114:
123-130:
100:
I don't have a 308 line
EDIT: After looking through the GF gamemode, I noticed that I'm not finished but ive only been able to fix the line 308 errors. I still need help with the others.
Код:
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];
EDIT: After looking through the GF gamemode, I noticed that I'm not finished but ive only been able to fix the line 308 errors. I still need help with the others.