Nope... It should be like a "superpower".
A cvar. register_cvar("*pluginname*_amount", "10")
The 10 means you need 10 kills to make it enabled then you use like a command... Hmm lets see... +super, so if you type +super in console or if you bound it to a key you get like a random power... Like noclip. Godmode for 5 seconds. And if you try to do +super and you don't have 10 kills, then you get slapped like 15 times, or go on
fire
Quote:
|
Originally Posted by VEN
Like if total kills == 10 then play sound?
|
And that would be easy to make... Atleast I think it is.
It is like
Code:
if(get_user_kills == (get_cvar_num("***_amount") ) ) {
client_cmd(0, "spk *SOUND*.wav")
}
right?