Jump to content
UBot Underground

[Free] Bulk reset plugin (lists and variables)


Recommended Posts

Bulk reset plugin

 

Multi List reset command

http://robobest.com/wp-content/uploads/2014/03/bulkimagereset.png Put all your lists you want to be cleared. Note  needs to be in text format as shown in the picture.

 

 

 

Bulk Variable set

http://robobest.com/wp-content/uploads/2014/03/bulkreset.pngPut all the variables you want to be set in list of variables and the value to set the to in reset value note needs to be in text format as shown in the picture

 

 

you can get the plugin from here anyone who has downloaded my other plugins should have a email.

 

http://robobest.com/2014/03/02/bulk-reset-plugin/

  • Like 3
Link to post
Share on other sites

Looks great, thanks for sharing. I guess this only works with global vars/lists?

yep global due to the api limits aymen has a good plugin for local stuff

Link to post
Share on other sites

thanks guys I should have mentioned you can create dynamic variables as well. I managed to get to about 10000 before ubot blew up.

 

example

 

set(#inc, 0, "Global")

loop(10) {
    plugin command("Variablemulti.dll", "Bulk Variable Set", #inc, "#var{#inc}")
    increment(#inc)
}

 

  • Like 1
Link to post
Share on other sites

thanks guys I should have mentioned you can create dynamic variables as well. I managed to get to about 10000 before ubot blew up.

 

example

 

set(#inc, 0, "Global")

loop(10) {

    plugin command("Variablemulti.dll", "Bulk Variable Set", #inc, "#var{#inc}")

    increment(#inc)

}

 

 

 

Argh.. Awesome! This is a killer feature. Having that in a free plugin is awesome! Thanks a lot for that!

 

Dan

Link to post
Share on other sites

is it possible with your amazing plugin to make a loop and increment a variable (#compte) like this : 

 

 
 
set(#checksicompteok, 0, "Global")
 
loop($list total(%Accounts)) {
    if($comparison("#compte{#inc}", "=", "true")) {
        then {
            alert("{$list item(%Accounts, #checksicompteok)} ok")
        }
        else {
            alert("{$list item(%Accounts, #checksicompteok)} dead")
        }
    }
    increment(#checksicompteok)
    increment(#inc)
}
 
 
This is making me crasy, if someone would please help me ?
Link to post
Share on other sites

 

is it possible with your amazing plugin to make a loop and increment a variable (#compte) like this : 

 

 
 
set(#checksicompteok, 0, "Global")
 
loop($list total(%Accounts)) {
    if($comparison("#compte{#inc}", "=", "true")) {
        then {
            alert("{$list item(%Accounts, #checksicompteok)} ok")
        }
        else {
            alert("{$list item(%Accounts, #checksicompteok)} dead")
        }
    }
    increment(#checksicompteok)
    increment(#inc)
}
 
 
This is making me crasy, if someone would please help me ?

 

from my understanding your looking for a dynamic comparison right? example

 

($comparison("variable here can change everytime"=", "true"))

Link to post
Share on other sites

Thank you for your answer ;)

Yes, I have variables made dynamicly (#compte0, #compte1, #compte2...) the number of variables #compte depends on a total list....

 

These variables could be 'true' or 'false' (checkbox)

 

so i need to make a loop to compare if #compte0 = true then alert OK , else alert DEAD. If #compte1 = true then alert OK , else alert DEAD

Etc...

 

I can give you my code on PM not to poluate your thread if you want ;)

Link to post
Share on other sites

you can use bills plugin that has case. or if its a lot of variables i'll add dynamic comparsion command to this plugin which will allow you to do this.

Link to post
Share on other sites

you can use bills plugin that has case. or if its a lot of variables i'll add dynamic comparsion command to this plugin which will allow you to do this.

Thank you , but what is the plugin you're talking about ? I don't know Bill ...

Link to post
Share on other sites
  • 2 weeks 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...