25.09.2015, 18:18
Put a printf after the datas are loaded, like this
Then post your server log please.
Код:
public LoadUser_data(playerid,name[],value[]) { INI_String("pPassword", pInfo[playerid][pPassword], 129); INI_Int("pXP",pInfo[playerid][pXP]); INI_Int("pKills",pInfo[playerid][pKills]); INI_Int("pDeaths",pInfo[playerid][pDeaths]); INI_Int("pRank",pInfo[playerid][pRank]); INI_Int("pEvac",pInfo[playerid][pEvac]); INI_Int("pAdminLevel",pInfo[playerid][pAdminLevel]); INI_Int("pVipLevel",pInfo[playerid][pVipLevel]); INI_Int("pHour",pInfo[playerid][pHour]); INI_Int("pMin",pInfo[playerid][pMin]); INI_Int("pSec",pInfo[playerid][pSec]); INI_Int("pMapsPlayed",pInfo[playerid][pMapsPlayed]); INI_Int("pCoins",pInfo[playerid][pCoins]); printf("Password: %s", pInfo[playerid][pPassword]); return 1; }