Jump to content
UBot Underground

[Free] Local Dictionary Plugin - Local Variables Issue Workaround


Recommended Posts

  • 4 weeks later...
  • Replies 84
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Popular Posts

Hello everyone, Another brilliant creation of mine   Description : This plugin is used to save temporary data (same as variables) so you can use it across your code   How does it work ? Each thread

Update 1.2.1 images shows the new commands and functions       -added also a thread container command for running dialog controls in STA mode (workaround for the http captcha dialog and other simila

Yes i'm aware there is couple of issues with it , it was a test release never meant to be public! use the old version ! (download link has been updated again) Regards

Posted Images

eror download 

 

<Error>


<Code>AllAccessDisabled</Code>

<Message>All access to this object has been disabled</Message>

<RequestId>1825AC33E5098738</RequestId>



<HostId>

bKMB2T5ExcsOT1Uuoqn7g64tYhcDvTyv083hkWrrSa2z3oM9jsI4NE86hBWcmG4JwFYKXR1fCn0=

</HostId>




</Error>
Link to post
Share on other sites
  • 2 months later...
  • 8 months later...
  • 4 months later...
  • 2 months later...
 clear all data
plugin command("LocalDictionary.dll", "clear global dictionary")
thread {
    plugin command("LocalDictionary.dll", "init local dictionary")
    plugin command("LocalDictionary.dll", "local dictionary add", "a", 1)
    alert($plugin function("LocalDictionary.dll", "$local dictionary get", "a"))
    plugin command("LocalDictionary.dll", "clear local dictionary")
}
thread {
    plugin command("LocalDictionary.dll", "init local dictionary")
    plugin command("LocalDictionary.dll", "local dictionary add", "b", 2)
    alert($plugin function("LocalDictionary.dll", "$local dictionary get", "b"))
    plugin command("LocalDictionary.dll", "clear local dictionary")
}
thread {
    plugin command("LocalDictionary.dll", "init local dictionary")
    alert($plugin function("LocalDictionary.dll", "$local dictionary get", "c"))
}

I always got the value of key 'c' is 2, in this code is the last value of key 'b'

Link to post
Share on other sites
plugin command("LocalDictionary.dll", "clear global dictionary")
thread {
    plugin command("LocalDictionary.dll", "init local dictionary")
    plugin command("LocalDictionary.dll", "local dictionary add", "a", 1)
    alert("t1:{$plugin function("LocalDictionary.dll", "$local dictionary get", "a")}")
    plugin command("LocalDictionary.dll", "clear local dictionary")
}
thread {
    plugin command("LocalDictionary.dll", "init local dictionary")
    plugin command("LocalDictionary.dll", "local dictionary add", "a", 2)
    alert("t2:{$plugin function("LocalDictionary.dll", "$local dictionary get", "a")}")
    plugin command("LocalDictionary.dll", "clear local dictionary")
}
thread {
    plugin command("LocalDictionary.dll", "init local dictionary")
    alert("t3:{$plugin function("LocalDictionary.dll", "$local dictionary get", "a")}")
}

if thread3 failed on "local dictionary add", the thread3's "local dictionary get" will get thread2's value

Link to post
Share on other sites
  • 4 months later...
  • 8 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...