05.03.2011, 09:39
Hey , today i've tryed to make a vip system and i don't know how to make the vip save .
This is my save code
And it save's into a PlayerVip.ini file and all player names in it .
I wanna make save in a folder like "Vips/%s.ini" and a new .ini file for every player .
This is my save code
Код:
stock LoadPlayerVip(playerid) { new ppp[MAX_PLAYER_NAME]; GetPlayerName(playerid,ppp, MAX_PLAYER_NAME); if(dini_Isset("PlayerVip.ini",ppp)) PlayerVip[playerid] = dini_Int("PlayerVip.ini",ppp); } //========================Save Vip===================== stock SavePlayerVip(playerid) { new ppp[MAX_PLAYER_NAME]; GetPlayerName(playerid,ppp, MAX_PLAYER_NAME); dini_IntSet("PlayerVip.ini",ppp,PlayerVip[playerid]); return ; } //========================Get Vip ===================== stock GetPlayerVip(playerid) { new ppp[MAX_PLAYER_NAME]; GetPlayerName(playerid,ppp, MAX_PLAYER_NAME); PlayerVip[playerid] =0; return 1; } //========================Set Vip===================== stock SetPlayerVip(playerid) { new ppp[MAX_PLAYER_NAME]; GetPlayerName(playerid,ppp, MAX_PLAYER_NAME); PlayerVip[playerid]=1; return true; }
I wanna make save in a folder like "Vips/%s.ini" and a new .ini file for every player .