Jump to content

Chambo

Members
  • Posts

    64
  • Joined

  • Last visited

  • Feedback

    0%

Profile Information

  • Gender
    Male

Recent Profile Visitors

1722 profile views

Chambo's Achievements

Iron Poster

Iron Poster (3/10)

7

Reputation

  1. Thanks man this helped! I also instead downloaded windows x64 Version instead of x86 and installed it into Program Files not Program Files(x86) and it is finally working again! Thanks for the help everyone!
  2. It is now showing the stable version number. I have disabled my firewall as well as my anti virus and it still will not work. I have Windows 10 and tried running the jar from command prompt and I get the following errors: C:\Users\Chambo\Desktop>java -jar OSBot_2.4.118.jar Error: Unable to access jarfile OSBot_2.4.118.jar C:\Users\Chambo\Desktop>java -Xmx512M OSBot_2.4.118.jar Error: Could not find or load main class OSBot_2.4.118.jar I've also deleted all folders related to OSBot and deleted the jar file and redownloaded it as well. But still nothing. It still brings up the first launch screen but after I click launch OSBot will completely exit.
  3. Yeah I have tried that and still nothing after I click launch...
  4. All these views but no help?... *BUMP*
  5. I've currently tried both OSBot 2.4.118 & 2.4.119 and both have the same problem. I click on the jar and it opens the initial login form. But after I click Launch nothing happens. I have tried... Deleting and redownloading both files Deleting Java and reinstalling Searching google for possible solutions Search OSBot for possible solutions It has been like this for the past 1-2 weeks and I haven't found a solution yet. Does anyone have any insight and/or fixes for this problem? Edit: Now its not showing a stable version? Moderator please close this! Solved!
  6. Also Gets stuck on brawlers and cant move. Also a suggestion.... Possibly move to front of lander when entering boat? Thanks for the script! Edit: Also maybe fix the constant switching to inventory after every spec?
  7. Roughly how many points per hour do you get with this script?
  8. @@Imateamcape So I have 2 separate classes. (main.java & gui.java) gui.java And this is a part of my onStart() in main.java (NOTE: When this isn't commented out the script won't start currently it is commented out) Any help for this?
  9. Hello again guys lol needing some help! My code is a mess now after i've followed a couple VERY different tutorials... So could you guys walk me through how to get my variables from gui class? Below are some of the variables i'm needing and also please walk me through this!! Thanks again in advance guys! Variable : Type String mule : Textbox Boolean useMule : Checkbox String moneyMethod : ComboBox Boolean useAntiBan : Checkbox String muleLoc : ComboBox Oh by the way i'm using WindowBuilder for Eclipse! Not sure if that changes anything :P
  10. Hey guys i'm feeling really stupid right now... lol I don't know if it's because i'm running on no sleep for the past almost 24 hours or what but i can't figure out how to calculate items per hour? I already have current clay mined with the variable xCount; and I have a current time running variable of timeRun; any help please? lol Thanks in advance!
  11. I noticed this a bit after I posted this lol Anyway thanks for the help guys!
  12. @Xious Sorry for grave digging but did you figure this out?
  13. So i'm trying to test this script. And it won't load. Doesn't show anything in the logger either. Any suggestions? Thanks! import org.osbot.rs07.api.map.Area; import org.osbot.rs07.api.model.Player; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import java.awt.*; @ScriptManifest(author = "Chambo", name = "Chambo's SMC", version = 1, logo = "") public class main extends Script { public long pCash = inventory.getAmount(995); public long tradeCash = pCash - 300000; public Area veBank = new Area(3250, 3420, 3257, 3423); @[member=Override] public void onStart() { log("Welcome to Chambo's SMC!"); } private enum State { TRADE, WAIT, WALK }; private State getState() { Player m = getPlayers().closest("username"); if (m != null && veBank.contains(myPlayer())) return State.TRADE; if (m == null && veBank.contains(myPlayer())) return State.WAIT; if (!veBank.contains(myPlayer())) return State.WALK; return null; } @[member=Override] public int onLoop() throws InterruptedException { switch (getState()) { case TRADE: Player m = getPlayers().closest("username"); if(inventory.contains(995) && pCash >= 300001){ if (m != null) { m.interact("Trade"); sleep(random(4980, 5632)); if(trade.isCurrentlyTrading() == true){ if (trade.getOtherPlayer() == "username"){ //do the trade trade.offer(995, (int) tradeCash); //if this doesn't work then use trade.offerAll(995) then put trade.remove(995, 300000) trade.acceptTrade(); log("1st trade window accepted!"); sleep(random(500, 700)); trade.acceptTrade(); log("2nd trade window accepted!"); } else { trade.declineTrade(); } } else { sleep(random(10280, 16024)); } } } break; case WAIT: sleep(random(1213, 3611)); //add more stuff here for anti-ban (click stats, move camera, etc) break; case WALK: sleep(random(500, 700)); //walk to Varrock East Bank settings.setRunning(true); walking.webWalk(veBank); break; } return random(200, 300); } @[member=Override] public void onExit() { log("Thanks for using Chambo's SMC!"); } @[member=Override] public void onPaint(Graphics2D g) { } }
  14. I would but the client crashes and i cant get the log
×
×
  • Create New...