-
Posts
926 -
Joined
-
Last visited
-
Feedback
100%
Everything posted by LoudPacks
-
https://calculator.com/
-
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.
-
You can only have one account so pick which one you want to use and ask a mod to ban / delete the other one.
-
BUMP
-
BUMP
-
BUMP
-
BUMP
-
this guy is ridiculous
-
thank you for this
-
bump
-
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)
-
once we are able to construct similar simulations we will know that we are running inside of one.
-
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.
-
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.
-
You can reference static variables from non-static instances.
-
You mean to prevent mouse dragging?
-
petition to permaban people who say "gl with sales"
LoudPacks replied to Turkoize's topic in Spam/Off Topic
I was conflicted because I am in fact a cis white male -
I have a method, Ill post when I get home. Lets you use item name or item id to lookup price.