I tried to search, but I havent found any respons to my question. I'm trying to empty an array, but I don't know how. I need to give a value, or... I don't know.
eg:
PHP Code:
new g_SelectedAuthId[32]
public function(id)
{
//bla bla
new szID[32]
get_user_authid(target, szID, charsmax(szID))
if(is_user_connected(target))
{
copy(g_SelectedAuthId, 31, szID)
}
}
public AnotherFunction(id)
{
client_print(0, print_chat, "%s", g_SelectedAuthId)
}