-
Posts
339 -
Joined
-
Last visited
-
Feedback
100%
Everything posted by Jueix
-
I'm still new to this so instead of using conditional sleeps all the time I decided to do this code at the top of my file. public final class Sleep extends ConditionalSleep { private final BooleanSupplier condition; public Sleep(final BooleanSupplier condition, final int timeout) { super(timeout); this.condition = condition; } public Sleep(final BooleanSupplier condition, final int timeout, final int interval) { super(timeout, interval); this.condition = condition; } @Override public final boolean condition() throws InterruptedException { return condition.getAsBoolean(); } public static boolean sleepUntil(final BooleanSupplier condition, final int timeout) { return new Sleep(condition, timeout).sleep(); } public static boolean sleepUntil(final BooleanSupplier condition, final int timeout, final int interval) { return new Sleep(condition, timeout, interval).sleep(); } } I get this error in eclipse The public type Sleep must be defined in its own file. I try and run this code and get this error in the log when running. if(inventory.contains(Items)) { if(!myPlayer().isAnimating() || !myPlayer().isMoving()) { inventory.getItem("Knife").interact("Use"); sleep(random(400,2000)); inventory.getItem(Items).interact("use"); Sleep.sleepUntil(() -> !inventory.contains(Items) || getDialogues().clickContinue() || myPlayer().isMoving(), 15000); log("can I continue to cook or no?"); continuecooking = 1; log("Continuein to cook activated."); } } The error in the console when running shows [ERROR][Bot #1][02/12 01:57:38 PM]: Error in bot executor or from Error class (and not Exception)! java.lang.Error: Unresolved compilation problem: at core.Sleep.sleepUntil(Main.java:43) at core.Main.onLoop(Main.java:204) at org.osbot.rs07.event.ScriptExecutor$InternalExecutor.run(ji:48) at java.lang.Thread.run(Unknown Source)
-
So I've tried a few methods and getting the bot to fish from all spots in aerial fishing but it only goes for the ones that shows up in the black line closest to the character doesn't fish any of the ones located in the red line or any off the ones further out than the red line but the bird can reach, think it may be a problem with the closest function. the code I have that runs in the best at the moment is if(!inventory.isFull()) { NPC Fishspot = npcs.closest("Fishing spot"); Fishspot.interact("Catch"); sleep(random(1000,4000)); } but would rather allow it to fish from all of the fishing spots. (Also the paint doesn't always seem to load each time I start the script, sometimes it does sometimes it doesn't, working on getting a better paint made but that's it for now.)
-
So I'm making my own aerial fishing bot and when it's time to knife the fish the player continues to use the knife on the fish instead of waiting until none is in inventory. If it clicks to use the knife on the last fish and it dissapear's the knife will be in used and it won't know what to do for fishing. if(continuecooking == 1) //used to continue what he's doing, if an interface for level interupts he would go back to fishing. { if(inventory.contains("Bluegill")) { if(!myPlayer().isAnimating() || !myPlayer().isMoving()) { inventory.getItem("Knife").interact("Use"); sleep(random(100, 1500)); inventory.getItem("Bluegill").interact("use"); continuecooking = 1; sleep(random(1000, 6000)); } else { return 600; } } else if(!inventory.contains("Bluegill")){ continuecooking = 0; } } if(equipment.isWieldingWeapon("Cormorant's glove") && continuecooking == 0) { if(!inventory.contains("Fish chunks") && inventory.contains("Bluegill") || !inventory.contains("Fish chunks") && inventory.contains("Common tench") || !inventory.contains("Fish chunks") && inventory.contains("Mottled eel") || !inventory.contains("Fish chunks") && inventory.contains("Greater siren")) { if(!myPlayer().isAnimating() || !myPlayer().isMoving()) { inventory.getItem("Knife").interact("Use"); sleep(random(1000, 3000)); inventory.getItem("Bluegill").interact("use"); continuecooking = 1; } else { return 600; } } if(!inventory.isFull()) { NPC Fishspot = npcs.closest("Fishing spot"); //finds the man for the glove Fishspot.interact("Catch"); sleep(random(1000,4000)); } if(inventory.isFull()) { if(!myPlayer().isAnimating() || !myPlayer().isMoving()) { inventory.getItem("Knife").interact("Use"); sleep(random(1000, 3000)); inventory.getItem("Bluegill").interact("use"); continuecooking = 1; } } }
-
so I'm getting errors after I installed Eclipse again after uninstalling due to getting mad at a script I was making (Now have to re-make this script again). Multiple markers at this line - The left-hand side of an assignment must be a variable - Syntax error on token "Invalid Character", delete this token - Syntax error, insert "AssignmentOperator Expression" to complete Expression - Syntax error, insert ";" to complete BlockStatements code in bot for error is private String[] EquipmentName = {"Rune Arrows"}; and I have import org.osbot.rs07.api.model.Entity; import org.osbot.rs07.api.ui.Skill; import org.osbot.rs07.utility.ConditionalSleep; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import java.util.Arrays;
-
Love the one with johnsons graphics Might get one, Same type with pandas I'll hit you up in PM's and add the discord on the graphic if its yours.
- 134 replies
-
- signatures
- thread
- (and 5 more)
-
Great man, my previous botting. I also managed to get 99 range and fletching on it. with a lot more progress before its long devastating ban. Currently I'm doing a new account with no progress post ETC, mining and smithing are planned for next on account below .
-
I was about to post the same thing, Used it to get 99 on a lot of accounts but recently when I use it, It gets stuck at the door and I have to baby sit it, Not the first script I'm having issues with and the bots are getting stuck though.
-
Pay for my bot script to be made and hey I will share this method just not the script haha. It's just getting my hands on the script, Don't get paid till next Friday and to busy to write my own.
-
Just tested it for 10 minutes using 10k investment, going to see how stable it is for a few days first. Total Profit in 10 minutes is 101k.
-
So is it worth making a gold farm, I found away to make 500k an hour at the moment on fresh lvl 3's just need membership. No requirements. accept bonds (Obv's) the price's go up and down a lot so sometimes can make 250k an hour but at the moment it's over 500k an hour.
-
Don't bot the same thing constantly, Move to other skills after a while, Do quests ETC. Don't continue to do the same thing for hours on end, I can bot accounts to certain 99's a lot using this method with the occasional ban. For example my account is a bot only account I bot woodcutting for lets say 1 to 2 hours, Then move onto fishing for about an hour, Then fletching ETC. The way I do a 99 though is bot lets say firemaking for 2 hours move onto my next 99 I plan on getting bot it for 1 hour then move onto an other skill such as cooking or fishing bot for an hour then go back to firemaking for 3 hours then log out and switch to an other account to bot.
-
***Script Giveaway*** by Khal Scripts!!! Join Now!
Jueix replied to Khaleesi's topic in Spam/Off Topic
pandas -
Glitch patched
-
So I use to glitch in RS3 and oldschool but quit the glitch scene last year and now mostly just bot runescape to see how fast I can get banned. After playing about on a new account I bought it membership and started messing about with some quests and minigames for the last 5 days and found a few new glitches (Won't leak). One of these is a glitch that for some reason it will stop magic and ranged NPC's from attacking you and can be used anywhere, Meele NPC's though can still attack you which I find really weird, may post a youtube video demonstrating it in action. I was wondering though seen as most of my mates that glitch have quit runescape if anyone is interested in glitching and wants to learn some basics. If so hit me up on discord and I will try and teach you. I won't leak any glitches to you but show you the basics on how to find them ETC. (note: A lot of people in the glitch community use to hate me for leaking glitches, I have a lot of glitches which I know that I found in 2012 and haven't told anyone that works to this day in RS3. I have a few in OSRS but they useless graphical, If you use to be an x glitcher and know me, I will show you some of these glitches and we can form a team). Discord Jueix Rated#6834
-
Online hit me up.
-
Online, I'm Free for the next 4 days to train. Hit me up.
-
Introduction So, I have been playing PUBG on PC, Mobile and Xbox for a while now. I got bored one night and decided to host a tournament on a PUBG Xbox group on Facebook with an entry fee off £2 per squad the winner takes home 0.8%. There was 20 teams of 4 which landed in the prize pool £40 and done £40 X 0.8 and took £8 for my self due to the time I spent hosting it. After the game ended, I messaged the winners on Xbox and asked how they would like to receive the money and each received £8. That got me thinking on hosting Tournaments regularly and making a prize pool for players to take home while all having fun. These will currently be hosted on the PS4 when the game is released for it and Xbox One, I won't be doing the PC version at the moment due to hackers. Yes there are glitches and ways to cheat on Xbox one and PS4 when released but I will be monitoring people closely. How the tournaments will be ran? The tournament host which will be a rank you can earn will post a time and date of a tournament on discord and our facebook page with an entry fee. This should give people enough time to get a team together if its a team tournament. The tournament host will keep track of the people that's paid for the tournament, For example if one person pay's the entry fee for the team game, the tournament host will need to take note and ask the player for the names of all team members taking part. The tournaments will run on the date and time which the host announced on one of the pages but will only run if the host thinks there's enough players to run a tournament. If the host doesn't have enough players to run the tournament then all people taking part will get a full refund (Note if one player pays for the full squad to take part, only that player will get a refund). All players will then be invited to a match and will have to play to the end, The host will have to stay in the match and spectate all the players if he gets killed and wait till the game is over, When the team get's a chicken dinner the host will contact the team and pay them invidually or pay the team's leader the amount if the team agrees for the leader to give them the split. Types of tournaments? These will be decided by the tournament host, but can range from just a normal game to using no guns only meele weapons to boxing matches in the mirmar boxing ring. What if the host scams and doesn't do a tournament or pay me the winnings? If the host scam's you by not throwing a tournament or not paying you the winning's you will be fully refunded the entry fee by me. To request a refund contact me on the forums this is posted on, discord or message the facebook page, Please remember to take screen shots of the host's name, the start time of the tournament and have proof of payment. If you have these I will happily refund you the full amount, If the tournament doesn't happen and if you don't have these but enough people report it, all players will be refunded the full amount for entry. How do I know if he's a trusted host? There will be a role on the discord server with a green name called Trusted Hosts, The hosts will also be listed in pinned messages, on the Facebook page and on the website when created and on this forum post. Sounds good whats the rules? Tournament Rules Players: 1)If you have a squad and have paid the entry fee for the tournament you will inform an administrator or tournament hoster the names of your team members on xbox and give them the names for discord if they are on discord. 2)The tournament host or administrator will keep track of everyone in your squad so at the end of the match they will pay each squad member there share unless the squad says overwise in which one member will take the money to split between them if its a squad tournament. 3) Charge backs for paypal will result in an instant ban for all squad members and will not allow you to take part in any other tournaments. 4) No use of glitches or hacking will be tolerated in the tournaments, If anyone is court doing a glitch or hacking they will be disqualified from the tournament. 5) No refunds to players if they have broke any of the above rules, If you are not able to make a tournament and you have paid then a full refund will be given to you. 6) Have fun and enjoy, you may be able to win alot of money as the server gets bigger and the game gets bigger. 7) If you believed you have been scammed by a trusted host please contact Jueix Rated with proof of the tournament not running or proof of you winning and not getting paid the prize. Only the entry fee for the tournament will be refunded. Trusted host rules: 1) Follow the same rules as a tournament player. 2) Tournament entry fee's can only be below £10 unless told otherwise from an administrator, A list of name's who can host tournaments with more than £10 entry fee will be pinned in the General channel. Anyone court hosting tournaments with more than a £10 entry fee will be punished as seen fit, even if they aren't scamming. 3) All tournament hosts will have to put an application in and pay a fee to start hosting tournaments, This will make it so we can keep track of tournaments and find trusted hosters. 4) Keep track of all players who paid the fee, if you are hosting squad matches only one player has to pay a fee for the whole squad, The player will then inform you who is in their squad on discord and on xbox. 5) Pay the players correctly, The prize is the entry fee X the amount of players X 0.8. So if there's 20 teams of four and the entry fee is £5 per squad it will be as follows £5 X 20 X 0.8 = £80. Ask the winner of the game who was in the squad, message them directly and pay them unless squad agree's to be paid by the squad leader. Administrator Rules: 1) To follow all other rules for each the hosters and players. 2) To make sure over people aren't rule breaking and to punish rule breakers as see's fit. 3) To monitor new host's to check if they are worthy of staying a host and to become a more trusted, If a host scam's by not running a tournament then leaving inform Jueix Rated who will refund the players the entry fee. 4) The same rules apply for admins and trusted host's that want to join a tournament they have to pay a entry fee if they are not the one's hosting it, to keep it fair and make the prize pool worthy, Same goes for me. If I want to take part in a tournament which I'm not hosting I will have to pay the entry fee, If I have a team and I'm taking part and I'm the host one of the team has to pay the fee prize divided by 3. 5) Have fun and enjoy. Tournament Dates? To find tournament dates the best bet is to go onto the discord or facebook page or the website when set up. The current tournament date is set to 20th of November 2018, The time it will happen is 7.30pm UK time Entry fee £2 per squad. Discord Discord - Free voice and text chat for gamers Facebook https://www.facebook.com/groups/277309369803059/
-
I really like that account and was planning on making an other on your thread but the only thing stopping me was the bot busting ban.
-
Looking to buy a decent account, Currently have around £400 (Can turn to RSGP). Looking to buy mainly from trusted users only. Looking for either a decent pure with a lot of 99's or an account with 99 construction (Love that still.) post accounts below with pictures and we can negotiate a price I won't pay £400 for an account I don't feel is worth the amount.
-
[$250]264 qp 99 agility 99 crafting 99herb rigour augery max house
Jueix replied to Unversable's topic in Accounts
Nice account I'm interested. What's lowest price you will accept. -
So I've seen on a few other forums people selling Forza horizon 4 credits really expensive. For example people are selling 40 million credits for £30. I can easily get you credits with out any bans. I will do this for free for 1 person who can vouch That this is legit and free for any mods or administrators. The price is £15 PayPal from trusted users or 10m osrs gp. You can pick the amount of credits you want added to your account for this price with up to 5 refills, if your account gets banned I'll refund you with the full amount. Message me here leave a post below or message me on discord Jueix Rated#6834 if interested. If this is not allowed here on this forum mods or admins please remove. (Adding proof of credits from my Xbox account soon) http://i65.tinypic.com/vykr2g.jpg
-
Added.
-
Looking to buy a skiller with multiple 99's or a pure account with multiple 99's. Post offers below with a price you would accept and I may accept your price or try and make an offer which is also responsible for you.