This is a Tauntsystem for the most common gamemodes
[B]What is it?[/B]
Its a simple addon to taunt your mates or enemys.
Use the [B][I]F2[/I][/B] Button to say some random texts at any pitch from HL2 or use custom ones!
or just use the console command = [B][I]taunt[/I][/B]
[B]Youtube[/B]
[media]https://youtu.be/3V5wQuqujp8[/media]
[B]Config[/B]
[img_thumb]http://i.imgur.com/MGQ4kO5.jpg[/img_thumb]
[B]Install[/B]
Just drop the taunts in your addons folder and edit the sh.config.lua
[B]Details[/B]
- Easy to customize, you can take every sound you want!
- Easy to install
- Supports TTT and Deathrun and Sandbox!
- Sometimes you get some funny acts and voices.
GITHUB
[url]https://github.com/habobababo/Tauntsystem[/url][URL="https://github.com/habobababo/Tauntsystem"]
[/URL]DOWNLOAD
[URL="https://github.com/habobababo/Tauntsystem/archive/master.zip"]https://github.com/habobababo/Tauntsystem/archive/master.zip[/URL]
[B]Thanks to[/B]
- [URL="http://steamcommunity.com/profiles/76561198105989414/"]Synix28[/URL] - He is a good video model
Mind adding pictures of the GUI and what it looks like? Could you add darkrp support as well, it would be fun to use. One question though, does this use any TTT or Deathrun hooks?
There is no GUI, just hit the button and start taunting/talking.
Im not using any hooks.
I think you can use sandbox for darkrp
[QUOTE=shadowman110;50050604]There is no GUI, just hit the button and start taunting/talking.
Im not using any hooks.
I think you can use sandbox for darkrp[/QUOTE]
Oh okay awesome! Do you mind if I edit this a bit and add a GUI to select a taunt and add more taunts?
Is there any type of demonstration of you using this addon and is there a way to edit the sound to your liking, for example just use a set of sounds from like a Male Rebel or a Bot from Counter-Strike?
Looks like a decent clientside addon too, keep going dude.
@Kyle_1337, you can do that :).
I try to record a video. Give me some time, i'll give my best :D
Hi, could you add a system that let's only certain ULX ranks use it?
I partially made it work with this modified code of cl_taunts.lua
[CODE]net.Receive( "CoreTauntAct", function()
function checkULX(ply)
if table.HasValue({"superadmin", "admin"}, ply:GetNWString("usergroup")) then
local act = table.Random(CoreTaunts.Acts)
local id = net.ReadString()
for k,v in pairs(player.GetAll()) do
if v:SteamID64() == id then
v:AnimRestartGesture(GESTURE_SLOT_ATTACK_AND_RELOAD, act, true)
end
end
end
end
end)[/CODE]
The fact is that it works 50% meaning only who is admin or superadmin can dance etc but everyone still can play sound if pressing F2 making a whole mess. Could you implement this feature? Thanks a lot!
Hey, if you're making your own gamemode, how can you make taunts work on your gamemode? :)
[QUOTE=hawkeren;50123915]Hey, if you're making your own gamemode, how can you make taunts work on your gamemode? :)[/QUOTE]
I would assume this does not use any DarkRP, TTT or other gamemode hooks so it should work.
[QUOTE=dieubersprach;50066509]Hi, could you add a system that let's only certain ULX ranks use it?
I partially made it work with this modified code of cl_taunts.lua
[CODE]net.Receive( "CoreTauntAct", function()
function checkULX(ply)
if table.HasValue({"superadmin", "admin"}, ply:GetNWString("usergroup")) then
local act = table.Random(CoreTaunts.Acts)
local id = net.ReadString()
for k,v in pairs(player.GetAll()) do
if v:SteamID64() == id then
v:AnimRestartGesture(GESTURE_SLOT_ATTACK_AND_RELOAD, act, true)
end
end
end
end
end)[/CODE]
The fact is that it works 50% meaning only who is admin or superadmin can dance etc but everyone still can play sound if pressing F2 making a whole mess. Could you implement this feature? Thanks a lot![/QUOTE]
I don't like to make my addon depending to other addons.
I can add a feature for admins, donators etc.
ill add this to the config.
edit: It's done. I've updated it for usergroups
Sorry, you need to Log In to post a reply to this thread.