hi all
I get the error Must be Assigned to an array in the following line:
PHP Code:
for (i = 0; i < 6; i++) g_character_slot[id][i] = temp
the entire code:
PHP Code:
new g_character_slot[33][5]
// ---------------------
new id = data[0]
loading(id)
if (SQL_NumResults(query))
{
new temp[32], i
SQL_ReadResult(query, i++, temp, charsmax(temp))
for (i = 0; i < 6; i++) g_character_slot[id][i] = temp
g_type[id] = LOAD
MENU_account(id)
}