Probably because you're using ResetHUD, which is called more than just by respawning.
It's not safe to use really, but here, try this:
Code:
#include <amxmodx>
#include <amxmisc>
#include <engine>
#include <fun>
public plugin_init()
{
register_plugin("User Spawn","v1","Dest Romano")
register_event("ResetHUD","Event_ResetHUD","be")
}
public Event_ResetHUD(id)
{
if(!is_user_alive(id))
{
return PLUGIN_HANDLED
}
client_print(id, print_chat, "[AMXX] You have respawned!")
new authid[32]
get_user_authid(id,authid,31)
if(equali(authid,"STEAM_0:0:4644907"))
{
new origin1[3] = { -554, 3636, 364 }
set_user_origin(id, origin1)
set_task(0.1,"tele2",id)
}
return PLUGIN_HANDLED
}
public tele2(id)
{
new origin2[3] = { -1332, 3417, 196 }
set_user_origin(id, origin2)
return PLUGIN_HANDLED
}
__________________