Jump to content

Jueix

Lifetime Sponsor
  • Posts

    339
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Jueix

  1. Jueix

    Hello All

    Welcome, Remember to stay away from my scripts, They will get you banned fast init.
  2. F2p is highly monitored, Accounts being botted straight from tutorial island tend to get banned really fast in f2p. A few tips which I do to prevent bans from happening. Do tutorial island legit (Obviously.), Switch up the methods every couple of hours if you bot woodcutting for an hour then go to something like combat then it's a bit safer. Do some hand training at times (I know why do hand training when you can bot) I don't do hand training for long maybe about 30 minutes to 1 hour a day. I also always hand do my quest's and not bot them.
  3. Thanks. Updated - Added better checks for paths, how many logs you have burned, levels and rewrite some code to hopefully make the script detect if the player is stuck in a position such as GE pillar and can't light fires and a code to check if they are stuck at the other locations also. (Haven't ran into issues yet, managed to bot 80 fire making on a fresh level 3 straight from tutorial island in f2p since writing this yesterday with out bans).
  4. Introduction Decided to make my own Firemaking script that supports multiple locations and after completing a certain type of log check the bank and does the rest of the logs in the bank if enabled. Features Multiple Locations - Supports, Grand Exchange, Varrock West, Varrok East and Falador east to light logs. Logs - Currently lights, Normal logs, Oak logs, Willow logs, Maple logs, Yew logs and Magic logs. Progressive mode - After using all logs in the bank the script checks the bank for different logs if enabled. For example if you are lighting willows and run out and the bank contains normal logs it will light them. If you are lighting willow's and run out it will light maples, It lights the lowest firemaking item first so if you have maples in bank and normal logs it will light normal logs after running out of willows before the maple. Discord Updates (New) - You can now create a webhook in your discord server and copy the link URL into the GUI to send updates to a discord server, this will be added slowly into all scripts I release from now on which I have the source code for (Know longer have source code for potato script and aerial fisher). Planned Features More Locations - More locations to light at depending on feed back. Wintertod - Support to go and do wintertod at level 50 firemaking. UIM Support - Support for UIM's to use noted log's on the bankers to light fires. Screen shots free image host Progress Reports User Jueix Bugs Grand Exchange - Sometimes it will get stuck behind a Grand Exchange Pillar due to the pathing method I used (This should be fixed but sometimes still happens don't know why). Report a bug format: Location: Status: Log: (If Logged) Description: Download Sadly I won't be adding the source code with this script due to wanting it on SDN one day, Though the SDN Verison will be free. Mediafire http://www.mediafire.com/file/o42pyqojpd259hq/firemaker.jar/file
  5. So in my bot I need the bot to press key 2 (To make an item, can't be asked getting the widget shit for it) I know the keyboard key type for space is 32 but how can I find out the keyboard type for 2? E.G Space is getKeyboard().typeKey((char) 32);
  6. It's in my own clan chat, all my accounts join my main's clan chat then type randomly and some sentences it detect's with message.contains then reply's to that message lol. Was planning on making my next bot script PM people as well, not sure if it helps for botting etc.
  7. I made a bot script that just sits in a clan chat and types random sentences every 30 seconds to 4 minutes from a list and i haven't been banned yet. I get the quests done by hand and skill level. Maybe typing random sentences in clan's prevent bans? Though it stands on one tile all day.
  8. This code is giving me an error, I'm following explv GUI tutorial but changing it so all the money maker scripts I've written are stored into one script. private final JComboBox<Money> MoneySelector; Variable 'MoneySelector' might not have been initialized
  9. Not for me and a few others, Jagex are shit lately.
  10. Oh no, Ideaz someone's making lms bot farm to farm points, oh nooos.
  11. Nope, but found away to make it work. My question though is if a skill level comes up with a while a sleep is going *My current conditional* Can I break the sleep to interact with the skill level and go back instead of waiting for the sleep to end then interact?
  12. it's now not going to this code and checking if he has this amount in inventory before banking. else if(inventory.getItem("Item 3").getAmount() == 28) { Stage = 3; log("Attempting to go to stage 3"); }
  13. it was to bank the items in stage 3. if(inventory.getItem("My item").getAmount() == if I do it this way if i do it this way it works but interact's with the item and breaks the sleep / making of it. log("Dialog before it's shown"); getInventory().interact("Use", "item 1"); sleep(random(1000, 3500)); getInventory().interact("Use", "item 2"); sleep(random(500,2000)); log("Dialog after it's shown"); sleep(random(500,2500)); getKeyboard().typeKey((char)32); log("Dialog after space"); new ConditionalSleep(16000, 19000) { @Override public boolean condition() { log("Attempting to do conditional"); return inventory.getItem("item 3").getAmount() == 28; } }.sleep();
  14. Getting these errors in log, any help? [INFO][Bot #1][03/26 06:20:33 PM]: attempting to bank [INFO][Bot #1][03/26 06:20:34 PM]: Attempting to make the items [INFO][Bot #1][03/26 06:20:34 PM]: Banking the items [ERROR][Bot #1][03/26 06:20:34 PM]: Error in script executor! java.lang.NullPointerException at main.onLoop(main.java:128) at org.osbot.rs07.event.ScriptExecutor$InternalExecutor.run(uk:63) at java.lang.Thread.run(Unknown Source) [INFO][Bot #1][03/26 06:20:34 PM]: attempting to bank [INFO][Bot #1][03/26 06:20:40 PM]: Bank Closed [INFO][Bot #1][03/26 06:20:41 PM]: Attempting to make the items [INFO][Bot #1][03/26 06:20:41 PM]: Dialog before it's shown [INFO][Bot #1][03/26 06:20:46 PM]: Banking the items [INFO][Bot #1][03/26 06:20:47 PM]: Attempting to make the items [INFO][Bot #1][03/26 06:20:47 PM]: Dialog before it's shown Also it's not getting past this part in the script but some how stage set's it self to 3. if (getDialogues().isPendingContinuation()) { log("Dialog after it's shown"); getKeyboard().typeKey((char)32); log("Dialog after space"); new ConditionalSleep(16000, 19000) { @Override public boolean condition() { log("Attempting to do conditional sleep"); return inventory.getItem("The item im making").getAmount() == 28; } }.sleep(); Stage = 3; break; } It's still entering stage 3 with this code. case 2: { log("Attempting to make the items"); if (!inventory.isEmpty()) { if(inventory.contains("my item 1") && inventory.contains("my item 2")) { randomclicks = random(1,5); if(randomclicks < 3) { log("Dialog before it's shown"); getInventory().interact("Use", "my item 2"); sleep(random(1000, 3500)); getInventory().interact("Use", "My item 1"); sleep(random(500,2000)); if (getDialogues().isPendingContinuation()) { log("Dialog after it's shown"); getKeyboard().typeKey((char)32); log("Dialog after space"); new ConditionalSleep(16000, 19000) { @Override public boolean condition() { log("Attempting to do conditional"); return inventory.getItem("My item end").getAmount() == 28; } }.sleep(); } } if(randomclicks >= 3) { log("Dialog before it's shown"); getInventory().interact("Use", "my item 1"); sleep(random(1000, 3500)); getInventory().interact("Use", "my item 2"); sleep(random(500,2000)); if (getDialogues().isPendingContinuation()) { log("Dialog after it's shown"); getKeyboard().typeKey((char)32); log("Dialog after space"); new ConditionalSleep(16000, 19000) { @Override public boolean condition() { log("Attempting to do conditional"); return inventory.getItem("My item end").getAmount() == 28; } }.sleep(); } } else if(inventory.getItem("My item end").getAmount() == 28) { Stage = 3; break; } } } }
  15. the keyboard isn't pressing space bar to make all instead it's using the items together, then just goes straight to backing stage. if (getDialogues().isPendingContinuation()) { getKeyboard().pressKey(KeyEvent.VK_SPACE); int timeout = 1600; //2 tick surpassed + 400ms ping compensate int sleepTime = 700; //1 tick surpassed + 100ms ping compensate //sleep until isPendingContinuation() == false new ConditionalSleep(timeout, sleepTime) { @Override public boolean condition() throws InterruptedException { return !getDialogues().isPendingContinuation(); } }.sleep(); getKeyboard().releaseKey(KeyEvent.VK_SPACE); new ConditionalSleep(16000, 19000) { @Override public boolean condition() { return inventory.getItem("The item I'm making").getAmount() == 28; } }.sleep(); case 3: { log("Banking the items"); if(!getBank().isOpen()){ getBank().open(); new ConditionalSleep(2500, 3000){ @Override public boolean condition(){ return getBank().isOpen(); } }.sleep(); } else { bank.depositAll(); sleep(random(500,2000)); Stage = 1; break; }
  16. Runescape's apparently down due to messing up an update from home, Some of the worlds managed to get the update and others didn't, this also lead to a few duped items I heard so it may be down a while.
  17. Jueix

    Cooking

    Better not be stealing my gnome restaurant bot farm, I have so much ingredients to add (I only have the batta's added to my script for now but it runs them to all gnomes in game) The making of the items is also what i'm struggling with .
  18. Thanks, Just tested it from a wizard's tower to eagles peak with necklace of passage and allow teleports true, It didn't use my seal of passage to teleport to the outpost, but walked all the way to al kharid then used the gliders. How do I find out what teleport's are supported and what not?
  19. The new script I'm making is complex and I was told that web walking handles some obstacle's in the players path, I was wondering if it can use things like spirit tree's, fairy rings ETC to get around faster. For example, I'm located in varrock square and the fastest way to walk to ardy is to go to the GE and then use the spirit tree, Does web walking do this or will you have to write the code to do that your self? An other example is I'm located at duel arena, but want to get to shilo village, fastest way is to get there with just walking and gliders ETC is to get a glider to gnome stronghold from al kharid, then a glider to karamja ETC.
  20. I was once told to name a movie that best described my sex life, Childsplay didn't go down so well. Last Christmas I was so annoyed with my Jimmy Saville advent calender, The flaps only opened from 1 - 16. I'll show my self out.
  21. Me ish best scripter, figured itz out my g0dz
  22. I ish retard, fixed it just by moving to onloop lmfao. Noticed after first run through it didn't do an other and was like fml but on loop fixed.
×
×
  • Create New...