Guest User

Untitled

a guest
May 13th, 2016
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. public CheckAndLoad_user(playerid, name[], value[])
  2. {
  3. INI_Int("ID", PlayerInfo[playerid][pID]);
  4. INI_String("pPassword", PlayerInfo[playerid][pPassword], 128);
  5. INI_String("pEmail", PlayerInfo[playerid][pEmail], 128);
  6. INI_Int("pGender", PlayerInfo[playerid][pGender]);
  7. INI_Int("pAge", PlayerInfo[playerid][pAge]);
  8. INI_String("pOrigin", PlayerInfo[playerid][pOrigin], 128);
  9. INI_Int("pDeaths", PlayerInfo[playerid][pDeaths]);
  10. INI_Int("pKills", PlayerInfo[playerid][pKills]);
  11. INI_Int("pMoney", PlayerInfo[playerid][pMoney]);
  12. INI_Int("pSkin", PlayerInfo[playerid][pSkin]);
  13. INI_Int("pBanned", PlayerInfo[playerid][pBanned]);
  14. INI_String("pBanReason", PlayerInfo[playerid][pBanReason], 128);
  15. INI_String("pBanBy", PlayerInfo[playerid][pBanBy], 128);
  16. INI_String("pBanExpire", PlayerInfo[playerid][pBanExpire], 128);
  17. INI_Int("pPlayerLevel", PlayerInfo[playerid][pPlayerLevel]);
  18. INI_Float("pPosY", PlayerInfo[playerid][pPosY]);
  19. INI_Float("pPosX", PlayerInfo[playerid][pPosX]);
  20. INI_Float("pPosZ", PlayerInfo[playerid][pPosZ]);
  21. INI_Int("pInterior", PlayerInfo[playerid][pInterior]);
  22. INI_Int("pWorld", PlayerInfo[playerid][pWorld]);
  23. return 1;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment