View Single Post
Jon
Veteran Member
Join Date: Dec 2007
Old 09-24-2009 , 12:21   Re: Round Start Plugin
Reply With Quote #13

Test your plugins before releasing/editing them.

Quote:
PHP Code:
public logevent_round_start(id
There is no index passed in this event. Use 0 as index.
You didn't fix that.

PHP Code:
precache_sound("ROUND_SOUND"
Remove "" and precache all sounds.

PHP Code:
new const ROUND_SOUND[] =
{
     
"RoundStart/Start1.wav",
     
"RoundStart/Start2.wav",
     
"RoundStart/Start3.wav"
}

client_cmd(id"spk %s"ROUND_SOUND
Won't work as intended.

Last edited by Jon; 09-24-2009 at 12:23.
Jon is offline