Sylver Scott Posted July 7, 2022 Posted July 7, 2022 triggered serverside event giveMoney, but event is not added serverside does anyone how can i fix this Error ? it doesnt give u money afeter u finish the job...
Vampire Posted July 7, 2022 Posted July 7, 2022 Hello @Sylver Scott Moving this to the Scripting section so you can get better assistance.
Shady1 Posted July 7, 2022 Posted July 7, 2022 (edited) 3 hours ago, Sylver Scott said: triggered serverside event giveMoney, but event is not added serverside does anyone how can i fix this Error ? it doesnt give u money afeter u finish the job... You should use trigger for server side event. https://wiki.multitheftauto.com/wiki/TriggerServerEvent I couldn't see the script of the code, I can't help you any further. Edited July 7, 2022 by Shady1
AngelAlpha Posted July 10, 2022 Posted July 10, 2022 On 07/07/2022 at 19:04, Sylver Scott said: triggered serverside event giveMoney, but event is not added serverside does anyone how can i fix this Error ? it doesnt give u money afeter u finish the job... Insert into server file addEvent ("giveMoney", true) addEventHandler ("giveMoney", root, function(...) local args = {...} local pl local money if source == resourceRoot then pl = client money = tonumber(args[1]) and args[1] or args[2] elseif getElementType(source) == "player" then pl = source money = tonumber(args[1]) and args[1] or args[2] elseif args[1] and getElementType(args[1]) == "player" then pl = args[1] money = args[2] end if not pl or not money then error ("Player or money not found!") end givePlayerMoney (pl, money) end) Universal code) P.S. I not testing 1
Tails Posted July 10, 2022 Posted July 10, 2022 You just need to add the event with addEvent and set the second arg to true. https://wiki.multitheftauto.com/wiki/AddEvent
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