23.07.2017, 16:29
PHP Code:
stock LoadInventory(playerid)
{
new file[50], s[24];
GetPlayerName(playerid,s,24);
format(file,sizeof(file),"Inventory/%s.sav",s);
for(new i; i < 11; i++)format(s,sizeof(s),"Slot%d",i),PlayerInfo[playerid][Slot][i] = dini_Get(file,s);
return 1;
}