Jump to content

LoudPacks

Members
  • Posts

    926
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by LoudPacks

  1. Silicon isn't plastic. Its more of a rubber: https://www.durexusa.com/collections/condoms/products/durex-condom-xxl-longer-and-wider-natural-latex-condoms bond plz.
  2. You can only have one account so pick which one you want to use and ask a mod to ban / delete the other one.
  3. If anyone needs any discord bots made I am offering my services. Pricing will depend on the features of the bot requested. I can also provide 24/7 hosting of your bots for an additional price - $5 a month or $20 for the 6 months or $30 for the year. Examples of bots made so far: Cryptocurrency Tip Bot - lets user tip discord members various cryptocurrencies RS Gambling Bot - gambling bot for OSRS (flowers, dice, duels, flower poker, odd / even) Subscription Manager - Users purchase access to discord channels, bot automatically assigns channel permissions and manages time based user subscriptions to various channels RS Assistant - discord users would message the bot and a private script instance would log in and do various tasks for them (muling, bringing items, walk to locations)
  4. once we are able to construct similar simulations we will know that we are running inside of one.
  5. public String getBestAxe() { String name = ""; int lvl = getSkills().getStatic(Skill.WOODCUTTING); if (lvl >= 41) { //you could also add inventory checks here so it only returns the best axe in inventory name = "Rune axe"; } else if (lvl >= 31) { name = "Adamant axe"; } else if (lvl >= 21) { name = "Mithril axe"; } else { name = "Bronze axe"; } return name; } public int loop() { String axe = getBestAxe(); if (getInventory().contains(axe) && !getEquipment().contains(axe)) { if (getInventory.interaction("Equip", axe)) { new ConditionalSleep(1500, 2000) { @Override public boolean condition() { return getEquipment().contains(axe); } }.sleep(); } } return 250; } I wrote this in the editor so format is shit. You can edit it a big for pickaxes and throw in an attack level check. Edit: @Apaec way is better but I didn't think you'd want to mess with enums or streams.
  6. Yea it really depends on what you're trying to do. No point in using static vars / methods if you don't need to. I was just generalizing.
  7. You can reference static variables from non-static instances.
  8. I was conflicted because I am in fact a cis white male
  9. I have a method, Ill post when I get home. Lets you use item name or item id to lookup price.
×
×
  • Create New...