You don't use the
trie to check if a player is vip, you check by the the array
gs_VipsList
So each time you load a command, you need to reset the array and copy each entry from the file to it.
you could just do this to shortcut it
PHP Code:
public reloadvips(id)
{
for(new i; i < sizeof(gs_VipsList); i++)
{
setc(gs_VipsList[i], charsmax(gs_VipsList[]), 0)
}
plugin_cfg()
}
__________________