Jump to content
UBot Underground

[Sell Plugin] OS (operating system) Addins


Recommended Posts

  • Replies 129
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Popular Posts

http://content.screencast.com/users/lowridertj/folders/Ubot%20Studio%20Plugins/media/48e7671e-09d5-48ae-9f5b-db634968fdbe/OS%20Addins%20-%20New%20sales%20page%20image%208-20-13.png Best use code be

set(#temp_mem, "yes", "Global") thread { loop while($comparison(#temp_mem, "=", "yes")) { plugin command("OSCommandsFunctions.dll", "free memory") wait($multiply(60, 5)) } } co

added clear memory on single process by name

  • 2 weeks later...

I'm trying to use

set(#temp_mem, "yes", "Global")
thread {
    loop while($comparison(#temp_mem, "=", "yes")) {
        plugin command("OSCommandsFunctions.dll", "free memory")
        wait($multiply(60, 5))
    }
}
comment("start your code below here")
comment("your code above here this below stops the thread
where memory is cleared")
set(#temp_mem, "no", "Global")

but i get:

THERE IS AN ERROR IN YOUR CODE

 

Seems like

plugin command

is triggering this ?

 

 

By the way, i should put this at the very beginning of the bot (ex: When it logs in into something)?

It should do the job for all threads (if more than one ?)

Thanks

Link to post
Share on other sites

was updated should include a different name of the plugin

 

set(#temp_mem, "yes", "Global")
thread {
loop while($comparison(#temp_mem, "=", "yes")) {
plugin command("OSCommandsFunctions.dll", "os free memory")
wait($multiply(60, 5))
}
}
comment("start your code below here")
comment("your code above here this below stops the thread
where memory is cleared"
)
set(#temp_mem, "no", "Global")

Link to post
Share on other sites

I'm trying to understand

wait($multiply(60, 5))

mulitply means multiplication in english right ? (odd as it's the same word in french)

Its the first time i see $multiply and it's in a WAIT command ! I see left side/right side ?

 

Can you elaborate on this ?

What's the multiplication doing there and what does the 2 numbers doing ?

 

Also, i have tried this test for the free memory feature

define free memory {
    set(#temp_mem, "yes", "Global")
    thread {
        loop while($comparison(#temp_mem, "=", "yes")) {
            plugin command("OSCommandsFunctions.dll", "os free memory")
            wait($multiply(60, 5))
        }
    }
    comment("start your code below here")
    comment("your code above here this below stops the thread
where memory is cleared")
}
free memory()

So i just call this DEFINE at the beginning of the bot. Does this looks ok ? Do i need to add the other SET command ? The stop one ?

Will this work in the background ? Again after i understand the $multiply thing with the numbers that is.

 

 

By the way, this is a good thing to get guys. Grab it while you can !

Thanks

Link to post
Share on other sites

Thats correct how to do it so it will run in the thread every 5 minutes.

 

the 60 * 5

 

is just for 5 minutes, so you can adjust it if you like.

 

 

Ok you mean that every 60 seconds, it will free up the memory and this will go on for 5 minutes ?

If so, what could be the settings so it runs for as long as the bot is running ?

 

Thanks

Link to post
Share on other sites

Any examples about send keys? I'm curious to see how it work, TJ :D Not sure if it can send keys to the block text in other programs even that program get resized or maxmizied or moved.

Link to post
Share on other sites

Any examples about send keys? I'm curious to see how it work, TJ :D Not sure if it can send keys to the block text in other programs even that program get resized or maxmizied or moved.

 

 

send keys sends the combo keys, or regular keys you type in where the program or window has focus, and the cursor is blinking.

cant be minimized, and has to be the top most program thats being sent keys to.

 

it takes control over keyword actions.

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

no its a wait function there

 

so if its multiple 60 seconds * 5

thats 5 minutes.

 

I see thanks.

What shall i enter to make sure it works for as long as the bot is running ?

 

Also, which one do you recommand using ?

OS FREE MEMORY

or

OS FREE MEMORY SINGLE PROCESS

 

By the way, if i work with SINGLE PROCESS, what should i write into the field name ?

Would:

"MyBot V1.2 -Ubot Studio Developper Edition"

be good if i do see it in my task manager  (the entire sentence that is ?)

Please specify. thanks

Link to post
Share on other sites

if single process it would be the name of your software as it shows in task manager under name/description

 

i use os free memory to clear memory system wide.

 

the example code on the first page original post should work fine.

Link to post
Share on other sites

Thanks

 

There's only one thing left, i don't see any name for a bot i created ? So i guess it must be in the way i saved it ?

I went into the task manager, processes, right clicked and choose properties. File description and name are empty ?

Original file name shows Bot.exe

Don't know if this would help but i see the "image name" of my bot under the image tab in the task manager. in fact, it's the only i see it.

So i'm kinda confused on which i should used ?

Link to post
Share on other sites

Hi i just boought this plugin and i wanted to use it in my bot for fake traffic: http://www.ubotstudio.com/forum/index.php?/topic/15723-how-to-fake-traffic-missing-something/

 

But i have 2 problems. First is that i cant get more than few visitors, because maybe it is not clearing cache, cookies and stuff.

What i did?

I created define with clear cookies, cache, history, flash... and then i run this custom command in thread in new browser.

Now i m not sure if this is maybe not good code?

 

Second problem is the code for memory in first post. It says your code goes here, but my bot use infinitive loop, so do i place this infinitive loop code in the place where it says to place my bot? Will that work? I m not sure if this is working...

 

As well if anyone want to check/fix my source code i could send it to you.

 

Thanks.

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