Jump to content
UBot Underground

Recommended Posts

When I scrape something, it just stopped sometimes when i exceed 10,000 strings of list.

So I just tried the large list function.. I downloaded it somewhere but I can't find it from..

 

Is the large list total same with just list function?

When I use "%", I think it is not working..

 

What do I use large list to define?

Link to post
Share on other sites
I used the large list like this..

 

plugin command("Bigtable.dll", "Add item to large list", "big_list", #dream)

 

but It did not work..

 

What is the pre-word for large list like $ or % or something? 

Link to post
Share on other sites

When I scrape something, it just stopped sometimes when i exceed 10,000 strings of list.

So I just tried the large list function.. I downloaded it somewhere but I can't find it from..

 

Is the large list total same with just list function?

When I use "%", I think it is not working..

 

What do I use large list to define?

 

 

% is a Ubot list namespace, not a third party plugin, it works the exact same way pretty much but it wont show in the debugger, I have practically never needed it, but its a really really great plugin

Link to post
Share on other sites
  • 1 year later...

how to use it if i want to integrate it with multithread? usually i use next list item. but how to do it with large list? is there any example for this problem? thanks

 

Here is how you can do it if you need the thread code as well let me know

plugin command("Bigtable.dll", "large List from text", "numbers", "1,2,3,4,5", ",", "replace")
set(#listPosition,0,"Global")
loop($plugin function("Bigtable.dll", "Large list total", "numbers")) {
    CommandToCall($plugin function("Bigtable.dll", "Large list item", "numbers", #listPosition))
    increment(#listPosition)
}
define CommandToCall(#_item) {
    alert(#_item)
}
Link to post
Share on other sites

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...