Guest User

Untitled

a guest
Oct 26th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. stock SavePlayer(playerid)
  2. {
  3. //new StrText[80];
  4. //format(StrText, 80,Korisnici , GetName(playerid));
  5. //if(fexist(StrText))
  6. {
  7. new INI:File = INI_Open(Korisnici(playerid));//new INI:File = INI_Open(StrText);
  8. INI_SetTag(File,"data");
  9. INI_WriteInt(File,"Admin",PlayerInfo[playerid][pAdmin]);
  10. INI_WriteInt(File,"Score",PlayerInfo[playerid][pScore]);
  11. INI_WriteInt(File,"Helper",PlayerInfo[playerid][pHelper]);
  12. INI_WriteInt(File,"Skin",PlayerInfo[playerid][pSkin]);
  13. INI_WriteInt(File,"pCash",PlayerInfo[playerid][pCash]);
  14. INI_WriteInt(File,"pBankmoney",PlayerInfo[playerid][pBankmoney]);
  15. INI_Close(File);
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment