-
Posts
623 -
Joined
-
Last visited
-
Feedback
98.1%
Everything posted by Sponsor
-
it hurts my eyes lol
-
Hey, So I've started using your script briefly a few things I'd suggest: It runs to the door when the animated armour is not blocked. (runs to door randomly on loot as well) Special attack should have a random build up as it seems to spec at 25% all the time Maybe add a random eat between i.e 20-50% HP On looting maybe add click floor and right click every so often? All I've noticed so far.
-
Account stats all 1 except 23 mage, 15 hit points and 5 cooking. Only created account to play deadman while main was on 2 day ban. Junk in bank. Only 2 days old. so your buying an account freshly made of tut with 12 days member you'll get email address it was made on no registered email I don't believe as I haven't set one up. looking for 2m for the account.
-
Have you seen the one when the Ozzie bloke comments over a animal programme about a hawk or something and it gets hit by a truck after being released
-
I thought it was play legit o
-
What is this?
-
When I had a VPN that had a flagged IP address I was literally logging in starting a script and BAM I was banned lol. This was on FRAGSVPS a while ago.. but they gave me a new VPN and worked fine after that.
-
I got a two day ban also and I was supervising the account and talking etc only used the mirror client and was taking brakes and questing and training multiple skills.
-
Changed my mind not selling now as I've decided to kee the account.
-
I'm after 15million, how do you take payment?
-
Are you entering your forum user name and password? You need this information to log into the bot. This should then load runescape.
-
realist sold. Thanks guys.
-
Coming back to runescape I need to purchase some GP . Buying 10m osgp. Skype: os.jessie Will go first to trusted users. else middle man or you first. Kind Regards Jessie
-
LOL, I see the title and tried it while I was mid way threw questing... never right clicked it before so doesn't bother me.
-
Can't get my bot to open castlewars door (Need Help)
Sponsor replied to pittasium's topic in Software Development
(BANK_AREA.contains(player)) { Entity bankchest = closestObject(BANK_CHEST_ID); if (bank.isOpen()) { bank.depositAllExcept(STEEL_AXE); } else { if (bankchest != null) { if (bankchest.isVisible()) { bankchest.interact("Use"); sleep(random(700, 800)); } else { client.moveCameraToEntity(bankchest); } }else{ } walk(DOOR_AREA); Entity largedoor = closestObjectForName(LARGE_DOOR); if (largedoor != null) { if (largedoor.isVisible()) { largedoor.interact("Open"); sleep(random(600, 900)); } } One reason why it wont do anything, you have after one "} else {//nothing inbetween so it has no action to do here so it will not do anything. }" I'll rewrite this code for you as well. public int onLoop() throws InterruptedException { Area bankArea = new Area(2444, 3086, 2441, 3082); Area treeArea = new Area(2472, 3106, 2459, 3081); //Checks if your in bank area and inventory is full it will bank for you. if (client.getMyPlayer().isInArea(bankArea) && client.getInventory().isFull()) { RS2Object bankChest = closestObjectForName("Bank chest"); if (client.getBank().isOpen()) { client.getBank().depositAllExcept("Steel axe"); client.getBank().close(); } else { if (bankChest != null && bankChest.exists()) { if (bankChest.isVisible()) { bankChest.interact("Use"); sleep(random(700, 800)); } else { client.moveCameraToEntity(bankChest); } } } } //Checks if your inventory isn't full and if your not a tree area it will walk you there. //If the closed door it blocking you it will open it and walk threw otherwise ignores. if (!client.getMyPlayer().isInArea(treeArea) && !client.getInventory().isFull()) { RS2Object largeDoor = closestObject(2466, 2469); walk(treeArea); if (largeDoor != null && largeDoor.exists()) { if (largeDoor.getPosition().distance(client.getMyPlayer().getPosition()) <= 4) largeDoor.interact("Open"); sleep(random(600, 900)); } } //checks if in wcing area and area isn't full to woodcut if (client.getMyPlayer().isInArea(treeArea) && !client.getInventory().isFull()) { //Woodcutting method in here. } //will check if its not in bank area and inventory is full if (!client.getMyPlayer().isInArea(bankArea) && client.getInventory().isFull()) { //walking back to bank area here. } return 50; } } There, Nice clean method loop untested but should work fine. -
I believe its 20 post count, may be 40.
-
Cory is already working on one
-
Mite as well make it, wouldn't do any harm now would it !
-
That's to teleport back to your home if using spell book when inventory isn't full, haven't got any duel rings to make you the other part. if (!client.getInventory().isFull()) { magicTab.open(); magicTab.castSpell(Spell.HOME_TELEPORT); }
-
Good luck bringing this script over to osbot .