View Single Post
joex09
New Member
Join Date: Oct 2010
Location: maps/argentina.bsp
Old 04-16-2012 , 12:48   Re: Respawn para deathrun?
#5

Podria servir esto, bien simple. Aun soy nuevo u_u
PHP Code:
#include <amxmodx>
#include <hamsandwich>

#define PLUGIN "/respawn"
#define VERSION "1.0"
#define AUTHOR "author"


public plugin_init() {
    
register_plugin(PLUGINVERSIONAUTHOR)
    
    
register_clcmd("say /respawn""player_respawn")
    
register_clcmd("say_team /respawn""player_respawn")
}

public 
player_respawn(id)
{
    if(
is_user_alive(id))
        return;
    
    
ExecuteHamB(Ham_CS_RoundRespawnid);


Last edited by joex09; 04-16-2012 at 13:07.
joex09 is offline