Jump to content

Leaderboard

Popular Content

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

  1. I think it would be a great idea to add a new rank, for the people who don't bot but are forum addicted and would like to have some benefits too. The new rank I'm talking about is called "Forum Donator" which will cost you 10$ FOREVER The benefits are : your name will glow, you get the rank itself like sponsor/vip, you can change your display name once in a week/month (depends on what Kati wants or what is the best acceptable). Maybe more benefits can be added if you suggest so... Not awesome benefits because the price is low for a reason. There arent alot of benefits, I know but thats why it costs that less. I am sure alot of people will purchase this and alot of money will be gained to keep the server alive. Support? Opinions?
    2 points
  2. Simplest Thing Ever. I Love Ya'll In This Community. So Theres a Few Rules. & 2 Winners. WINNERS GET: 1 VIP Voucher 1M OldSchool RSGP (or 10M eoc) How It Works?: 1) Post The Form & Fill It Out 2) Star My Profile 3) Posts Stop August 11th/2013. 4) LIMIT: One Post Daily. 5) Will Use a Number Generator & Count Forum Posts. GOOD LUCK RULES: Write 1 thing why OSBOT Is Awesome. Who's your Fav Mod/Forum Mod? And Last but not least. Rap or Metal Music. Only Aloud To Post ONCE DAILY. (you can easily copy and paste the form below and submit it daily) CONTEST ENTERY: Why OSBOT is Awesome: My Favourite Mod/Forum Mod Is: I Prefer (Rap/Metal/Other):
    2 points
  3. 2 points
  4. It's a shame you only chose Sponsor's.
    2 points
  5. If anyone has BO2 on steam @Raflesia and I would play a few games with you. Leave your steam ID here if you have it!
    1 point
  6. Alright guys since I hardly have nothing to do since I quit RuneScape 2007, and you lot are mostly jamming in the Chat Room bored, I'm going to start working on a unofficial OSBot Server, this server will be worked on with talented programmers which has been in the RSPS scene for quiet some time, we might also hire some other programmers in the near future if we need any. The base I will be using for this server will be Hyperion it will be a PK server with rares which you'll have to work and will not be spawnable which can be obtained by bosses or pk points. There isn't currently a estimate of arrival because we want the PK Server to be pinch perfect, so we will be privately BETA testing it once we think it's ready and have no major bugs or any memory leaks we might of added by mistake or any type of dupes. Colour Codes: Not Started. Started. Completed. Programmers: Peter - Content Developer. Rico(Danimal) - Content Developer & Core & Networking. Features: Decent combat base: Melee: Perfect maxhit, weapon timers, special attacks Range: Perfect maxhit, every bow+arrow type, special attacks, arrows drop on ground Magic: Normal spells up to bolts + Ancient ice spells (Easy to add rest) Food and potions work Wilderness fully working. Decent skill system: Firemaking base Woodcutting base Mining/Prospecting base Thieving (stalls and npc) base Miscellaneous: Fight caves minigame Start of cook's assistant Following system (Needs testing) Door + ladder system Jagcached client + RSA encrypted (Means that you don't need to download full cache before playing) Shops. Safe Zones Multi Zones. Pk Points System. Bank System. Credits: Graham Blake BrettR Scu11 Canownueazy Russian
    1 point
  7. ????????????????????????????????????????????????????????????????????
    1 point
  8. I might just buy it to beat you.
    1 point
  9. the image needs a reupload not showing up :\
    1 point
  10. See the background? You should add light effects to it instead of just paint because the light would fit very well with the render thats in there. Know what I mean? Also the text needs some more extra effects Keep going!
    1 point
  11. Obviously Raze for Mod (it was hard to choose between led zepplin and raze ) Smart for super Raflesia for admin
    1 point
  12. Well Pretty shexy, I think the font needs a little work, a little more WOW. Know what i mean?
    1 point
  13. Sorry but there is no way we can give you a name that has already been taken.
    1 point
  14. You should mark them all as working for now unless someone posts otherwise ;)
    1 point
  15. Have you cleaned out port 80 yet?
    1 point
  16. this got like 15 views? lol just getting more? the only reason i watched because you were in it -__- you look like a total nerd -___-
    1 point
  17. package org.assume.api; import java.util.ArrayList; import java.util.List; import org.osbot.script.Script; import org.osbot.script.rs2.model.Item; public class Methods extends Script { public boolean inventoryContains(int...ids) { List<Integer> def = new ArrayList<Integer>(); for(int i : ids) { def.add(i); } for(Item i : client.getInventory().getItems()) { if(def.contains(i.getId())) return true; } return false; } public boolean inventoryContainsAll(int... ids) { int total = 0; List<Integer> def = new ArrayList<Integer>(); for(int i : ids) { def.add(i); } for(Item i : client.getInventory().getItems()) { if(def.contains(i.getId())) { total++; def.remove(i.getId()); } } return total == ids.length; } public Item[] findInInventory(int... ids) { List<Item> list = new ArrayList<Item>(); List<Integer> def = new ArrayList<Integer>(); for(int i : ids) { def.add(i); } for(Item i : client.getInventory().getItems()) { if(def.contains(i.getId())) list.add(i); } return list.toArray(new Item[list.size()]); } } Checking an Array to see if it contains a value would be much less efficient than using a List. I would have to call a separate method to iterate through every value in the array and see if it contained the value. If you are referring to the findInInventory method using a normal array is impossible as I cannot dynamically add to it (arrays in Java have a fixed size).
    1 point
×
×
  • Create New...