change:
Code:
public Event_DeathMsg(id)
{
set_user_info(id,"model",oldmodel[id])
return PLUGIN_CONTINUE
}
to:
Code:
public Event_DeathMsg() //we don't need an argument
{
new id = get_msg_arg_int(2) //I guess you want the Victim
set_user_info(id,"model",oldmodel[id])
return PLUGIN_CONTINUE
}
__________________