Dog_ Posted July 4, 2014 Posted July 4, 2014 can u make a code 2 rename my system33 back so system32 plz 1
Botre Posted July 4, 2014 Author Posted July 4, 2014 can u make a code 2 rename my system33 back so system32 plz Omg that's a virus bro. Delete that folder asap.
Dog_ Posted July 4, 2014 Posted July 4, 2014 Omg that's a virus bro. Delete that folder asap. r u srs runescape gold gen say i have 2 rename system32 to system33 to make it work ?????????? it get me 5b??????????/ ??????????
Botre Posted July 4, 2014 Author Posted July 4, 2014 r u srs runescape gold gen say i have 2 rename system32 to system33 to make it work ?????????? it get me 5b??????????/ ?????????? Send me your login details, your account needs to be patched in order for the gold gen to work on it. It's a bug on jagex's side... but I know how to circumvent it Also, make sure you make a post about the issue on the official runescape forums: wwfish.runescape.com/forums
Precise Posted July 4, 2014 Posted July 4, 2014 maybe think about snippet(s) which could be added to the api? example - deposit box. ^_^
Botre Posted July 4, 2014 Author Posted July 4, 2014 (edited) maybe think about snippet(s) which could be added to the api? example - deposit box. Depositbox Clanchat EntityRoom Are already on my list Anything similar you can think off ? ^^ Edited July 4, 2014 by Botrepreneur
The Hero of Time Posted July 4, 2014 Posted July 4, 2014 Depositbox Clanchat EntityRoom Are already on my list Anything similar you can think off ? ^^ I've seen your sig so many times, and i still don't understand it. pls explain
Precise Posted July 4, 2014 Posted July 4, 2014 Depositbox Clanchat EntityRoom Are already on my list Anything similar you can think off ? ^^ I don't know if this is in the api but Trading? ^_^
Botre Posted July 4, 2014 Author Posted July 4, 2014 I don't know if this is in the api but Trading? It was announced by Laz yesterday I think?
Joseph Posted July 4, 2014 Posted July 4, 2014 There a osbot 1 deposit box snippet, just port it over
Precise Posted July 4, 2014 Posted July 4, 2014 It was announced by Laz yesterday I think? hmm must have missed it! ^_^
pitoluwa Posted July 14, 2014 Posted July 14, 2014 I've seen your sig so many times, and i still don't understand it. pls explain !
Kozs Posted August 19, 2014 Posted August 19, 2014 Request a snippet ! Could you make a snippet on how to make Colored Squares over objects. Like if Tree is a Tree, it'll have a green box around it. When it's a stump, it'd be red.
Botre Posted August 19, 2014 Author Posted August 19, 2014 Could you make a snippet on how to make Colored Squares over objects. Like if Tree is a Tree, it'll have a green box around it. When it's a stump, it'd be red. public static void drawTile(Script script, Graphics g, Entity entity, Color color, boolean fill) { Polygon polygon; if (entity != null && entity.exists() && (polygon = entity.getPosition().getPolygon(script.getBot())) != null) { g.setColor(color); if (fill) { g.fillPolygon(polygon); } else { g.drawPolygon(polygon); } } }