-
Posts
311 -
Joined
-
Last visited
-
Days Won
3 -
Feedback
100%
Everything posted by Cory
-
Depends how hungry I am, McDonalds is OK for a snack, or a light meal. But if i want something a little bit more filling I would go with KFC. Never been to Subway and never been to burger king.
-
the few people that use osbot that could do that, wouldn't use the script most likely, and if they wanted too, they would of wrote their own. if they go through that much shit to run the script, imo they're welcome to it.
-
Would be pretty good if people who released premium scripts could select an option which allows users to run their script for like maximum of 3 hours (or even specify their own time frame) , as a trial. then after the 3 hours is up, they can't run it anymore. just a 1 off 3 hours or so, to see if the script interests them and is worthy of them buying etc.
- 45 replies
-
- 12
-
-
Your logic and implementation logic seems off, you're checking if the door is open, but returning true if its closed and the way you're telling them to use it doesn't make sense, they don't have access to the door variable inside checkDoorIsOpen as its Scope is only inside that method. It would make more sense to pass the door area and have that method handle opening the door, something along the lines of; Area doorArea = new Area(x, y, x, y); if(openDoor(doorArea)) { //CODE HERE } private boolean openDoor(Area area) throws InterruptedException { RS2Object door = closestObjectForName(area, "Door"); if(door != null && door.getDefinition() != null) { if(hasAction(door.getDefinition().getActions(), "Open")) { return door.interact("Open"); } } return true; } public boolean hasAction(String[] actions, String action) { for(String a : actions) { if(action.equals(a)) return true; } return false; }
-
ohhhh
-
Why not use methods already provided by the inventory api, they're there for a reason. public boolean inventoryContains(int...ids) { for(int id : ids) { if(client.getInventory().contains(id)) return true; } return false; } public boolean inventoryContainsAll(int... ids) { for(int id : ids) { if(!client.getInventory().contains(id)) return false; } return true; } public Item[] findInInventory(int... ids) { ArrayList<Item> list = new ArrayList<>(); for(int id : ids) { for(Item item : client.getInventory().getItems()) { if(item.getId() == id && !list.contains(item)) list.add(item); } } return list.toArray(new Item[list.size()]); }
-
Nice, would use but I don't use sleeps.
-
I sent @Catastrophe $350 before i got disputed $100 so i wouldn't lose any money, Then told him to send the $350 to my parents account so he didn't have to hold onto it. Then next thing we know, all 3 accounts have been locked/limited for fraud or some shit. They rang all 3 of us and we verified it etc over the phone, sent i.d and shit. yet they have said: Unfortunately, due to excessive risk involved, our decision to leave your account in a permanent limitation status is final. Your right to appeal: PayPal will always carry out a thorough and routine investigation before closing any account. However, we appreciate that from time to time misunderstandings can happen. If you have an important query on this matter, and wish to appeal our decision, you can do so. Please log in to your PayPal account at www.paypal.co.uk and click 'Contact Us' at the bottom of any PayPal page. Anyone know away around this or anything we can say/do to get the accounts unlocked and get the money off the paypal?
-
Does windows take both? I didn't know that. Thanks Eric If you really wanted it to be cross platform, just use System.getProperty("file.separator")
-
If you start using PA you won't have any feedback or trades done there and chances that people will accept your offer are really low. It is useful for a start on PA to show your PA offer on OSBot to get some easy trades going because you most likely are already trusted here. If someone from here posted their offer on playerauctions and i saw someone more trusted on there for the same price, or someone as trusted that is cheaper, i would always go for them, not the person from here.
-
20/40 posts takes an hour to get tops... if they was set out on scamming, the post limit wouldn't stop them. Personally I like it when people get scammed, as it's there own fault, they should be more careful, it serves them right.
-
I don't see the point in this personally, anyone who uses PA goes for the cheapest reliable option... anyone posting there links on here won't get more sales, unless they beat the rest of the competition on PA, and if they are doing, they won't need to advertise there sales on here... seems redundant to me.
-
It does? It's just the way that the interfaces are setup in the api, they don't allow child interfaces for child interfaces, or at least a way to get the id of the child interface, and since the inventory on the trade screen is part of a child, that is on the trade screen, we cannot get the items for it. Example Parent 0 (trade screen) -child 1 (username) -child/parent 2 (Left side container) --child 0 (Items) No way for us to access the (items), since you RS2InterfaceChild doesn't support children. Correct me if im wrong.
-
Brunette Well spoken Nice body (nothing special) Common sense Sense of humour Brown Eyes Long legs 5ft 10 So in other words, this guy:
-
Script Writers should be able to bundle their scripts together with a bit of a discount etc to help out buyers etc. for example, My Rune sudoku script and ATMercher. Perfect combo, 1 bots for the runes, the other sells the runes. Could be sold together in a bundle for $35, rather than $40 separate.
-
Did you use a kitKat texture for the tables :p haha :p Very nice though!
-
Whenever i need motivation to start something, or something along those lines, i watch this video. http://www.youtube.com/watch?v=WTFnmsCnr6g
-
That's a .jar file. Might be shown as a winrar file since its extractable. Simply download java and the icon should change,
-
Would be nothing to do with osbot, would just be a server that the majority of the users play. And the chances off them coming after a smallish spawn server thats using a nearly 10year old client... highly doubt it.
-
Been requested to me a few times, So figured I might give it a go in a week or so when I've finalised my year at uni. Server would be your basic spawn/pk server for a bit of fun, would try to get really decent combat etc and have a general laugh whilst botting. If this gets a decent amount of support then I will most likely give it ago. I have done a lot of work on rsps, so it should be a fun project. Let me know what you think.
-
Naa, script writers are a different rank all together, the two shouldn't be related, as one could be script writer and not want to have the privileges of chat box mod, and vice versa.
-
Would be pretty handy, people who spend a lot of time in chat, who can help clean it up when none of the mods are online etc.
-
I've already suggested this to both Maxi and Kati. They both seemed adamant that this will not be implemented.