PHP Code:
#include <amxmodx>
#include <amxmisc>
#include <cstrike>
public plugin_init() {
register_plugin("New", "1.2", "P.Of.Pw")
register_logevent("roundstart", 2, "1=Round_Start");
}
public roundstart(id) set_task(1.0,"cmdss",id)
public cmdss(id)
{
if( get_user_team(id) != 1)
{
server_cmd("mp_freezetime 2")
}
else
if( get_user_team(id) != 2)
{
server_cmd("mp_freezetime 5")
}
}
I want the teams CT to start round with 5 seconds later and Ts start round with 2 seconds later .
I hope you understands.
Srry for my
English
.