Hi !
who can give me the better way to cheack players has changed models in consol using "model" cmd
i tryed that but it is not accurate!
PHP Code:
new new_model[33][32]
new old_model[33][32]
public client_infochanged(id)
{
if(!is_user_alive(id))
get_user_info(id,"model",old_model[id],31)
if(!equali(new_model[id],old_model[id]))
{
client_cmd(id,"drop");
client_print(id,print_chat,"==== Check Model !==== ")
return PLUGIN_HANDLED
}
return PLUGIN_HANDLED
}
__________________