hello there, it's my first post here and im just happy that here's alot's of expert's to help me ;)
here's my problem that i can't find, im newbie in scripting
Code:
/*
VoMod v0.1
By JoneQ
*/
#include <amxmodx>
#include <amxmisc>
new P_LOL[] = "misc/lol.wav";
public plugin_init() {
register_plugin("Voice Mod","0.1","JoneQ");
register_concmd("say /lol","LolPlay");
}
public LolPlay(id)
{
precache_sound(P_LOL)
}