Jump to content

Elixar

Members
  • Posts

    220
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Elixar

  1. So did you get your mum to call jagex? We need answers! For real though, I had a guy log in with his pure so it was me vs his 2 accounts, this is how it went down. Me: Ok you guys take those 2 I got this Crab, Good old Teamwork Them: silence for 1 hour and 10 minutes ( legit ) Me: Must be hard playing 2 accounts at once, I bet you can't drink mountain dew and afk like me Them: Your a fucking loser Me: Hey man your the one that tried to stay, I'm just watching YouTube to see if Russia can really take over Europe Them: LOGS OUT Total battle time: 1h 30m
  2. Feels like mouse recordings are the new black market Meta I'd suck a dick for a 12 hour herblore recording
  3. So this means I'm over thinking issue 1 right? Issue 1 eatFoodtoHeal(); progressiveCombatCheck(); loot(); fightMonsters(); Will be the end result? I just worry that Over 10 hours its a lot of combat setting checks. I guess jagex wont see that... and my CPU probably doesn't care either because it will be only 20-ish extra lines which Is nothing to a PC/ botFarm right? Cheers for the help guys
  4. I'm glad you decided to bot your UIM for health reasons, good luck!?
  5. I hate when they re-use shit as if it's a data size issue or they are just lazy? Its 2019 and the teams still recycling.. Would take seconds to do a contest for designs on 100 items and the winner gets 6 months membership, Bam free slave labour...
  6. This could work, Im just thinking that across 100 accounts you could tell they all use my script because they all Got 10Att 10Str 10Def Got 20Att 20Str 20Def Sure you can set the end result to 30Att 30Str 1Def, but do you see how they all got to those levels through basically the same sequence? I mean I guess instead of attack > 10 I could have Attack > 30% setAttackLevel(50) Later... Attack > 50% setAttackLevel(50) This is getting quite complex hmm.. would that work?! Interesting thoughts @Thiccboi
  7. I've been stuck with this for a few days now, I'm not looking for any code but I do need some advice or guidance __Scenario__ You want 30 Att, 30 Str, 30 Def Issue 1: eatFoodtoHeal(); progressiveCombatCheck(); loot(); fightMonsters(); if you kill 100 Monsters that's 100 combat checks, the method list is long enough already, or maybe I'm just to sensitive? Issue 2: progressiveCombatCheck What would this look like? I thought of: TrainAttack(); If myAttackLevel > setAttackLevel ( you want 30 attack and your attack is now 30 ) {TrainStrength} Else If myStrengthLevel > setStrengthLevel{TrainDefence} Else return Issue 2A: This sucks, what if I'm 1 attack and I want 30A 30S 30D, it's going to train from 1 - 30 attack with only 1 Strength? oh great.. What I'm trying to achieve: Im not sure what this method is going to be called by, especially without doing issue 1 chooseRandomCombatSKill(); This will pick 1 / 3 choices AT RANDOM Train attack 30% of set Level(): Train str 30%(); Train def30% () But what is going to call this method? When? Where? Should I: use onMessage to determine when iv leveled up x levels and it's time to change (feels bad because that's another Seperate Thread looping 100s and 1000s of times?) Do Issue 1 and go with checking your combat levels before or after you kill a monster? 1000s of times... I'm aware of Task/Node systems, but you will still get the issue of not knowing what condition will call the method, you would have to multi thread for just 1 method.... sad times indeed. Please help me people of the scripting underworld , Roast me ?
  8. It's hard to say at this point, Because here are some interesting truths If you never use a bot, You never get banned. Mouse Recorders with multiple different Human recording sessions seem to avoid Bans more successfully, but not totally. Interesting ( There is a guy that is an extreme Mouse-Recording Botter on the forums who gets many 99s whilst avoiding bans most of the time, but not always... Try find his thread) A ) If you make a script that does nothing but Log you into the game, you can still get banned. This really makes anti-ban a tough topic. To me it's because, if your account ever gets scanned or reviewed by the jagex system, It's going to know you used a botting client or, If there is some sort of repetitive mouse recording movements... So regardless of " How many times the PREMIUM SCRIPT checked your Woodcutting exp; scrolled the quest logs at random whilst also; complaining to people around you and checking zeah favour " well well... Jagex gonna find ya son (3.B ) Premium scripts can get you banned no matter how complex the script-Creator programmed it because of the previous point (A) Jagex most-likely owns every single script available to the public, This is the only slight advantage to Private scripts but it still doesn't avoid the major issues above. But don't let these factors stop you from suicide botting Oaks Trees my boi
  9. SOLVED Solution Gui class{ private JSpinner cookLvl; // Adding this was part of the solution public Gui(){ // I left out 99% of my actual GUI because obviously you need frames and panels. cookLvl = new JSpinner(new SpinnerNumberModel(0, 0, 99, 1)); // Adding this was part of the solution JButton startButton = new JButton("Start"); startButton.addActionListener(e -> startButtonActionPerformed(e)); // Adding this was part of the solution started = true; close(); }); } private void startButtonActionPerformed(ActionEvent e) { // Adding this was part of the solution Task.chosenCookingLvl = (int) cookLvl.getValue(); // Adding this was part of the solution this.close(); } } I appreciate the PMS everyone, However I just did the less complex solution, I also forgot to Use Components for what they are intended for. Jtextifled = Text Jspinner = numbers with inbuilt restriction Parameters Instead of using a Jtextfield and Parsing the Integer + setting up a filter to make sure it only accepts numbers in the text feed that is between 0-99 I just used a Jspinner instead and made sure to set proper variables problem solved
  10. I think Osbot is the best, Other sites don't even have good website design, like come on? I don't want to be browsing painful color schemes,
  11. Why would you need Selenium anyway? What's the advantage?
  12. So I read explv's GUI tutorial however It didn't quite cover retrieving integers from JtextField and then setting that input into static Ints I want this Public Int to be changed to whatever the user types into the JtextField I have all the panels and Jframe / Dialogues setup and the GUI is functioning, now Im just trying to get the input data. public static int chosenCookingLvl = Gui.thisLevelCook; // This is in another class, This is where I need the users chosen cooking level to be placed // GUI CLASS public static int thisLevelCook; JTextField cookLvlTxt = new JTextField(7); // This is where you write what level you want cookLvlTxt.addActionListener(cook -> { // This is the action listener attached to the JtextField where you write what level you want. int cookboi = Integer.parseInt(cookLvlTxt.getText().trim()); thisLevelCook = cookboi; // THIS IS WHAT I NEED HELP WITH // How do I get this value }); Any help is appreciated. I have tried to make sense of the JtextField Swing Documents and looked through multiple cancerous Youtube Videos that had horrendous dubstep music and horrendous talking volumes. I have a start button that is functioning, Maybe I need to set the value when the user press's start? not sure how though... How are you guys making Scripts with a GUI that let you choose Input for desired Skill levels?
  13. Why do so many damn people want re sizable mode for their bots? As if it's some kind of advantageous variable?
  14. I mean I feel like he still doesn't take advantage of his position, He could globally adjust the world but he breaks many laws of power, This constantly is leaving him to deal with dim-witted people and shitty talk shows.
  15. They say never meet your heroes, Because you realize how normal they are. You are only seeing the end result of the pros, but you're not seeing the countless hours of challenges they had to overcome! If your going to be a script writer, then you might as well go-all-in and work towards becoming Scripter III ?Goodluck!
  16. Click the link and read some of those, also would help your journy if you look into osbot filters(Search Forum) and Java Lambdas (Search Yotube) getItem(Filter<Item>... filter) Gets the first item found after filtering the container with the specified filter ?
  17. The aim is Efficiency, I am wondering what would put more stress on the program. Option 1 is using only 1 thread onPaint() but if that thread is constantly looping then it's actually a lot of code that can all be removed if you just used a BufferedImage However... Using option 2 would also be re-placing the image over and over again, And i'm not exactly sure if that's being downloaded each looping cycle or it's being Cached naturally to the user. ( I'm not talking about syncing my resource file with the sdn, Im talking about when the script is on the SDN will the osbot client cache the image onto the Bot-Users personal Computer? Is that something I'll have to implement myself? What is more memory/cpu intense? Reloading an image each cycle or changing font types, re-drawing rectangles and colors 10-20 times per loop Option 1 @Override public void onPaint(Graphics2D g) { g.setColor(new Color(34, 30, 73, 255)); g.fillRect(0, 132, 84, 24); // g.drawRect(x, y, width, height); g.fillRect(0, 182, 84, 24); // g.drawRect(x, y, width, height); g.fillRect(0, 232, 60, 24); // g.drawRect(x, y, width, height); g.setFont(new Font("Trebuchet MS", Font.BOLD, 14)); g.setColor(new Color(255, 209, 102)); g.drawString("XP Gained", 3, 129); g.drawString("XP P/hour", 3, 179); g.drawString("Lvls Gained", 3, 229); } Option 2 BufferedImage background; @Override public void onStart(){ try{ background = ImageIO.read(Main.class.getResourceAsStream("/resources/background.png")); } catch(IOException e){ log(e); } } @Override public void onPaint(Graphics2D g){ if(background != null){ g.drawImage(background, null, x, y); } } } Thanks for all your answers wtf these Icons are to big lmao?
  18. You could look into using itemContainer() Making your own list of items so you don't have to keep doing dropAllExcept("blah, blah, blah,") https://osbot.org/api/org/osbot/rs07/api/util/ItemContainer.html
  19. They always come crawling back
  20. I'm tired of these Indian accent tutorials ( no offense but the quality is aids ) I'm even willing to buy a course but I'm not sure which would help make me a better Java Programmer? if (Recommendations() != null) { plz(); }
  21. You either have a 100% botted account or a 100% hand made account there is no value in doing both because in the end, that account will get fucked accept this now.
  22. If it's been banned before you might as well Suicide and transfer cash until it's banned permently Scuffed for Life
×
×
  • Create New...