Tokio Posted September 29, 2018 Share Posted September 29, 2018 (edited) Here is my code: local times = 0 function ada(chosenOption) if chosenOption == 9 then setElementData(root, "played", times+1) end end addEventHandler("onPollEnd", root,ada) I want add +1 times if everyone votes Play again. But does not working.. How to fix? Edited September 29, 2018 by Nerve Link to comment
URBAN Posted September 29, 2018 Share Posted September 29, 2018 local times = 0 function ada(chosenOption) if chosenOption == 9 then setElementData(root, "played", times+1) end end addEvent("onPollEnd",true,true) addEventHandler("onPollEnd", root,ada) 1 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