Jump to content

Chikan

Members
  • Posts

    902
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

Everything posted by Chikan

  1. Account sold to @dieg0 for 18m. Thank you to all who bidded!
  2. Interesting idea, but the prices would need to be decided on by the mods, or the community(imo). I think this is a good start, also could prevent price check thread spam since everything already has a set community value, instead of a guess.
  3. Someone should look into this. edit: nvm decode already responded
  4. probably either didn't have a check for the make X box, or didn't add a sleep to stop it from spamming after its already typed something in
  5. I saw his Rcing video, it was pretty neat. @Juggles made me a script sometime last year that did basically the same thing.
  6. I just started writing scripts for OSbot, but have been in school for programing for about 2 months now. To a total beginner, I'd stress taking things one at a time. Ie. For a combat script, making it attack the monster, then making it wait to attack because you're in combat, then make it eat food. Try not to right away think of doing it all at once, because you may get overwhelmed. Make sure you read some guides, Explv's helped me and a couple others did. Good luck.
  7. Okay, and? It might be wrote like that as a finished product but it is written how it is written because that is what the interface reads and that's what the script looks for. Stop being a downer. Seems like a very odd thing to nitpick about when you're not 100% correct.
  8. Is it really though? You're welcome for the trigger. :^)
  9. Noted -- bids still closing today by 11pm est
  10. No not currently, I can eventually look into adding that.
  11. Chikan's Varock West Smither GUI Features: Requirements: None, just start with a hammer in your inventory. Updates: v1.1 - Fixed some logic involving banking to make it more responsive v1.2 - Fixed a bug involving the script being stuck on a loop when the user ran out of materials, and also removed the make-X option and added make all in its place. Also I cleaned up the paint a little bit and added a display for xp gained. Download: --TBA-- Will give testers a .jar to use until the script is eligeble for SDN Teaser: Proggies:
  12. If nobody posts another bid by tomorrow this time, I can sell the account to you. Lemme know if you use skype or discord, and pm your name on them.
  13. Yeah, you're right. I just fixed it I think, but I got lazy and just added bank fillers so I didn't make a difference when I was testing.
  14. Made my first script today, and by first I mean first OSBot script. I struggled through the API, so be gentle: I'm learning. import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import org.osbot.rs07.api.map.constants.Banks; import org.osbot.rs07.api.ui.RS2Widget; @ScriptManifest(author = "Chikan", name = "Dagger Maker 3.0", info = "Dagger Maker 3.0", version = 0.3, logo = "") public final class Main extends Script { public enum State { USEANVIL, SMITH, BANK, WAIT } private State getState() { RS2Widget smithingInterface = getWidgets().get(312, 2, 2); if(smithingInterface == null&&canSmithBars()) return State.USEANVIL; if (smithingInterface != null&&canSmithBars()) return State.SMITH; if (!getInventory().contains("Bronze Bar")) return State.BANK; return State.WAIT; } @Override public final int onLoop() throws InterruptedException { switch (getState()) { case USEANVIL: getObjects().closest("anvil").interact("Smith"); sleep(random(3000, 4000)); log("starting state: USEANVIL"); break; case SMITH: log("starting state: SMITH"); getWidgets().get(312, 2, 2).interact("Smith 10"); sleep(random(12500, 14500)); break; case BANK: log("starting state: BANK"); bankHandler(); case WAIT: log("starting state: Wait"); sleep(random(250, 700)); break; } return random(200, 400) ; } //space for making variables //inventory check private boolean canSmithBars() { return getInventory().contains("Bronze Bar"); } //anvil entity public boolean useAnvil() { return getObjects().closest("anvil").interact("Smith"); } //bank handler (if statement loop) private void bankHandler() throws InterruptedException { if (!Banks.VARROCK_WEST .contains(myPosition())) { getWalking().webWalk(Banks.VARROCK_WEST ); } else if (!getBank().isOpen()) { getBank().open(); } else if (!getInventory().isEmptyExcept("Bronze Bar", "Hammer")) { getBank().depositAll(); } else if (getBank().contains("Bronze Bar")) { getBank().withdrawAll("Bronze Bar"); } else { stop(true); } } }
  15. Chikan

    PC Main

    Noteable quests: Zulrah unlocked, horror from the deep, MM1, Lunar Dip. Account has no bans, I'm looking to get what it's worth right now. Not what it's worth with X or Y. Thanks
  16. 1m OSRS -> 10k Emerald-Dream Message me on here, or on discord. I'm in the OSBot discord, pm me directly, or shout me out with @chikan
  17. assuming prayer is quested, and you could get mith gloves. I could see it selling for 50-60m, much more if you got 94 mage and ancients.
  18. Keep in mind that you have 19 posts (at the time of my response) & you have no feedback. Account value can vary heavily depending on that.
×
×
  • Create New...