Jump to content
UBot Underground

Recommended Posts

is there a way to see which element is using memory or process with your plugin ? I thought it was possible but I can't find how...

Link to post
Share on other sites
  • Replies 1k
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Popular Posts

V2.3.1.0 Version of the test (I tested only preliminary. For people who want to try it). Add C/F: hide border style (this app): by name [http://www.youtube.com/watch?v=Cd88e9hW7r4] hide from taskbar

V2.3.0.0   Chang Name: fixed window size ==> fixed window size this app (Api new solution to "TeamViewer") fixed window size min/max ==> set window size min/max this app (Api new solution to "Te

You can download all versions of the URL that was sent to you via email. (beta version) is ideal for people who like to test the new command.

Posted Images

is there a way to see which element is using memory or process with your plugin ? I thought it was possible but I can't find how...

If you mean the Process of Ubot.

ui stat monitor("Now memory use:", #memory)
on load("Bot Loaded") {
    plugin command("Advanced Ubot.dll", "auto free memory", 30, 512, #memory, "False", "True", "True")
}
Link to post
Share on other sites

 

If you mean the Process of Ubot.

ui stat monitor("Now memory use:", #memory)
on load("Bot Loaded") {
    plugin command("Advanced Ubot.dll", "auto free memory", 30, 512, #memory, "False", "True", "True")
}

Thank you,but I was talking about another thing, not in your plugin. This is that http://www.youtube.com/watch?v=8yp37iEzysw but I can't find this plugin on ubot forum.

 

PS: your plugin is a must have ! Really good job ;) Thanks again !

Link to post
Share on other sites

V1.0.0.6 (Ubot Studio ES)

 

Fix: Load ubot file path error
How to fix : Right click >> Run as administator to register file Ubot again.

Link to post
Share on other sites

Pash why is add item to menu not working on either versions of the plugin in ubot 4 or 5?

"menu item add" work in ubot 4/5/5.5

 

Last test menu item add on ubot 5.5

Link to post
Share on other sites

I tried even with the provided code you have in the plugin folder and it's not working here.

 

Can you send new source code to try?

PM.

  • Like 1
Link to post
Share on other sites

Notice

My problem Harddisk I am in the process of recovery.

May take 1-3 days to fix.

Progress, I'll tell you again.

 

 

SORRY TO HEAR THAT !!!!

 

I had one go and now I store all my work, images etc in the cloud.

 

https://www.copy.com/home/ is the one I ended up choosing as not too expensive to upgrade (cheaper than DropBox and Google Drive just slows down your PC)

 

 

 

For when you are back....

 

SPLASH IMAGE - Not Closing

 

I find if your mouse cursor is on the image then it does not close.

Link to post
Share on other sites

Notice.
I fix my computer is partially finished.
The problem stems from the SSD to install windows broken.
I will have to replace a normal harddisk.
And harddisk for storing data mode in raid 1. (raid using software).
Can not open the other computer.
I wasted a lot of time for data recovery.
Sorry for the delay
.

Link to post
Share on other sites

SORRY TO HEAR THAT !!!!

 

I had one go and now I store all my work, images etc in the cloud.

 

https://www.copy.com/home/ is the one I ended up choosing as not too expensive to upgrade (cheaper than DropBox and Google Drive just slows down your PC)

 

 

 

For when you are back....

 

SPLASH IMAGE - Not Closing

 

I find if your mouse cursor is on the image then it does not close.

Thanks for the advice

For your problem, I am currently investigating.

Link to post
Share on other sites

Update V2.3.8.8 (Beta)

 

Add Special Command: Minimize And Restore Simultaneous (Config by "Advanced Ubot Config.txt" file)

Fix Special Command: Reduce the distance between the edges. To increase the use areas

 

Update File: "Advanced Ubot Config.txt"

 

Notice.
For beta no alerts of updates.

post-5560-0-59512400-1416036879_thumb.png

Link to post
Share on other sites

Update V2.3.8.9 (Beta)

Fix Special Command: UbotStudio5Fix Apply Ubot 4

Add Special Command: UbotStudio5FixStyle (Config by "Advanced Ubot Config.txt" file)

Update File: "Advanced Ubot Config.txt"

 

 

Download move to folder "Beta Version"

post-5560-0-86435700-1416068313_thumb.png

post-5560-0-33421200-1416068324_thumb.png

Link to post
Share on other sites

I tested it, works.

Please test with the sample.

 

 

I assure you it often does not close! - I've had several support tickets and had to remove it.

 

Sometimes it works and other time it does not. 

 

I find if your mouse cursor is on the image then it does not close.

 

Link to post
Share on other sites

I assure you it often does not close! - I've had several support tickets and had to remove it.

 

Sometimes it works and other time it does not. 

Update V2.3.9.0 (Beta)

 

fix :

splash screen: not close some time

Test: 100 times

  • Like 1
Link to post
Share on other sites

Hi Pash

 

I noticed elsewhere in the forum that you might have a plugin that can trigger a refresh of the ui html panel - is that included with this or can you sell me a copy if you do at all?

 

Thanks

 

Mike

I send details to the message.
Link to post
Share on other sites

Hi Pash,

 

I just used the following code which should return and integer...

 

     set(#value$plugin function("Advanced Ubot.dll""$math option", 10302, "Multiply/Times", 0.0025, 0), "Global")

 

RESULT: 25.755

 

Expected: 25

Link to post
Share on other sites

Hi Pash,

 

I just used the following code which should return and integer...

 

     set(#value$plugin function("Advanced Ubot.dll""$math option", 10302, "Multiply/Times", 0.0025, 0), "Global")

 

RESULT: 25.755

 

Expected: 25

 

It works correctly

But if you want an integer as you want.

   set(#value, $plugin function("Advanced Ubot.dll", "$math option", 10302, "Multiply/Times", 0.0025, 0), "Global")
    set(#value, $plugin function("Advanced Ubot.dll", "$math option", #value, "Floor", "", 0), "Global")

Rounded up / down rounding

ui button("Up") {
    set(#value, $plugin function("Advanced Ubot.dll", "$math option", 10302, "Multiply/Times", 0.0025, 0), "Global")
    set(#value, $plugin function("Advanced Ubot.dll", "$math option", #value, "Ceiling", "", 0), "Global")
}
ui button("Down") {
    set(#value, $plugin function("Advanced Ubot.dll", "$math option", 10302, "Multiply/Times", 0.0025, 0), "Global")
    set(#value, $plugin function("Advanced Ubot.dll", "$math option", #value, "Floor", "", 0), "Global")
}

post-5560-0-54520500-1416526804_thumb.png

  • Like 1
Link to post
Share on other sites

Thanks for the solution!

 

I thought the purpose of the Decimals setting was to set how many decimals would be in the answer.

Therefore saving another command. I am confused now what is the purpose of the decimals setting in your functions?

 

However, thinking about it, I have been using...

set(#cash, $eval("({#cash}).toFixed(2)"), "Global")

 

To return 3.12  from 3.1234 (Decimal without rounding)

 

Please consider adding this to your $math options.

 

 

Thanks

 

 

Richard

Link to post
Share on other sites

Thanks for the solution!

 

I thought the purpose of the Decimals setting was to set how many decimals would be in the answer.

Therefore saving another command. I am confused now what is the purpose of the decimals setting in your functions?

 

However, thinking about it, I have been using...

set(#cash, $eval("({#cash}).toFixed(2)"), "Global")

 

To return 3.12  from 3.1234 (Decimal without rounding)

 

Please consider adding this to your $math options.

 

 

Thanks

 

 

Richard

 

I specify detailed

post-5560-0-35206500-1416528075_thumb.png

  • Like 1
Link to post
Share on other sites

Thanks for the solution!

 

I thought the purpose of the Decimals setting was to set how many decimals would be in the answer.

Therefore saving another command. I am confused now what is the purpose of the decimals setting in your functions?

 

However, thinking about it, I have been using...

set(#cash, $eval("({#cash}).toFixed(2)"), "Global")

 

To return 3.12  from 3.1234 (Decimal without rounding)

 

Please consider adding this to your $math options.

 

 

Thanks

 

 

Richard

 

and try

 

set(#value, $plugin function("Advanced Ubot.dll", "$math option", 3.1234, "Round", "", 2), "Global")

 

Link to post
Share on other sites
  • PRO locked this topic
Guest
This topic is now closed to further replies.

×
×
  • Create New...