Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/07/13 in Posts

  1. 3 points
  2. Well it was all a chill day. Me, , and @Dashboard were rolling in the lambo and we roll up to mcdonalds. yoloswag is driving so we roll up to mcdonalds and we all tell them what we want in the drive through. We also meet @ScorpioZ there and he gets in the back seat and we're all chilling at the first window, expecting to get food first the lady comes up and asks yoloswag for $15.25...obviously frustrated at the stupid bitch trying to make us go first in the trade we tell her to bring the food because yoloswag has more feedback, then the hoe gets really mad and starts to go for her manager, yoloswag, who doesn't scam or doesnt want to get ban swerves out of the back of the drive through and speeds away, dashboard who literally shit his pants is going crazy and me and scorpioz are confused as fuck. i asked yoloswag what happened and yoloswag said it was a regular member noob who wanted to scam 7.5m so we got the fuck out of there, yoloswag didnt notice he was going 110 in the lambo so cops chased us and arrested us, yoloswag almost didnt get feedback for the trade, the whole experience was crazy as hell and i do not reccomend anyone doing this.
    3 points
  3. Hey guys, I've been pissed because i have to trade the stuff my farm collect manually. So i decided to make a script to do this for me! Will have a GUI where you can fill in the name you want it to trade. Then just simply select the options which it should get from the bank and trade over to the guy u selected it to trade with. (For those who still don't understand what it does:) Lets say you used a Druid script and want to trade the law runes, nature runes and herbs over to your main so you can start selling them. Manually doing this on 8 accounts is freaking brainkilling. So why not automate it? It will manually save the last settings you chose. So you dont have to reclick 5 times if you have 5 guys on the same thing. (The example above is JUST A EXAMPLE). Now here is where i need you all for: Give me item ideas to add to the GUI, so that you can simply select a certain item. Items i am going to add so far: - Herbs - All the runes - Pure essence - All the arrows - Vials of water - All the dragon hides - Dragon bones - All type of logs - All type of bird nests - All type of seeds - All type of ores - All type of bolts - Coins Anything else you would like added?? Let me know!
    2 points
  4. Great job Jason. As promised, I'll be sure they will all be uploaded! (Well.. not the testers and superscript one) Some usergroups were in need of a new PiP.
    2 points
  5. We prefer to choose the testers ourselves, rather then let members buy themselves in. Letting them choose their own colors won't happen, giving them first priority to staff promotions will definately not happen. A higher rank then the donator one won't be released anytime soon, since the donator perks aren't even finished. It's something I might look at, later, when we can give enough perks to release such a rank.
    2 points
  6. Hey check out this photoshop i did for my favorite show right now, breaking bad! before: after:
    1 point
  7. We need a music section Yes!
    1 point
  8. Nice job man. I sure will use this. tho enum instances should be uppercase and separated by "_" underscore as they are static final You don't truly need to do that..... Honestly no one gives a shit about that
    1 point
  9. Another BeastlyMaul thread, another facepalm. It's too early for this shit. Why did I even click on this?
    1 point
  10. Looks like something a twelve year old made.
    1 point
  11. There is no possible way you can make a bot Wrong. Do you know how hard it is to make a bot? The coding required to make OSBot is insane. If he has no prior knowledge of coding, it will take him years to make a bot. this is not true i didnt know almost anything about scripting just 2 weeks ago and now im getitng ready to release my third script id say if your otivated go for it and if you need any help add me Script != Bot That's what I am saying :facepalm: he implies that he wants to make a script in his post who reads the posts? title says it all
    1 point
  12. ^ Yeah that would be good, make a whole new donator section, from $5 to infinity That would make OSbot alot of money... alot of nerds like Shakur would be trying to make themselves look more popular by donating loads
    1 point
  13. Beastlymaul, I have to say you have changed and I'm proud of you but you're not ready for Moderator I mean it
    1 point
  14. 1 point
  15. public boolean withdrawX(int itemID, int amount) throws InterruptedException { if(!client.getBank().isOpen() || !client.getBank().contains(itemID)) { return false; } int firstVisibleSlot = -1; int lastVisibleSlot = -1; int itemSlot = client.getBank().getSlotForId(itemID); if(!client.getBank().isSlotVisible(itemSlot)) { for(int i = 0; i < 1000; i++) { if(firstVisibleSlot == -1 && client.getBank().isSlotVisible(i)) { firstVisibleSlot = i; } else if(firstVisibleSlot != -1 && !client.getBank().isSlotVisible(i)) { lastVisibleSlot = i - 1; break; } } if(itemSlot >= firstVisibleSlot && itemSlot <= lastVisibleSlot) { //Visible //No Scrolling! } else { //Invisible //Scrolling! if(itemSlot < firstVisibleSlot) { //Scrolling up! MouseDestination md = new RectangleDestination(new Rectangle(481, 60, 12, 12)); client.moveMouse(md, true); while(!client.getBank().isSlotVisible(itemSlot)) { client.clickMouse(false); } } else if(itemSlot > lastVisibleSlot) { //Scrolling down! MouseDestination md = new RectangleDestination(new Rectangle(481, 272, 12, 12)); client.moveMouse(md, true); while(!client.getBank().isSlotVisible(itemSlot)) { client.clickMouse(false); } } } } return client.getBank().withdrawX(itemID, amount); } public boolean withdrawAll(int itemID) throws InterruptedException { if(!client.getBank().isOpen() || !client.getBank().contains(itemID)) { return false; } int firstVisibleSlot = -1; int lastVisibleSlot = -1; int itemSlot = client.getBank().getSlotForId(itemID); if(!client.getBank().isSlotVisible(itemSlot)) { for(int i = 0; i < 1000; i++) { if(firstVisibleSlot == -1 && client.getBank().isSlotVisible(i)) { firstVisibleSlot = i; } else if(firstVisibleSlot != -1 && !client.getBank().isSlotVisible(i)) { lastVisibleSlot = i - 1; break; } } if(itemSlot >= firstVisibleSlot && itemSlot <= lastVisibleSlot) { //Visible //No Scrolling! } else { //Invisible //Scrolling! if(itemSlot < firstVisibleSlot) { //Scrolling up! MouseDestination md = new RectangleDestination(new Rectangle(481, 60, 12, 12)); client.moveMouse(md, true); while(!client.getBank().isSlotVisible(itemSlot)) { client.clickMouse(false); } } else if(itemSlot > lastVisibleSlot) { //Scrolling down! MouseDestination md = new RectangleDestination(new Rectangle(481, 272, 12, 12)); client.moveMouse(md, true); while(!client.getBank().isSlotVisible(itemSlot)) { client.clickMouse(false); } } } } return client.getBank().withdrawAll(itemID); }
    1 point
  16. kinaesthic does a way better job
    1 point
×
×
  • Create New...