Jump to content

Impensus

Scripter I
  • Posts

    1070
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Impensus

  1. https://gyazo.com/4548b43fc13e356bd49cb1c619669aed# Gl!
  2. This is correct. I can't remember the source I read this from, but it modifies the client code responsible for the new afk timer so the account can remain logged in up to the 6hr original limit.
  3. Try using puppeteer if you have issues with selenium detection as that might bypass most browser flags. Either way you will have to use 2captcha just one method might get you the cheaper to solve ones.
  4. Pending SDN Approval! Live on the SDN! What does the script do? - The script will automate the fetching of spices required for skill level boosts. It does this by chasing the rats within Evil Dave's lair and looting every spice which is dropped. How do I use the script? - 1. Start the script anywhere near Edgeville bank / Evil Dave's Lair 2. Have a fully grown cat that is currently following you 3. Select your cat from the GUI and enjoy! Troubleshooting - Running the script with a Kitten is supported although the user must ensure the Kitten doesn't turn into a fully grown cat during runtime.
  5. It wasn't typing due to me using the wrong function for typing as nBacon mentioned. Should have used getKeyboard.typeKey()
  6. Ahh my bad I didn't check the keycode range, this solution is better so go with this :p.
  7. Holy shit dude that's some extremely overkill code. Just do the following: (note indents are messed up for whatever reason.) public void randomKey() throws InterruptedException{ int random_length = random(n); // put the length you want your names to go up to as n for (int i = 0; i < random_length; i=i+1){ int X = random(48, 90); getKeyboard.pressKey(x); sleep(random(x,y); } } The following code will randomly generate a value from 0-9, a-z (Key codes 48 -> 90) and then loop for the max length you wish your name to be. In the loop it will type random characters that it generates. That should put you on the right lines. Don't believe you have to releaseKey() either when typing. I might be mistaken however and referring to another function.
  8. Hey guys, I'm looking for someone to do a cheap and simple logo for my first free script. Hit me up on discord and I can explain my requirements. Discord: Impensus#2428 Cheers!
  9. Willing to take 70m to just get rid of the account if either of you are interested.
  10. 1. Pictures of the account stats - https://gyazo.com/2432b7b0ed56a82770298f96b17bcfe8 2. Pictures of the total wealth (if there is any) - https://gyazo.com/3c827477bb42ff580469f85e77c98524 3. Pictures of the quests completed - Just quests for NMZ (MTD) 4. The price you will be starting bids at - 30m 5. The A/W (Auto-win) for your account - 90m 6. The methods of payment you are accepting Bitcoin / RSGP 7. Your trading conditions - MM or I go first 8. Pictures of the account status - https://gyazo.com/4f69621a97fcb656574d0a4aeaa0d6dc 9. Original/previous owners AND Original Email Address - I am the OO. I own the email which this account belongs to.
  11. What types of skill would you like 3 ticking? I'm gonna start the script today/tomorrow most likely. Could you reply to my question on discord so I know the best way to create the script?
  12. Confidence is the neural networks calculation in it's own confidence it is making the correct decisions. They don't represent the other bots directly but more the whole neural network as a whole (which also contains the data from the other bots) to inform decisions. Edit: Also must point out that in the case of Zulrah as there is only one bot and no teaming the confidence score only uses the data from that zulrah bots instance.
  13. Runescape isn't that complex that you'd require 100s of thousands in server processing fees just to run a neural network for. Sure there's a few inputs but to calculate things to such a high confidence in a medieval clicking simulator would be overkill...
  14. My account isn't level 20 but is close. I thought I would post just incase you are interested/get no other posts. Details: Level 18 (Halfway to 19) Has some good pokemon like Gyarados. Others such as Flareon Arcanine too. I can provide screenshots/more info you may require about the account. I haven't played for a while so I am unsure if anything else would be useful. If you wish to, you can contact me on Discord (Impensus#2428) or here.
  15. Your misunderstanding how reCAPTCHA works. Your solution is sent off and verified server side. If correct you are returned a captcha token which is valid for 2 minutes. All these websites do is manually solve the captcha on your page and send you back a valid token which you can use to pass verification. There is no token to "intercept" as you only get a valid token returned from solving the puzzle either manually or paying a captcha solving service.
  16. lmao gtfo if you have nothing to contribute to our community except hate and criticism.
  17. While loops within your onLoop or subsequently called functions are bad practice. The reason for this is that in itself your onLoop is a while loop that will constantly run. By nesting while loops within, you can cause script performance issues and issues with other Osbot functions not being reachable (I remember when I did this my scripts always took ages to stop, leading me to believe that the Osbot functions called upon exiting were not called until the while loop exited). The best case is to just structure your code so that the correct functions/if statements will be reached when the onLoop iterates over everything repeatedly. As for your specific issue, the .webWalk should handle objects like doors? I assume your issue when using the first snippet is as follows: 1. Loops through the areas 2. False return in one of the areas 3. Carries onto next area in the loop after returning. False return causes rest of the tasks in the previous area not to be executed. - Using the while loop mitigates this as it will be stuck within the the navigating block until reaching the area to conduct tasks, although it isn't best practice. What I would personally do (unsure if it is what other scripters would suggest). 1. Create an execution chain of functions that carry out the task in each area, they should be called after navigating to the area. Part of these tasks is to webwalk to the next area 2. In my onLoop, instead of iterating over each area, have an if statement for each area starting at the first. When the script completes these tasks then it will webwalk to the next area and reach the next areas if statement and conduct the tasks within there. 3. This execution chain continues until every area has been navigated to and all the tasks completed for each. By doing this, you have lots more code (and I agree it is less elegant of a solution than a for loop). You however, are certain that if your script has another strange/erroneous return whilst navigating, the next iteration of the onLoop will resume in the correct place and carry on with the execution of the tasks at hand.
  18. Any chance I could get a trial?
  19. Finishing my personal private scripts then will look into it probably in a few weeks or so. Add my discord if you want as I would appreciate your help and support - Impensus#2428
  20. lmao take it up with paypal if you think their site is awkward. Nothing to do with osbot.
×
×
  • Create New...