Jump to content
UBot Underground

How can we stop the closing of any IN NEW BROWSER/IN SHARED BROWSER consoles ?


Recommended Posts

How can we stop the closing of any IN NEW BROWSER/IN SHARED BROWSER consoles ?

 

For instance, i got a couple of browsers opening independently, to surf certain sites but they al close as soon as nothing happens ?

 

I then added a wait command to see what it would do and it waited the time entered alright but vanished right after the time expired ?

 

How can i make them to stay opened all the time (or until i say to close it, or end it)

 

Can we do this ?

 

Thanks

 

EDITED:

 

Just tried this:

 wait($true)

at the end of my code. It didn't work.

set(#forever, $true, "Global")
        wait(#forever)
loop($true) {
            wait(60)
        }
    }

didn't work either (above)

Link to post
Share on other sites

Try adding a "loop while" with a wait(1) at the end of your browsers and see if they stay opened... while the condition inside the loop is TRUE then the loop will continuously wait 1 seconds (or the time you want) until it will check again and so on... and so on... if your break the condition then the loop stops and so your browsers...

 

edit:

 

wait($true) = it does nothing because wait it measures time so it has to be a number :)

  • Like 1
Link to post
Share on other sites

the correct code is similar to this:

set(#browser, $true, "Global")
loop while($comparison(#browser, "=", $true)) {
    wait(1)
}

and to make it work you need to set the #browser variable to something $false, otherwise it will never stop...

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