Leaderboard
-
Skype
Members31Points1177Posts -
Led Zeppelin
Trade With Caution23Points3907Posts -
Jellybean
Members8Points255Posts -
Mikasa
Ex-Staff8Points10756Posts
Popular Content
Showing content with the highest reputation on 07/06/13 in all areas
-
Goodbye and a giveaway
7 pointsGiveaway over. We have a winner! So I decided I will quit Runescape for good because I have more important real life priorities and RS just does not interest me anymore. I sold off all the gold I made gold farming for a good profit. When I first joined OsBot, I remember how I used to babysit the bot all day because of the lack of randoms support. Look where we are today lol . I wasn't really an active member or anything but I had a good time here. Anyways, I'm going to leave with a small giveaway , a way of giving back to this amazing community Enter by liking this thread Once I have 25 likes the giveaway will start. I will use a random number generator so also choose and post a number 1-25. Prize: Numbers taken: 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 EDIT: Forgot to mention that the giveaway will end in 3 days if 25 entries are not made simply because thats when the last account of mine runs out of membership.7 points
-
ATRareFinder [AlphaTeam][ALL Rares][Tray Message Alert][LOG saved]
About: This script was made based on all the request around the forum. All it does is login, check for rares, if nothing is found, hop world. When it finds it, it takes it and also shows a tray message that it spotted it. Notes: I made script create a log file at C:\Users\YOUR_USER\OSBot\data\atrarefinder.log Since v2.0 of script, it works for every rare, thanks to Cory for the idea. Instructions: -Login, go to the spot of your choice. -Run the script. Download: http://osbot.org/forum/store/product/29-atrarefinder/ Current Version: 2.2 Previews: to (Older)3 points
-
Liam...
3 pointsIt kills me to say this but... Liam is addicted to alcohol 1 like = 1 prayer for him xp xd xo xd xppp3 points
-
PVPBuddy
2 points------------------------------------------------------------------------------------------------------------------------------ EDIT: I didn't know before I posted this but; there is a better version out which is similar to this: http://osbot.org/forum/store/product/18-xmpkinghelper/ However I will continue to develop this script and perhaps come up with quickpray support. ------------------------------------------------------------------------------------------------------------------------------ So this is my first ever released script and it might be a bummer if I found out something like this is already released (I'm relatively new here so I wouldn't know either way) but oh well. Features Version 0.1: Shows Current HP/Pray and changes colors to yellow or red when either of them are below <50% or 25%.Future Plans: Adding a run button which will show current run percentage along with change colours and if u click it, the ctrl key will be pressed down. Adding A GUI where users can select where they want to change the text colors at and if they want to show username. Aiming for the stars: Adding Quickprays.What it looks like: Download (.JAR) https://www.dropbox.com/s/ywiuerrf6xumt7x/pvpbuddy.jar Source Code: import java.awt.Color; import java.awt.Font; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.Image; import java.io.IOException; import java.net.URL; import javax.imageio.ImageIO; import org.osbot.script.Painter; import org.osbot.script.Script; import org.osbot.script.ScriptManifest; import org.osbot.script.rs2.skill.Skill; @ScriptManifest(author = "Ajwadi", info = "Shows HP, PRAY", name = "PVPBuddy", version = 0.1) public class PVPBuddy extends Script implements Painter { String status = ""; private final Color green = new Color(0, 255, 0); private final Color black = new Color(0, 0, 0); private final Color red = new Color(255, 0, 0); private final Color yellow = new Color(255, 255, 0); private int fontsize = 10; private final Font font1 = new Font("Arial", 1, fontsize); // private final Image hpicon = getImage("http://puu.sh/3j0Hm.png"); private final Image hpicon2 = getImage("http://puu.sh/3jva7.png"); private final Image prayicon = getImage("http://puu.sh/3juTS.png"); // private final Image runnom = getImage("http://puu.sh/3kpcW.png"); // private final Image runm = getImage("http://puu.sh/3kpdq.png"); // private final Image runon = getImage("http://puu.sh/3kpdQ.png"); private int hit = 0; private int pray = 0; private final int hity = 128; private final int hitx = 545; private final int prayy = 153; private final int prayx = 545; private Image getImage(String url) { try { return ImageIO.read(new URL(url)); } catch (IOException e) { } return null; } public void onPaint(Graphics g1) { Graphics2D g = (Graphics2D) g1; g.setFont(this.font1); g.fill3DRect(5, 458, 70, 18, true); if (pray > client.getSkills().getLevel(Skill.PRAYER) * .5 || hit < client.getSkills().getLevel(Skill.HITPOINTS) * .5) { g.setColor(this.black); // FOR DA SHADOW g.drawImage(this.hpicon2, 520, 110, null); g.drawImage(this.prayicon, 520, 135, null); g.drawString("" + hit, hitx + 1, hity + 1); g.drawString("" + pray, prayx + 1, prayy + 1); g.setColor(this.green); g.drawString("" + hit, hitx, hity); g.drawString("" + pray, 545, prayy); } // //////////////////////////////////////////// // RED WARNINGS // /////////////////////////////////////////// // prayer if (pray >= 0 && pray <= client.getSkills().getLevel(Skill.PRAYER) * .25) { g.drawImage(this.prayicon, 520, 135, null); g.setColor(this.black); g.drawString("" + pray, prayx + 1, prayy + 1); g.setColor(this.red); g.drawString("" + pray, 545, prayy); if (hit >= 0 && hit <= client.getSkills().getLevel(Skill.HITPOINTS) * .25) { g.drawImage(this.hpicon2, 520, 110, null); g.setColor(this.black); g.drawString("" + hit, hitx + 1, hity + 1); g.setColor(this.red); g.drawString("" + hit, hitx, hity); } else if (hit <= client.getSkills().getLevel(Skill.HITPOINTS) * .5 && hit > client.getSkills().getLevel(Skill.HITPOINTS) * .25) { g.drawImage(this.hpicon2, 520, 110, null); g.setColor(this.black); g.drawString("" + hit, hitx + 1, hity + 1); g.setColor(this.yellow); g.drawString("" + hit, hitx, hity); } else { g.drawImage(this.hpicon2, 520, 110, null); g.setColor(this.black); g.drawString("" + hit, hitx + 1, hity + 1); g.setColor(this.green); g.drawString("" + hit, hitx, hity); } // println("PRAY IS LESS THAT 25 %"); } // hp if (hit >= 0 && hit <= client.getSkills().getLevel(Skill.HITPOINTS) * .25) { g.drawImage(this.hpicon2, 520, 110, null); g.setColor(this.black); g.drawString("" + hit, hitx + 1, hity + 1); g.setColor(this.red); g.drawString("" + hit, hitx, hity); if (pray >= 0 && pray <= client.getSkills().getLevel(Skill.PRAYER) * .25) { g.drawImage(this.prayicon, 520, 135, null); g.setColor(this.black); g.drawString("" + pray, prayx + 1, prayy + 1); g.setColor(this.red); g.drawString("" + pray, 545, prayy); } else if (pray <= client.getSkills().getLevel(Skill.PRAYER) * .5 && pray > client.getSkills().getLevel(Skill.PRAYER) * .25) { g.drawImage(this.prayicon, 520, 135, null); g.setColor(this.black); g.drawString("" + pray, prayx + 1, prayy + 1); g.setColor(this.yellow); g.drawString("" + pray, 545, prayy); } else { g.drawImage(this.prayicon, 520, 135, null); g.setColor(this.black); g.drawString("" + pray, prayx + 1, prayy + 1); g.setColor(this.green); g.drawString("" + pray, 545, prayy); } } // //////////////////////////////////////////// // YELLOW WARNINGS // /////////////////////////////////////////// // prayer if (pray <= client.getSkills().getLevel(Skill.PRAYER) * .5 && pray > client.getSkills().getLevel(Skill.PRAYER) * .25) { g.drawImage(this.prayicon, 520, 135, null); g.setColor(this.black); g.drawString("" + pray, prayx + 1, prayy + 1); g.setColor(this.yellow); g.drawString("" + pray, 545, prayy); if (hit >= 0 && hit <= client.getSkills().getLevel(Skill.HITPOINTS) * .25) { g.drawImage(this.hpicon2, 520, 110, null); g.setColor(this.black); g.drawString("" + hit, hitx + 1, hity + 1); g.setColor(this.red); g.drawString("" + hit, hitx, hity); } else if (hit <= client.getSkills().getLevel(Skill.HITPOINTS) * .5 && hit > client.getSkills().getLevel(Skill.HITPOINTS) * .25) { g.drawImage(this.hpicon2, 520, 110, null); g.setColor(this.black); g.drawString("" + hit, hitx + 1, hity + 1); g.setColor(this.yellow); g.drawString("" + hit, hitx, hity); } else { g.drawImage(this.hpicon2, 520, 110, null); g.setColor(this.black); g.drawString("" + hit, hitx + 1, hity + 1); g.setColor(this.green); g.drawString("" + hit, hitx, hity); } // println("PRAY IS LESS THAT 25 %"); } // hp if (hit <= client.getSkills().getLevel(Skill.HITPOINTS) * .5 && hit > client.getSkills().getLevel(Skill.HITPOINTS) * .25) { g.drawImage(this.hpicon2, 520, 110, null); g.setColor(this.black); g.drawString("" + hit, hitx + 1, hity + 1); g.setColor(this.yellow); g.drawString("" + hit, hitx, hity); if (pray >= 0 && pray <= client.getSkills().getLevel(Skill.PRAYER) * .25) { g.drawImage(this.prayicon, 520, 135, null); g.setColor(this.black); g.drawString("" + pray, prayx + 1, prayy + 1); g.setColor(this.red); g.drawString("" + pray, 545, prayy); } else if (pray <= client.getSkills().getLevel(Skill.PRAYER) * .5 && pray > client.getSkills().getLevel(Skill.PRAYER) * .25) { g.drawImage(this.prayicon, 520, 135, null); g.setColor(this.black); g.drawString("" + pray, prayx + 1, prayy + 1); g.setColor(this.yellow); g.drawString("" + pray, 545, prayy); } else { g.drawImage(this.prayicon, 520, 135, null); g.setColor(this.black); g.drawString("" + pray, prayx + 1, prayy + 1); g.setColor(this.green); g.drawString("" + pray, 545, prayy); } } // g.drawString("Status: " + this.status, 350, 400); } public int onLoop() throws InterruptedException { hit = client.getSkills().getCurrentLevel(Skill.HITPOINTS); // println("HP: " + hit); // RSInterface pray = client.getSkills().getCurrentLevel(Skill.PRAYER); // run = ; // println(run); return 100; } public void onStart() { } }2 points
-
[IN DEVELOPMENT] FIRST EVER RUNESCAPE STAKING CALCULATOR!
Hey Zybez, Ever wanted to know exactly what % chance you have on winning a stake? There's no accurate staking calculator out there as of yet. In fact, there isn't one! There will be soon. This calculator will calculate your % chance of winning against an opponent by using factors such as: MAGMOZ STAKER Key Features Accuracy (atk, range acc, magic acc) - Opponent's defence Weapons (will calculate your DPS according to accuracy as well as opponent's defence) Will calculate Value of stake (how much you will win compared to lose per stake) Percentage of winning the stake Using your stats it will calculate the chance of Crits PID (of course) This calculator will be coded 'till perfect and released once it's 100% accurate. Subscribe to this thread to keep up with the updates! Suggestions? We'd love to hear them. Leave a comment below with anything we missed, could improve on or throw us a thought! Magmoz Staking Calc expected release date: by the end of next week (latest). THE FIRST VERSION OF MAGMOZ STAKER WILL FEATURE BOXING ONLY. THE LATER VERSIONS TO BE RELEASED IN THE COMING WEEKS WILL INCLUDE MAGE SKILLS (Smoke barrage, blood, etc), AND RANGE/ MELEE WEPS.2 points
-
Shop Interface (just like Bank but then for shops!)
Hello, This snippet is for people that want to interact easily with shops (like a general shop, runes shop, etc...). The commands are very similar to bank and to start of you import the source/jar and make a new shop: Shop s = new Shop(this); // This must be a script object so your main file does fine! if (s.isOpen()){ // And close the shop immediately s.close(); } As you can see the isOpen method is there just like the one in the bank class. Next you can get a ShopItem by using this methods: ShopItem[] allItems = s.getAllShopItems(); ShopItem itemSlot4 = s.getShopItem(4); //4 is the slotID you can debug that by using the store debugger ShopItem hammer = s.getShopItemByName("Hammer"); // Wont break on patches ShopItem byId = s.getShopItemByID(123); // You can use it if you want but you should prefer ByName And for the final part you can interact with the shop items. itemSlot4.value(); // Wont return a value you must catch it in your onMessage(String s) itemSlot4.buy1(); hammer.buy5(); byId.buy10() int amountOfHammers = hammer.getAmount(); String hammerName = hammer.getName(); int hammerId = hammer.getID(); int hammerSlotID = hammer.getSlotID(); // You can also get the slot rectangle if you need it for painting: Rectangle rect = hammer.slot; Now you can buy stuff from the store! Remember: the ShopItem won't update you need to refresh it everytime by using hammer = s.getShopItemByName("Hammer"); (for example) There are also a few commands you can use for the shop like getting the shopname: // First check if the shop is open s.updateShopName(); s.updateInstructions(); String shopName = s.getShopName(); String instructions = s.getInstructions(); Screens (using the ShopDebugger): Download (jar): http://uppit.com/v6mr2nxmamsm/Shop.jar Source (pastebin): Shop.java: http://pastebin.com/1ud3N67r ShopItem.java: http://pastebin.com/5aNZZXkJ If you use the source then make a new package called com.merccy.Shop and place the Shop.java and ShopItem.java there! Download ShopDebugger (jar): http://uppit.com/68erm8t8a9bh/ShopDebugger.jar Credits: Jelknab - Gave me his debugger which contained the search for item loop (which I modified) XavierM - Told me that you would just have to use the x/y for clicking the items. Goodluck2 points
-
♛ [HD] Armslayer Graphics Shop ♛
2 points2 points
- Sorry Smart. Made myself lol.
2 points- ATRareFinder [AlphaTeam][ALL Rares][Tray Message Alert][LOG saved]
2 points- GMC Top Buyer
1 pointGMC Top Buyer Warren Buffet liked this post. Features Buys up to and possibly over 60,000 items per hour. World hops. Can buy multiple item ids at a time. Can set a minimum stock to buy at for each individual item. Can use the script on any NPC that has a "Trade" option. Capable of running 24/7 without any intervention. Will log out when you have under 1,000gp in your inventory. Up to and over 300,000gp per hour profit if used correctly. Progress Reports Please post any of your own to be added! Download Current version 1.1, built for OSBot 1.7.13 Discontinued Notes Start the script next to the Npc that you're trading. Bring plenty of coins to buy plenty of items! When entering the item ids, there are NO SPACES between the commas. All ids can be found by tinkering with the bot's advanced settings. Item ids can also be found at http://itemdb.biz/ My favourite settings are: Items: 558, 559 (Mind Runes and Body Runes), Npc: 3359 (Aubury), Minimum Stock: 3000 The script may go slightly under (1-10) the minimum stock that you set, this generally shouldn't be a problem. Please post any and all bugs. All progress reports are highly appreciated. General script feedback is also much appreciated. Feel free to request any new scripts from me http://osbot.org/forum/topic/5676-taking-script-requests/1 point- Kokeis AIO Chopper - Supporting almost any location
Download this: http://up.ht/11WLGKE Fixed as of 8/11/13 - 1:00pm EST by @Cory Upcoming changes: Auto paint tab switching. Improve Edgeville yews. Add custom chopping. Change log: 3.1: Added Magic and Teak Ent ID. 3.0: Added Yew Ent ID. 2.9: Now does not pick up birds nest anymore when powerchopping. Added new maple and magic Ent IDs. 2.8: Fixed walking to bank in Seer's Village. 2.7: Fixed walking in Catherby and Sorcerer's Tower. 2.6: Added normal tree ent ID. Improved chopping normal logs. 2.5: Added hide button for paint (try hiding paint when experiencing low FPS). Now also drops birds nests when powerchopping. Fixed spam clicking tree bug. 2.4: Now uses tree names instead of IDs. Will not break anymore if IDs change. 2.3: Fixed tree IDs. 2.2: Changed action after detecting ent which should fix any ent problems (please let me know if not). Added Barbarian Outpost willows. Added Gnome Stronghold yews. Added Mage Training Arena Magics. Added new epic paint thanks to DarkzSide. Changed Sorcerer's tower magic path so it does not get stuck. Added screenshot option; makes screenshot's when detecting an ent, retreiving bird nest or when the script stops. and safes them in D:\. could be useful for bug reports. 2.1: Changed and improved ent detection. Added new IDs after RS Update. Improved some other small things. Added show/hide paint button. 2.0: Added Teak support. Including combat protection at Castle Wars. 1.9: Added magic support at the Sorcerer's Tower. Added "Ents avoided" to paint. 1.8: Added new ID to Ent detection which fixes breaking axes when chopping yews. 1.7: Fixed error in Edgeville. Fixed ent/evil tree detection. 1.6: increased speed of chopping in general alot. changed antiban and removed wc skill checking to make sure it doesnt bug out. Improved cutting yews in Catherby. Improved handling of evil tree's. Added time to level in paint (shows after a couple minutes). 1.5: Improved edgeville yews. Changed something to antiban so it won't accidentally click on skilltabs (again). improved evil tree detection for yews. Also improved antiban. 1.4: Should not be randomly opening skill tabs anymore. Added Yew support in Edgeville including smart positioning (if no tree's available, it will walk to the first tree that will spawn). Improved ent detection. 1.3: Added Yew support in Seer's Village and Catherby. Added Willow support in Catherby.Added location to paint. Improved anti-ban. 1.2: Added Willow support in Seer's Village. 1.1: Added Maple support in Seer's Village. 1.0: Release version. Screenshot's: Long progress reports are appreciated!1 point- StakerBuddy
1 pointStakerBuddy can help you in the duel arena by conveniently loading your enemy's stats from the hiscores. You can make the script load your enemy's stats in one of two ways: 1. Simply challenge them(info will load on duel screen) 2. Follow any player you wish to know the stats of. You can use this in the wilderness as well if you use the 2nd method. I also included PID identification in the script, which looks real but I'm not 100% sure if it is really PID, you'll have to do some testing yourself. Source Code: http://pastebin.com/61LEf2bi Precompiled: http://uppit.com/68tqepre787m/staking.rar Local PID is shown on the left side of the chatbox: If anyone would like this updated let me know and I'll do my best to update/add new features.1 point- CronGuildMiner | Falador mining guild miner & banker!
Current Version: 1.2 Working with - 1.6.11 - 1.6.12 - 1.7.X Changelog Start at fally bank with a pickaxe equipped/in inventory. Features: - Considered flawless - Mines coal and banks it - paint with XPTL, coal mined, PH, status, runtime,... - Has anti-explosive rock, and rock golem/swarm/ any combat related random Download link: GronGuildMiner.jar Note: A like keeps me going!1 point- Show Item IDs In Inventory & Equipment Source Code
This code will show all the item IDs in your inventory and equipment when you view that tab. Imports & Overriding... >>> Add imports: import org.osbot.script.*; import org.osbot.script.rs2.model.Item; import org.osbot.script.rs2.ui.EquipmentSlot; import org.osbot.script.rs2.ui.EquipmentTab; import org.osbot.script.rs2.ui.Tab; import java.awt.*; >>> The override: @Override public void onPaint(Graphics g) { } Step 1 In the onPaint method cast the current Graphics to 2D Graphics and call the method showItemIDs. @Override public void onPaint(Graphics g) { Graphics2D g2 = (Graphics2D)g; showItemIDs(g2); } Step 2 Add the following methods... public void showItemIDs(Graphics2D g2) { Composite old = g2.getComposite(); if(currentTab() == Tab.INVENTORY) { Item[] items = client.getInventory().getItems(); for(int i = 0; i < items.length; i++) { if(currentTab() != Tab.INVENTORY) return; if(items[i] != null) { Rectangle r = client.getInventory().getDestinationForSlot(i); if(r != null) drawItemData(g2, r, items[i].getId()); } } } else if(currentTab() == Tab.EQUIPMENT) { for(Item item : equipmentTab.getItems()) { if(currentTab() != Tab.EQUIPMENT) return; if(item != null) { Rectangle r = client.getInterface(387).getChild(equipmentTab.getSlotForId(item.getId()).childId).getRectangle(); if(r != null) drawItemData(g2, r, item.getId()); } } } g2.setComposite(old); } private void drawItemData(Graphics2D g2, Rectangle r, int id) { int nx = (int) r.getX(), ny = (int) r.getY(), h = g2.getFontMetrics().getHeight(); String s = "" + id; g2.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 0.60f)); g2.setColor(Color.WHITE); g2.fillRect(nx + (int) ((r.getWidth() - g2.getFontMetrics().stringWidth(s)) / 2) - 2, ny + h / 4, g2.getFontMetrics().stringWidth(s) + 4, h); g2.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 1.00f)); g2.setColor(Color.BLACK); g2.drawString(s, nx + (int) ((r.getWidth() - g2.getFontMetrics().stringWidth(s)) / 2), ny + h); } The Result...1 point- Free signatures
1 pointHi everyone, I am back into photoshop again and because I have nothing to do tomorrow, I am going to make some signatures. I will do this more often in my spare time. Some things I have made so far: Want a signature? Please fill in this short form A1: I would like to have this game/movie/genre on my signature: (for example a character from Halo, call of duty etc..) A2: I would like to have this text on the signature: A3: I want my signature to be of a normal size (around 400 x 130px) / I want my signature to be of a bigger size (around 500 x 400px) Note 1. I can't guarantee that I can fulfill your request. 2. I can't guarantee that I can put a text on the signature. Making a text is a really hard thing to do.1 point- [Free Accounts] GTFIH
1 pointOkay guys since im quitting rs for good and just farm the shit out of runescape and make some real money inreal life to buy my foods to bulk up ya know. I got three accounts: Mazzel10 Mazzel1o other one has strange name look it up at highscores. first account has 500 days member 2nd like 360. 3rd 150 or something the reason they have so high membership because my grandpa(was rich) he paid my membership but died 3 years later(3 weeks ago from this date) and so is his credit card blocked and membership isnt paid, however 1 has -500 J coins and other 1 has -1000 J coins If u buy the J coins and unfreeze it it means u will get the member days included both accounts has like 60m both were(twins). What's this account good for? I would say Staking I made like 40 mill with staking even though it hasn't got staker stats but that doesnt matter. Interested: PM me. or reply to this thread. IF U DON'T HAVE ANY INTEREST PLEASE DON'T COME HERE. IF SOMEONE WANT PROOF I GIVE ACCES TO THE ACCOUNTS. I MAYBE WILL GIVE A EOC ACCOUNT FOR FREE CHECK HIGHSCORES ON EOC mazzel10 TNX! Proof of membership: IMG]http://i44.tinypic.com/zwqib.png[/img] IMG]http://i39.tinypic.com/2v0xuf9.png[/img]1 point- Stepping up
1 pointDear community, Over the past month we have seen a reign of cyber crime across the Runescape botting scene. vInsert was the victim of several Runescape account hacking disputes before its database got compromised in the merger with Aurora. Now Advertising other bots isn't allowed. was defaced as well and its database was compromised as well. This thread is to shed some light on our perspective towards those recent happenings. We have always tried to be in time with warnings to protect you as people, Runescape players and us as a community and succeeded in doing this. But as this wave is continuing we have to give it more attention. In general everything we do is with security in mind, that means our security (both personal and OSBot's) and your security. With the recent happenings we have decided that we will take an entire day to go through each and every security measurement we have and see if there is anything that can be improved without harming any user experience. We feel sad for the victims of those attacks even though they might be competitors in some sort of way, we do not and will never condone DDoS'ing, hacking and any other sort of black hat activity. OSBot itself also has been victim of attacks, may it only be DDoS attacks though. We are increasing measurements taken to automatically mitigate such attacks. If such attacks will continue we will alarm authorities and file a report. We will be collecting network connection logs in case. I'm repeating myself, but we will never condone any cyber crime and black hat activity by ourselves, our community members and others. OSBot is a place where people should feel safe and comfortable. Sincerely, OSBot.org1 point- ATRareFinder [AlphaTeam][ALL Rares][Tray Message Alert][LOG saved]
Jus tfound White!!!!!!!!!!!!!!!!1 point- Partyhat prices after the ''event''
Do you think they will go up the couple of days after they stop dropping?1 point- Runescape 07 gold shop
1 pointwhen leaving feedback it asked for a thread of trade. so i shall be using this thread. and thank you1 point- gCutter [From 1 - 99] [Draynor]
1 pointGo ahead If you find any bugs just say Also, I would love some feedback on how to improve! Thanks! - Graphical1 point- ATRareFinder [AlphaTeam][ALL Rares][Tray Message Alert][LOG saved]
damnit, 2.3 has a small mistake, make sure you have a yoyo in your inventory and it will work just like 2.2.1 point- ATRareFinder [AlphaTeam][ALL Rares][Tray Message Alert][LOG saved]
Loading remote script, anyone know why it doesnt work?...1 point- OSBot Promotional Video
1 pointLol 100 premium scripts+ never saw that BTW the video is very well made.1 point- ATRareFinder [AlphaTeam][ALL Rares][Tray Message Alert][LOG saved]
Sir, honestly .. you are fucking stupid. I saw the bot myself not picking the phat up. Though for others .. idk .1 point- OSBot Promotional Video
1 point- OSBot Promotional Video
1 point- ATRareFinder [AlphaTeam][ALL Rares][Tray Message Alert][LOG saved]
I might take back what I said about the community being nicer here.1 point- ATRareFinder [AlphaTeam][ALL Rares][Tray Message Alert][LOG saved]
Thanks Xav just found another white1 point- Stark GDK
1 pointAre you running the latest version of the script? I haven't had anyone with this problem before. Are you running it in low CPU mode? "So many complaints"..? This script does work. There are multiples proggies proving that the script works extremely well, including a 24hr+ one. At least post something that makes sense and is constructive if you're going to criticise1 point- Two suggestions
1 point1. You can check. Go to their profile, on the right side right under your likes.1 point- Two suggestions
1 pointSports section is not a bad idea but you can check someones previous name on the forum but clicking this on someone's profile:1 point- Free sigs
1 point- Selling 5M $11 (2.20/M) must buy all quick
pm me your skype and i'll add you need to sell quick!1 point- Selling 5M $11 (2.20/M) must buy all quick
Closed on request of the buyer, who confirmed a full deal1 point- ATRareFinder [AlphaTeam][ALL Rares][Tray Message Alert][LOG saved]
I don't know if the bot can detect rares that you can't see but if it can't, I'd say make the camera turn 360 before logging off.1 point- ATRareFinder [AlphaTeam][ALL Rares][Tray Message Alert][LOG saved]
For everyone posting about running this script for hours and complaining about getting zero hats let me give you the rundown. LOCATION: This is everything, the best places are obviously those with less people so when a rare spawns in your hopping location YOU get it. eg: areas with quest or cb lvl requirements areas hard to get to or you can get pked at. You get low populated spots by going to a location with the highest requirements. Asily accessible locations are SHIT. There are literally thousands of bots from here, other botting and goldfarming sites using lvl 3 accs to check all these places like Varrock staff shop and blue moon inn basement. THE CHANCES OF YOU FINDING A RARE IN THESE ACCESSIBLE LOCATIONS IS INCREDIBLY SMALL. VOLUME: The more accounts you have running in good locations, the better chance of getting rares are. Simple statistical fact. STREAMS: Check hints from Mods at where new rare drop spots will be. Check Twitch, Twitter and youtube of other people finding phats and check those locations. BOT SMARTER: Babysit if in the wilderness, move spots, carry a yoyo in your invy to prevent getting stuck (if this hasn't been totally fixed) FINALLY: if you're looking to make cash off phat drops and you don't have VIP you're better off going back to flax. 80% of the wealth has been made and prices of phats are already down 35-45%. The only other way you'll be making any money off them is with VIP botting 24/7 in numerous good locations for the whole period they're being dropped, selling as soon as they come in. Prices are only going to tank. Cheers for the 7 phats, my spots were ape atoll dungeon, agil course, deep wildy and multiple elf spawns. 20m Made Happy Botting losers1 point- Goodbye and a giveaway
1 point- ATRareFinder [AlphaTeam][ALL Rares][Tray Message Alert][LOG saved]
1 point- ATRareFinder [AlphaTeam][ALL Rares][Tray Message Alert][LOG saved]
1 point- ATRareFinder [AlphaTeam][ALL Rares][Tray Message Alert][LOG saved]
This guy has the most updated list so far! Found 8 phats so far hopping on 2 accounts, One in the varrock sewers near moss giants, other at the cerublean twitch's north-east relekka. I've made bank so i don't care if phats crash anymore cos now i have enough to rebuy as much as i want. Also, if anyone has member accounts that they want me to bot on for them, pm me :P i take 50-50 which is negotiable if you're a higher level w/ access to greater spots. Wear a ring of life, keep ur bot on the spot so we can make this as quick as possible. no money, no bank pin required. PM me https://docs.google.com/spreadsheet/ccc?key=0AtsMkrn-Hw6-dHZvNlJLR09Fa2VSR3FpWHJaYmJTMlE#gid=01 point- Goodbye and a giveaway
1 point- ATRareFinder [AlphaTeam][ALL Rares][Tray Message Alert][LOG saved]
about 40-45 hours total on 3 accounts, not even a yoyo yet1 point- 3 NEW Rare Spots I Found MYSELF.
1 pointThe first location is misleading. Here's a better pic: Happy Botting1 point- ATRareFinder [AlphaTeam][ALL Rares][Tray Message Alert][LOG saved]
2007hq just got hacked. I uploaded all spots on this site. http://justpaste.it/30pa1 point- Goodbye and a giveaway
1 point- BAN appeal
1 point- ATRareFinder [AlphaTeam][ALL Rares][Tray Message Alert][LOG saved]
over 20 hours on 3 accounts, nothing. tried the new spots after they got updated, 5 hours so far and nothing. really pissed1 point- Buying Partyhat Location
1 pointhttp://www.2007hq.com/guides/misc_guides/rare_hunting_guide.php Confirmed list of new locations Happy Hunting!1 point- [REQ] Sig/Shop
1 pointCheers mate, rep would be greatly appreciated! SIG SHOP BANNER Here's the green/black sig1 point - Sorry Smart. Made myself lol.