Jump to content

scriptersteve

Members
  • Posts

    258
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by scriptersteve

  1. Idk about gmail, i'd personally just make them with others that don't require such good 'verification'
  2. 20-25m i'd say but you need 100feedback to post, if the account has a registered email will be harder to sell than if it doesn't
  3. Current version of the script: https://www.dropbox.com/s/qc7y16mjn2zakks/Goblins.jar?dl=0
  4. Now has ranged and magic support as well as logging out if you die. Can get there from anywhere. Just start script in say lumbridge with 10 coins in inventory - will talk to al karid bank, withdraw pots and food then start killing :D. To add: maybe kebab buying maybe world hopping some "antiban", not that i've had a ban in all my testing and ran quite alot
  5. What causes the client to crash? Having problems with the whole client freezing upon starting the script
  6. Hold up got this now and no errors so going to test it: public void onMessage(Message m){ if (m.getType() == GAME) { String text = m.getMessage().toLowerCase(); if (text.contains("rune")) { stop(); } if(text.contains("arrow")){ stop(); } } }
  7. Yeah, i don't know how to do it :'). This is my current setup had deleted previous attempts but pretty sure they were worse :'). Current problems are the m is unable to be resolved and the = Message.MessageType(GAME) is incorrect public void onMessage(Message m){ if (m.getType() == Message.MessageType(GAME)) { String text = m.getMessage().toLowerCase(); if (text.contains("rune")) { stop(); } if(text.contains("arrow")){ stop(); } } }
  8. Hi, I want to basically stop my script if chatbox says: You don't have the runes to cast this spell. Having some problems: trying to use chatbox.getMessages(), but keep getting errors in intellij, also just tried the normal message one but think something went wrong there: Would someone be able to show me the correct snippet for detecting this? Thanks
  9. https://gyazo.com/ba97583da6ae294f4f5d9d4e6e00a6a6 Now supports magic
  10. Would this help you think or the inbuilt one good enough?
  11. IF you CARE about the account being banned - don't bot it. If you're not fussed then do bot it
  12. Thanks, yeah it does run well, was just wondering if there were any extra bits i could add but thanks for fb
  13. Hi, I am using the following as my fighting part of my script: Was wondering if there were any additions people would make to improve this? if (!getCombat().isFighting()) { //not in combat if (warrior != null) { //if it exists if (warrior.interact("Attack")) { //attack new ConditionalSleep(3000, 600) { //sleep for 3 seconds or until the condition is true @Override public boolean condition() throws InterruptedException { return getCombat().isFighting(); } }.sleep(); } } }
  14. I really need to get this 100 post count lol, i have them ;(
  15. Have a university assignment due so still need to add above, thanks for all feedback btw, not going to 'fix' this script in terms of layout as i'm just doing it to learn but will be using the recommended approaches in future scripts. Appreciate it all
  16. Now implemented a GUI, Range support, logging out when out of food: To do: Death logout should that happen(could happen on a lvl 3 if you were botting them here) world hopping cabbage looting
  17. Sample proggy on the account i made earlier for testing this script: https://gyazo.com/5a25fa489ad9b5f57337a58287c9e29b
  18. Thanks >.< i was looking in the walking section and surprise it wasn't working ;P
  19. Hi, i know how to turn run on when using a walker, but what about when the character is in fighting mode, and run goes to 0 then I want to turn it on again at say 35%?
×
×
  • Create New...