[Request]1.40 taunt script

Xml V2.0

Veteran XV
In need of a simple taunt script that does not play local animations, but instead plays a small "blip" sound whenever i kill someone. I have seen some LocalTaunt scripts for 1.40, but nothing i am looking for and i wouldn't know where to begin to edit lines to get what i want. I have included code for a 1.11 stripped version of what i am looking for. Thanks in advanced for any help.


Code:
Event::Attach(EventYouKilled, Taunt::onYouKilled); 
function Taunt::onYouKilled(%weapon) 
{ 
  localmessage(blip1); 
}
 
killnotify.zip

function KillNotify::Kill(%killer, %victim, %damage)
{
if ( %killer != getManagerId() )
return;

localSound(whit);
}

function KillNotify::TeamKill(%killer, %victim, %damage)
{
if ( %killer != getManagerId() )
return;

localSound(wbleep);
}

Event::Attach(eventClientKilled, KillNotify::Kill);
Event::Attach(eventClientTeamKilled, KillNotify::TeamKill);
 
Back
Top