Code:
public plugin_end()
{
new iPlayers[32],iNum;
for(new i=0;i<iNum;i++)
{
SaveData(iPlayers[i]);
}
return PLUGIN_HANDLED;
}
Why don't you try adding get_players()?
Code:
stock GetSaveKey(id, Key[64])
{
static AuthId[33];
get_user_authid(id,AuthId,32);
format(Key, 63,"%s",AuthId);
}
Are you kiddin me?
Code:
stock GetSaveKey(id, Key[32])
get_user_authid(id, Key, 31);