Jump to content
UBot Underground

How To Save Increment Number?


Recommended Posts

Hello guys, 

 

So im making a account checker and i got everything working but I want to save the increment row in a table that the account got checked from. 

 

I used ui stat monitor too check what position the loop stops at, but how do i use that number from ui stat monitor too save a row and put into another list?

 

Sorry if im not clear

 

Thanks! :)

Link to post
Share on other sites
  • 3 weeks later...

i found a hint, it shows my variable number on ubot. :Sorry for the post , thanks tho!

hi bro

 

please,Tell Me How did you succeed?i need this option for my bot :/

Can you send only source of this section? :(

Link to post
Share on other sites

Here is how you can see the account you are on and also keep a running account number/row number:

ui stat monitor("Account Number:",$add(#row,1))
clear table(&accounts)
set(#row,0,"Global")
loop(5) {
    set table cell(&accounts,#row,0,"username{#row}")
    set table cell(&accounts,#row,1,"password{#row}")
    comment("Account Number")
    set table cell(&accounts,#row,2,#row)
    wait(1)
    increment(#row)
}
  • Like 1
Link to post
Share on other sites

 

Here is how you can see the account you are on and also keep a running account number/row number:

ui stat monitor("Account Number:",$add(#row,1))
clear table(&accounts)
set(#row,0,"Global")
loop(5) {
    set table cell(&accounts,#row,0,"username{#row}")
    set table cell(&accounts,#row,1,"password{#row}")
    comment("Account Number")
    set table cell(&accounts,#row,2,#row)
    wait(1)
    increment(#row)
}

very good.tnx :)

Link to post
Share on other sites

 

Here is how you can see the account you are on and also keep a running account number/row number:

ui stat monitor("Account Number:",$add(#row,1))
clear table(&accounts)
set(#row,0,"Global")
loop(5) {
    set table cell(&accounts,#row,0,"username{#row}")
    set table cell(&accounts,#row,1,"password{#row}")
    comment("Account Number")
    set table cell(&accounts,#row,2,#row)
    wait(1)
    increment(#row)
}
 

If I want to use this on html panel [  ui stat monitor("Account Number:",$add(#row,1))  ] !!! How I turned؟!

Link to post
Share on other sites

 

 

If I want to use this on html panel [  ui stat monitor("Account Number:",$add(#row,1))  ] !!! How I turned؟!

 

 

This is one way, you can of course add + 1 to it in another variable if you wish:

ui html panel("Account: <label variable=\"#row\"></label>",200)
  • Like 1
Link to post
Share on other sites

 

This is one way, you can of course add + 1 to it in another variable if you wish:

ui html panel("Account: <label variable=\"#row\"></label>",200)

don't work in html. tel me how us this in html panel!!! or sand me example source for html. please my bro. tnx

Link to post
Share on other sites

don't work in html. tel me how us this in html panel!!! or sand me example source for html. please my bro. tnx

 

You can use it with the example above like this:

ui html panel("Account: <label variable=\"#row\"></label>",200)
clear table(&accounts)
set(#row,0,"Global")
loop(5) {
    set table cell(&accounts,#row,0,"username{#row}")
    set table cell(&accounts,#row,1,"password{#row}")
    comment("Account Number")
    set table cell(&accounts,#row,2,#row)
    wait(1)
    increment(#row)
}
  • Like 1
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...