View Single Post
Author Message
hu3br
Senior Member
Join Date: Apr 2015
Old 09-11-2016 , 08:04   Restart Round Advanced - Question
Reply With Quote #1

Hi, how i make to restart round, but back to the last round! Example : 15x10 and i type !rr, will restart game on 15x10! Thanks

Code for rr
PHP Code:
#include <sourcemod>

public Plugin:myinfo 
{
    
name "RR",
    
author "hu3br",
    
description "Restart Round",
    
version "private",
};

public 
OnPluginStart()
{
    
RegAdminCmd("sm_rr"RRADMFLAG_GENERIC)
}
        
public 
Action:RR(clientargs)
{
    
ServerCommand("mp_restartgame 1");
    
PrintCenterTextAll(" RESTART ROUND ");


Last edited by hu3br; 09-23-2016 at 10:32.
hu3br is offline