Jump to content
UBot Underground

Ubot does NOT work anymore


Recommended Posts

I've contacted support multiple times, and they say they'll reach the higher ups. However, I am left with no answer, and a very expensive unusable software. I've rolled back to 6.1.14 because I've read others saying that's much more stable than the latest 6.3.9. However I cannot even run a VERY basic script that just adds a random number into a list, and a ui stat monitor to show that things are being added to a list:

 

ui stat monitor("List",$list total(%list))
ui button("Clear List") {
    clear list(%list)
}
ui button("Add To List") {
    add item to list(%list,$rand(0,9999),"Don\'t Delete","Local")
}   

When I click the ui button, nothing is updated in the stat monitor, nothing happens in the debugger. I simply cannot used ubot. I've done fresh installs, previous versions, and support is not helping. Any ideas?

Link to post
Share on other sites

try this..  just change from local to global.

 

 

ui stat monitor("List",$list total(%list))
ui button("Clear List") {
    clear list(%list)
}
ui button("Add To List") {
    add item to list(%list,$rand(1,888),"Delete","Global")
}

Link to post
Share on other sites
  • 2 months later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...