View Single Post
AlgoChikitito
BANNED
Join Date: Feb 2011
Location: España
Old 04-16-2012 , 17:50   Re: Respawn para deathrun?
#7

Quote:
Originally Posted by joex09 View Post
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);

Con esto podría no terminar la ronda nunca. Y el terrorista ser siempre el mismo
AlgoChikitito is offline