13.02.2012, 00:34
I want to switch from dini in yini
Can you just switch this one, so I'll see how and do the rest
OnPlayerRegister
OnPlayerUpdate
OnPlayerLogin
Can you just switch this one, so I'll see how and do the rest
OnPlayerRegister
pawn Код:
format(var, 64,"Level=%d\n",PlayerInfo[playerid][pLevel]);fwrite(hFile, var);
pawn Код:
format(var, 64,"Level=%d\n",PlayerInfo[playerid][pLevel]);fwrite(hFile, var);
pawn Код:
if( strcmp( key , "Level" , true ) == 0 ) { val = ini_GetValue( Data ); PlayerInfo[playerid][pLevel] = strval( val ); }