Everything posted by lisabe96
-
RQ Account Creator | Create a fresh legit account.. non legit!
PM me your skype if you want to help out
-
RQ Smither | Smith your way up to the top!
Haven't gotten any bug reports anymore since the last time I updated so I assume so
-
Anybody cop Retro Jordans Today?
Seems like comfortable shoes for working. I don't know a lot about construction brands or whatever though
-
Obfuscating your local scripts
Thanks s1 flamer, I forgot about the annotation thing
-
RQ Account Creator | Create a fresh legit account.. non legit!
Updates: R&J quest has been finished, however still have to test it a lot. Also some general bug fixes & fishing has been reduced to level 10 rather than 20.
-
RandQm's Starter accounts
All default tutorial island accounts have been sold. Stock now contains accounts with tutorial island finished /+ 7 Quest Points For that reason price has increased from 90K/ea to 120K/ea
-
Detecting Client
If you don't want a permanent ban, don't bot. It's that simple.
-
PC (60WC | 40+ Fishing | 40 Ranged | 43 Magic | ...)
Can I get a PC on this one: 10+ atk 35 str 40 ranged 43 magic 36 hp 40+ fishing 40+ cooking 60 woodcutting No infractions, no quests.
-
Super easy fix(Im a noob) Player doesn't interact with the bank
True when I post what I use I get lambda-lovers on my back RS2Object booth = null; for (RS2Object obj : getObjects().getAll()) { if (bankArea.contains(obj) && obj.getName().equalsIgnoreCase("Bank booth")) { if (obj.hasAction("Bank")) { if (booth == null || getMap().distance(booth) > getMap().distance(obj)) { booth = obj; } } } } if (booth == null) { log("Error, no bank booth found to use."); //Return } booth.interact("Bank");
-
Super easy fix(Im a noob) Player doesn't interact with the bank
This, that's why I added action checking in my code. I ran into this problem at draynor where it wanted to bank with the "bank booth" that isn't a bank :p
-
Super easy fix(Im a noob) Player doesn't interact with the bank
First of all, don't use ID's as it can change when RS is updated. This also accounts for items as I see you're using ID's everywhere. Second, the API has bank areas already so you don't need to define them yourself. Area bankArea = Banks.YOUR_BANK; Next do something similar to this (might want to use sleep): if (getWalking().webWalk(bankArea)) { if (!getBank().isOpen()) { RS2Object bankbooth = getObjects().closest("Bank booth); if (bankbooth != null && bankbooth.hasAction("Bank")) { bankbooth.interact("Bank"); } } } Btw, use code tags so we can read your code more easily
-
LET ME SEE YOUR BONGS! This is mine
This is mine:
-
RQ Account Creator | Create a fresh legit account.. non legit!
Bugfixes: - Fixed some various small bugs - Improved task anti-patterns - Fixed quest dialogues - Fixed a banking bug Updates: - Now disables music on tutorial island - Started on R&J quest
-
RQ Tutorial Island Completer
Version 2.5: - Fixed a possible situational bug - NOW TURNS OFF MUSIC Click here to download!
-
Favorite breakfast meal?
A yoghurt and chocolate milk
-
Menu
trim doesn't remove "that bs", trim removes spaces To remove "that bs" you probably gonna have to use a substring //X = length of <col=fff> String name = menu.name.substring(X, menu.name.length); if (name.equalsIgnoreCase(...
-
Menu
Did you print out "menuOption.name"
-
RQ Account Creator | Create a fresh legit account.. non legit!
Bugfixes: - Fixed spamming spinning wool interface - Fixed not able to decide a task after completing tutorial island - Fixed completing dialogues with quest npc's - Fixed where the bot would get confused when somebody else sheared the sheep we we're about to shear - Fixed where we were not able to find Fred the farmer when he was in his bedroom - Fixed handling making flour when there is already grain in the hopper - Fixed that we don't bank anymore when we have enough space in our inventory to complete the quest No new content yet at this point, maybe tonight.
-
RandQm's Starter accounts
RQ's Starter Account Shop The accounts currently in stock have these stats/features: ► Tutorial Island completed ► 7 Quest points (Sheep shearer, Cook's assistant, R&J completed) ► 1 - 10 Fishing Buyer notes: ~ Note that these accounts are not completely hand-done as they were used to test my scripts! ~ ~ All emails are fake ones, so no valid registration ~ ~ The accounts in stock do not have any blackmarks, if they get any they will be removed from the stock. ~ Stock & Pricing: Accounts in stock: 0 Accounts sold: 20 Current price each: 120K Buy the whole current stock for: NA Accepted payment methods: 07GP, Paypal, BTC TOS: I will not refund you unless you have a reason that I personally find acceptable for a refund. If I did not accept your refund request you will not leave me negative feedback. If you paid & received the account, you will leave me positive feedback. I'm not responsible for whatever happens or what you do with the account once you bought it. I can change the TOS at any time. You automatically agree to the TOS when you buy an account from me.
-
Webwalking end point not random.
I've had the issue of getting errors because my tile was not walkable. I think it was MGI that told me that I have to define an area or multiple positions. If it takes a random position within that area and can't walk to it it will take the closest one that is walkable. But this was a few updates ago, maybe this has been updated already
-
Webwalking end point not random.
And what if the tile is not walkable, that would result in errors because there are no other tiles it can use.
-
Webwalking end point not random.
I have this issue with walking to an area, always takes the same tile and spams it
-
RQ Account Creator | Create a fresh legit account.. non legit!
PM'ing
-
RQ Chopper | Woodcutting as it should be
I never saw the bot fail on dropping everything, but everything is possible. I'll take a look the bugs you mentioned soon, thanks for helping out.
-
Quest complete check doesn't work
Alright so it's not me. Currently using this as solution: getConfigs.get(#) == X