Jump to content

[HELP] Why not working this script?


Tokio

Recommended Posts

Posted (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 by Nerve
Posted
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)

 

  • Like 1

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...