13.03.2017, 06:44
Would it be somewhere along the lines of this?
[/QUOTE]
Not between this but in the public OnCharacterLoad.
PHP Code:
for(new i = 1; i < MAX_CHARACTERSPERPLAYER;i++)
{
mysql_format(mysql, query, sizeof(query),"SELECT `CharacterName`, `ID` FROM `characters` WHERE `MasterName` = '%e' LIMIT 1", PlayerInfo[playerid][Name]);
mysql_tquery(mysql, query, "OnCharacterLoad", "i", playerid);
}
Not between this but in the public OnCharacterLoad.