Jump to content

iz0n

Lifetime Sponsor
  • Posts

    169
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by iz0n

  1. sometimes when im mining up stairs, it gets stuck and confused and try accessing unreachable areas.. it tries to mine the rockfalls of the down area instead of the upper next one. # stealth injection client i hope for a fix soon..
  2. price check for this account, im selling next week or so, still have 70+ days of membership fully quested defence
  3. could someone re-make this please? [ERROR][Bot #1][07/12 10:39:10 AM]: Error in bot executor! java.lang.NoSuchFieldError: localWalker at EssenceBringer.WalkPath(EssenceBringer.java:138) at EssenceBringer.onLoop(EssenceBringer.java:85) at org.osbot.rs07.event.ScriptExecutor$InternalExecutor.run(dm:114) at java.lang.Thread.run(Unknown Source) cuz of web walking, its not working anymore..its out dated
  4. i meant "after" reaching 50 points, the mouse pointer position stays in the same place till the next round and doesn't move at all. i think it would be better if you make it exit the screen (-1,-1) more human afk moves, i hope that explains the idea?
  5. bought the script, flawless works fine in every way highly recommended i just have one suggestion, after reaching 50 points of damage, could you add simple anti-ban or at least make the mouse exit the screen to appear more afk
  6. hi, im VB.Net coder , you could say expert.. and this is my very first 4 hours trying to learn it so be a little more understanding if i dont follow what you saying right away. so im trying to learn scripting with osbot. as a start, i picked up this script to start modding with and to learn from. my goal now is to make "simple" unfinished potion maker. everything seems fine, till i encountered with this little problem.. basic review: import org.osbot.rs07.api.model.Entity; import org.osbot.rs07.api.ui.RS2Widget; import org.osbot.rs07.script.Script; import java.util.concurrent.TimeUnit; import org.osbot.rs07.script.ScriptManifest; import java.awt.*; @ScriptManifest(author = "Christ1665-> simple transform by iz0n", info = "unfinished potion maker (use near a bank chest)", name = "unf pots", version = 0, logo = "") public class main extends Script { @Override public void onStart() { } private enum State { BANK, SETTING_UP, WORKING } private State getState() { if (bank.isOpen()) { return State.BANK; } if (!players.inventory.contains("Marrentill") || !players.inventory.contains("Vial of water")) { return State.SETTING_UP; } if (players.inventory.contains("Marrentill") || players.inventory.contains("Vial of water")) { return State.WORKING; } return null; } @Override public int onLoop() throws InterruptedException { switch(getState()) { case BANK: if (!players.getInventory().isEmpty()){ bank.depositAll(); } bank.withdraw("Vial of water", 14); bank.withdraw("Marrentill", 14); bank.close(); break; case SETTING_UP: Entity bank = objects.closest("Bank Chest"); bank.interact("Use"); break; case WORKING: getInventory().getItem("Marrentill").interact("Use"); getInventory().getItem("Vial of water").interact("Use"); sleep(random(700, 950)); RS2Widget w = widgets.get(309, 2); if (w != null) w.interact("Make ALL"); sleep(random(10000, 13000)); } return random(500, 800); } @Override public void onExit() { } @Override public void onPaint(Graphics2D g) { } } what im trying to do, is instead of interacting with the first item of each herb or vial of water, i want to choose to interact with the closet items to each other.. like this: normal way: what im looking for : to use any of these patterns instead of the first image so this is more like anti-pattern, any ideas how to implement it ? edited : how i would do it in vb.net create 2 lists for each item type, use any of the last 4, with the first 4 of the next item to interact with... how do i do this in here
  7. and here a simple mod won't call it a mod, i needed this, so i only changed few line this will make unfinished marrentill pots.. Directions: Make a tab with vials of water and marrentill herbs (clean) Stand in front of a bank chest (I use castle wars bank chest) Start the script make em all import org.osbot.rs07.api.model.Entity; import org.osbot.rs07.api.ui.RS2Widget; import org.osbot.rs07.script.Script; import java.util.concurrent.TimeUnit; import org.osbot.rs07.script.ScriptManifest; import java.awt.*; @ScriptManifest(author = "Christ1665-> simple transform by iz0n", info = "unfinished potion maker (use near a bank chest)", name = "unf pots", version = 0, logo = "") public class main extends Script { @Override public void onStart() { } private enum State { BANK, SETTING_UP, WORKING } private State getState() { if (bank.isOpen()) { return State.BANK; } if (!players.inventory.contains("Marrentill") || !players.inventory.contains("Vial of water")) { return State.SETTING_UP; } if (players.inventory.contains("Marrentill") || players.inventory.contains("Vial of water")) { return State.WORKING; } return null; } @Override public int onLoop() throws InterruptedException { switch(getState()) { case BANK: if (!players.getInventory().isEmpty()){ bank.depositAll(); } bank.withdraw("Vial of water", 14); bank.withdraw("Marrentill", 14); bank.close(); break; case SETTING_UP: Entity bank = objects.closest("Bank Chest"); bank.interact("Use"); break; case WORKING: getInventory().getItem("Marrentill").interact("Use"); getInventory().getItem("Vial of water").interact("Use"); sleep(random(700, 950)); RS2Widget w = widgets.get(309, 2); if (w != null) w.interact("Make ALL"); sleep(random(10000, 13000)); } return random(500, 800); } @Override public void onExit() { } @Override public void onPaint(Graphics2D g) { } } if you wish for another type of herb, just look at the source and replace "Marrentill" with the herb you want. ""Case sensitive""
  8. send you what?? read the title? [REQ]= request...
  9. hi, as you know with the G.E and the prices is going up and down, the general store is the best well as there are many many general stores around RS, and mostly are close to bank every item is 1 GP, hammer/chisel/tinderbox.... so for every 28 gp u spend, its guaranteed 3k profit at least, and every item is selling over 120gp+ ea anyone interested? http://postimg.org/image/l6c0rdyj9/
  10. hey, just wondering how much this account worth in [paypal/07GP] 150+ q.p fully quested defence + prayer + [desert treasure\lunar...most pvp quests done] no black marks of any type [clean] + very nice 3 letter name full void 3 styles CMB 82 spawn in edgeville 5m ripoff jagex lmao
  11. iz0n

    CzarRangingGuild

    dude, im still getting the same message.. bot is back online, but nothing
  12. iz0n

    CzarRangingGuild

    im running it same as i did for quit some time, nothing have been touched with the settings,interfaces, or anything.. still cant get it working again
  13. iz0n

    CzarRangingGuild

    hi, i started having a problem today console: [INFO][07/01 07:57:05 AM]: Started bot #1 [DEBUG][07/01 08:00:00 AM]: Loading script id : 538 [DEBUG][07/01 08:00:01 AM]: Loaded script! [DEBUG][07/01 08:00:01 AM]: Launching script... [INFO][Bot #1][07/01 08:00:01 AM]: Loaded 4 built-in random solvers! [ERROR][07/01 08:00:01 AM]: Failed to start script [Nul] java.lang.NullPointerException at org.osbot.Gc.<init>(wo:158) at org.osbot.rs07.event.ScriptExecutor.prepare(qh:171) at org.osbot.rs07.event.ScriptExecutor.start(qh:197) at org.osbot.CoN.run(hn:186) at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) at java.lang.Thread.run(Unknown Source) using fixed mode, injection client, no breaks. any ideas?
  14. look pro alright, tomorrow i will be trying to get my 1st ever fire cape wish me luck
  15. i still cant believe that this script or idea can make money at all
  16. in my case, we are all guilty even the 15 years old kids are being held in courts for nothing...absolutely nothing. and when the hearing date comes in, the hole thing is postponed to another 3-4 weeks, again and again and again. a friend of mine have been held their for over 2 years, with no REAL proof of any crime.. in case someone is wondering where is that?.... welcome to Palestine
  17. iz0n

    CzarRangingGuild

    bought it today, and just tested it. looks promising.. i have only 1 suggestion, # add random slight delay after finishing the 10 shots, like 0.5-1.5 second before talking again to judge. anything else? nope..this script is amazing, thanks for ur impressive coding
×
×
  • Create New...