oh ya, heres my source, so the nice person who might help me, sees where i am going with this.
Code:
#include <amxmodx>
#include <amxmisc>
#include <fun>
public plugin_init() {
register_plugin("respawn","1.0","yuri")
register_clcmd("say /respawn","process",0," - to respawn")
return PLUGIN_CONTINUE
}
public admin_revive(id)
{
spawn(id);
set_task(0.5,"spawnagain",id);
}
public spawnagain(id) {
spawn(id);
}
public process(id) {
if (get_user_flags(id)&ADMIN_MAP) {
admin_revive(id)
return PLUGIN_HANDLED
}
else {
// Your help goes here...
I appreciate any help on this.
__________________