Can someone help me with this. I want a random person to be choosen at the beginning of the round or sometime around then. I want it like this so it chooses one person out of everyone in the server and gives them stuff.
PHP Code:
public event_round_start(id)
{
set_task(5.0,"random_person",id)
}
public random_person(id)
{
//random person code in here.
}
public person(id)
{
//e.g.
cs_set_user_health(id,1000)
//other stuff to
}
Thats how i want it. If you can help me thanks alot.