Everything posted by Czar
-
OSBot 2.3.X - Script Browser and Utilities
Daaaaamn GJ alek! I was expecting 2.3.X like next month or something, nice speed
-
OSBot name
getBot().getUsername(); Maybe, I haven't checked
-
OSBot 2.2.48 - Interface and Trade Patches
gjdm, but what was the interface update? was it the one I talked about earlier about the lines and stuff?
- Perfect Quester
-
Perfect Quester
Version 1.95 - Implemented webwalking into this script - Added Kill task, so you can kill any npc, any time - Added death walk - Added gear analyser which identifies the highest bonus gear within your inventory, equipment and bank - Added gear upgrade which takes/loots/buys items better than your best gear (e.g. picks up bronze full helm when killing minotaurs) - Added option for getting the 10k from Stronghold of Security EDIT: If any mods see this, can you please change the name of the thread to CzarQuester, I don't want to call it Ironman because it is misleading.
-
CzarRangingGuild
Ah unlucky, which other scripts did you use?
- Perfect Quester
-
getinventory
If you need any more help just pm @OP remove the client. So its just this.getInventory() because in osbot2 they changed it around. Client. Is just for old osbot.
-
Some of my CSGO footage
Did somebody say... Counter strike? 1v1 me pls
-
getinventory
If inventory isn't full, drop? Remember to remove the ! before the boolean (it was !isEmpty now !isFull) they are opposite so it should be if (getInventory().isFull()) Or is the isFull causing an actual error?
-
Few starting questions
1) Don't generate jar files while testing a script, you should do that in the end, otherwise you must restart etc. What I do, is just make your project folder on Users/OSBot, and change your output folder to OSBot/scripts, so all the .class goes there and you can just save script on your ide, and refresh scripts on OSBot and you don't have to restart client every time you make an update 2) A trade request is a message, so you must add a messagelistener to your script by doing the following; put this in your onStart method: getBot().addMessageListener(this); and then add the overriden method onMessage(Message m) the message will be String msg = m.getMessage(); and to check if its a trade, just do m.getMessageType(), which is an enum and contains RECEIVE_TRADE (in your case) As for the last question I've never handled trading in a script so I'm unable to assist you there, but there's an open source merching bot (which handles trades) in the snippet section iirc.
-
OSBot 2.2.47 - PolygonArea, Banks, and more
gjdm , keep up the updates
- OSBot 2.2.46 - Quick fix
-
Czar Slayer (AIO) - BETA TESTING NOW ACTIVE
Tysm I really appreciate the support
-
Czar Slayer (AIO) - BETA TESTING NOW ACTIVE
It's completely free for now, until I make it do everything
-
Czar Slayer (AIO) - BETA TESTING NOW ACTIVE
Well, not anymore I just finished the script If any moderators sees this, please lock this thread because I'm going to make my SDN script thread now.
-
Czar Slayer (AIO) - BETA TESTING NOW ACTIVE
I'm just working on the new thread, a video, and a nice paint, and some screenshots, sorry to keep you guys waiting!
-
Attacking NPC's
public NPC getTarget(final String npc) { return getNpcs().closest(new Filter<NPC>() { public boolean match(NPC n) { if (!n.getName().equalsIgnoreCase(npc)) { return false; } if (n.getInteracting() != null) { return false; } return true; } }); } You can use a Filter<> to to find the best npc, in this case it's the npc which isn't interacting with anything, and is called whatever you put in the getTarget method, so: NPC guard = getTarget("Guard"); if (guard != null) { // attack } And it will attack every NPC with the name 'guard', also, try to use names instead of IDs when it comes to npcs and objects, since the IDs can change from time to time. You can greatly expand on the filter by adding more stuff like getMap().canReach for extra failsafes etc. As for the camera movement, the while() is unnecessary because you are already checking if its visible.
-
Czar Slayer (AIO) - BETA TESTING NOW ACTIVE
Good idea, I will record a video of the script
-
Czar Slayer (AIO) - BETA TESTING NOW ACTIVE
Okay the script is finished Sorry that it took so long, I wanted to make it perfect before I released. Latest updates: - Tested a lot of the slayer monsters, the routes, and teleports - 875 gp to saniboch for Brimhaven cave - Ectophial filling after teleporting (if user has it) - Slayer tower floor 2 and 3 - Lumbridge cave completed - Zanaris teleportation with dramen staff added - Task skipping with Turael - Shilo village travelling by talking to Hajedy Guys, before you use the script, if you want to kill metal dragons, make sure you are high enough combat or have range/mage otherwise just choose to skip it in the GUI. Also, green dragons are unavailable for now because they are in the wildy, it will skip them until the next update. Make sure to have food, weapon, some teleports (recommended), at least 10k gp in total and enjoy!
-
Disabling anti ban
EDIT: Thought he meant for other scripts.
-
Czar Slayer (AIO) - BETA TESTING NOW ACTIVE
You will start from 1, and it will complete the varrock museum minigame to reach 9 slayer & hunter, then it will go to the best slayer master for your combat level, stock up on slayer items and train slayer from there. http://2007.runescape.wikia.com/wiki/Varrock_Museum Thanks guys for the support
-
Czar Slayer (AIO) - BETA TESTING NOW ACTIVE
Thank you Just finished up on kalphite cave and added all ship chartering with their maximum prices, from 1k gp to 4.1k gp. Still need smoke dungeon. EDIT: Got 10 slayer monsters left #nosleep4lyf
-
Linux on Airplanes
Damn nice, but does it run OSBot?
- Looking for a scripter