Everything posted by Dashboard
-
Thread deleted
It was a pointless misleading thread that had no value towards the site or the users.
- Sup guys!
-
[50 Days Of Mem Left!] Lvl 67 Account
3m if no black marks.
-
Next Promotions v3 [Official Because Jason Made it]
Mikasa for global for sure. Great guy, helps out a lot and always approaches things positively. Not only all of that, he spends a large part of his day posting and browsing the forums.
-
GMC Extreme Solver (Treasure Trails Script)
It actually already does. Most clues are completed, I'm just cutting my time lost replacing the old walking system.
-
Scotty sigs
These actually have some appeal in mass lol.
-
GMC Extreme Solver (Treasure Trails Script)
This is on hold until OSBot 2 comes out. Sorry guys.
-
I dont think ive done this yet..
I brought Dash AntiJail as I'm only 16 and there's alcohol.
-
Bank Picture
Are those Saradomin Brews on the roof?
-
Rate The User Before You
7/10 Not that active on forums but I see you in chat a lot.
-
LifePanel - A must have access panel.
I love how there's a @Dashboard.
-
Which Partyhat do you think looks best?
White is my favourite and purple is also beast in some outfits.
- Bank Picture
-
[GMCSuperScript] Al Kharid Herb Farmer
Sorry this is related to the names of certain ids returning null, I'm working on fixing this issue.
-
for al those people still seeing adds (YT or any other website!)
AdBlock, am thinking of donating $85.00 for the tee shirt, sweater and stickers . Hopefully the net advances past ads and finds better ways to monetize traffic.
- Need some item ip
-
butts
http://www.youtube.com/watch?v=reTx5sqvVJ4 True story.
-
Anti-Ban is a myth
I agree. It's just a placebo.
-
Making free paints for scripts
Paid $1.00 for my SuperScript Factory signature. Great guy and recommended .
-
start botting last night for first time on 07 and banned within 8 hours
- Quick question.
No, it's common knowledge that completing Monkey Madness will give you Defence experience. There is no way as of now to get any sort of roll back, sorry for your luck.- start botting last night for first time on 07 and banned within 8 hours
Hello Mrhybriid, I'm sorry for your loss but you must realize that woodcutting is one of the worst things you can bot. Jagex has been very meticulous on banning woodcutting bots due to their history and ties in relation with mass gold farmers. I'd suggest that if you bot this type of thing in the future to use a brand new throw-away account instead of your main or just avoid woodcutting all-together. There are many other ways you can make money and gain experience using OSBot, just navigate the local and SDN script sections. I'd also recommend to cease reporting other fellow botters in the future as karma will come back to slap you whether you believe in it or not. - Dashboard OSBotter- OSBot 2 - What features do you want to see?
You already can do this..- OSBot 2 - What features do you want to see?
Add a class called EmoteTab to the API Here's an example of how I'm handling it to make it easier for them.. package com.gmc.extreme; import org.osbot.script.*; import org.osbot.script.rs2.ui.*; import org.osbot.script.rs2.model.*; import org.osbot.script.mouse.*; import java.awt.*; public class Emotes { public static final int EMOTE_TAB = 35; public static final MouseDestination SCROLL_UP = new RectangleDestination(new Rectangle(722, 208, 8, 8)); public static final MouseDestination SCROLL_DOWN = new RectangleDestination(new Rectangle(722, 450, 8, 8)); public static void activateEmote(Script script, String emoteName) throws InterruptedException { script.selectInterfaceOption(548, EMOTE_TAB, "Emotes"); script.sleep(600 + script.random(800)); int emoteId = getEmoteId(script, emoteName); if(emoteId == 0) { script.log("Could not find matching emote for name: " + emoteName); script.sleep(5000); return; } while(!isVisible(script, emoteId)) scrollToEmote(script, emoteId); clickEmote(script, emoteId); } public static int getEmoteId(Script script, String emoteName) throws InterruptedException { for(int i = 38; i < 75; i ++) { if(script.client.getInterface(464).getChild(i).getMessage().equals(emoteName)) return i; } return 0; } public static boolean isVisible(Script script, int emoteId) throws InterruptedException { if(script.client.getInterface(464).getChild(emoteId).getPosition().getY() >= 211 && script.client.getInterface(464).getChild(emoteId).getPosition().getY() <= 417) return true; return false; } public static void clickEmote(Script script, int emoteId) throws InterruptedException { MouseDestination closeInterface = new RectangleDestination(new Rectangle((int)script.client.getInterface(464).getChild(emoteId).getPosition().getX(), (int)script.client.getInterface(464).getChild(emoteId).getPosition().getY(), script.client.getInterface(464).getChild(emoteId).getWidth(), script.client.getInterface(464).getChild(emoteId).getHeight())); while(!script.client.moveMouse(closeInterface, true)) {} script.sleep(400 + script.random(1200)); script.client.clickMouse(false); } public static void scrollToEmote(Script script, int emoteId) throws InterruptedException { if(isVisible(script, emoteId)) return; int currentSlotVisible = 38; for(int i = 38; i < 75; i ++) { if(isVisible(script, i)) currentSlotVisible = i; } script.sleep(1000); if(emoteId < currentSlotVisible) { while(!script.client.moveMouse(SCROLL_UP, true)) {} script.sleep(600 + script.random(400)); } else { while(!script.client.moveMouse(SCROLL_DOWN, true)) {} script.sleep(600 + script.random(400)); } while(!isVisible(script, emoteId)) script.client.pressMouse(); script.sleep(400); script.client.releaseMouse(); } }- Price of SuperScript Factory
Hello everyone! I'm wondering what you OSBotters could see yourselves and others paying for my script GMC SuperScript Factory once the free beta is over. You'll get the same amazing experience that you're getting now during the beta but with a ton of bug fixes, new options, better anti ban and frequent updates. I myself am horrible at pricing things like this and would like all of your input. Thanks, Dashboard *Conditions for not paying: The script would be completely free, not as updated but still stable. I would accept donations and have a special place in the script with the names of the generous contributors. - Quick question.