Karoleq2 Posted January 11, 2017 Share Posted January 11, 2017 (edited) Hello, i made a script that plays winning.mp3 and shows a message in chat after a player killed another player but i dont know if this will work - will this work ? function wasted (killer, weapon, bodypart) local killer = attacker() local sound = playSound("sounds/winning.mp3") local message = outputChatBox ( #006600• #ffffff"..getPlayerName ( attacker ).." #006600is dangerous!" ) setSoundVolume(sound, 0.5) end addEventHandler("onClientPlayerWasted", localPlayer, wasted) Edited January 11, 2017 by Karoleq2 Link to comment
itHyperoX Posted January 11, 2017 Share Posted January 11, 2017 (edited) Quote local message = outputChatBox ( #006600• #ffffff"..getPlayerName ( attacker ).." #006600is dangerous!" ) You dont need that. function wasted (killer, weapon, bodypart) -- Input the name of the function local sound = playSound("sounds/winning.mp3") -- Play wasted.mp3 from the sounds folder setSoundVolume(sound, 1.0) -- set the sound volume to 100% outputChatBox ( #006600• #ffffff"..getPlayerName ( attacker ).." #006600is dangerous!"root,255,255,255,true) end addEventHandler("onClientPlayerWasted", getLocalPlayer(), wasted) Try this Edited January 11, 2017 by TheMOG forgot something Link to comment
^iiEcoo'x_) Posted January 11, 2017 Share Posted January 11, 2017 not method in client side + There you have a line Forgot " outputChatBox ( #006600• #ffffff"..getPlayerName ( attacker ).." #006600is dangerous!"root,255,255,255,true) -- X X X the true outputChatBox ( "#006600• #ffffff"..getPlayerName ( attacker ).." #006600is dangerous!",255,255,255,true) @TheMOG Link to comment
KarolPolishDev Posted January 11, 2017 Share Posted January 11, 2017 thanks for help guys! ( writing from my new account ) Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now