Everything posted by Acerd
-
muhbuild
PCPartPicker part list / Price breakdown by merchant CPU: Intel Core i5-4460 3.2GHz Quad-Core Processor ($169.99 @ SuperBiiz) Motherboard: MSI Z97-Gaming 3 ATX LGA1150 Motherboard Memory: Kingston HyperX Fury Black 8GB (2 x 4GB) DDR3-1333 Memory ($29.99 @ SuperBiiz) Storage: A-Data Premier Pro SP600 64GB 2.5" Solid State Drive ($34.99 @ Amazon) Storage: Western Digital AV-GP 500GB 3.5" 5400RPM Internal Hard Drive ($34.90 @ Amazon) Video Card: Gigabyte GeForce GTX 960 4GB Video Card ($243.88 @ OutletPC) Case: Cooler Master N400 ATX Mid Tower Case ($44.99 @ Newegg) Power Supply: Cooler Master 650W 80+ Gold Certified Fully-Modular ATX Power Supply ($99.99 @ Newegg) Operating System: Microsoft Windows 7 Ultimate 64-bit Total: $658.73 ($813 actually - $850-900 in iran) Prices include shipping, taxes, and discounts when available Generated by PCPartPicker 2016-06-23 04:53 EDT-0400 thots?
-
Need a good budget case
for MSI Z97 GAMING 3 motherboard
- Who will win this evening?!
-
Will OSBot stop trying to login after an update?
doubt that would give you a ban but i thought after 5 times it would stop relogging?
-
Will OSBot stop trying to login after an update?
does it matter?
-
More Safe AutoAlcher
dont see how this is safer than just using gary's hood , either way nice release.
-
Acerd's Gnome Agility
works for me , just compile it if it doesnt work4u
-
Bot detection documentation leaked
this actually got me despite not being a botter or rs player
-
Bot initialization failing
make sure theyre SOCKS5 proxies
- Omg i cant wait
-
Omg i cant wait
jesus christ calm teh fuck down its a joke
- SDN Upload Requests?
-
Workout: Legs Day
i have more hair than that
-
@Krys
fru eh and tom needs in on this shit
- Finals winner?
-
What Langauge should I learn at work? (No programming)
Russian, Dutch, Mandarin, Suomi and Kurdish
- Moving to Romania?
-
Logger says NPC is null but in reality it isn't?
i tried that too
-
Logger says NPC is null but in reality it isn't?
ive tried dat too if u mean: if (!area.contains(myPlayer()) { getWalking().webWalk(area); } else if (npc != null) { log("npc not null"); }
-
1-Oak larders (Construction)
1 to 37 basically
-
Logger says NPC is null but in reality it isn't?
This has never happened to me so I'm kind of confused why this is happening; basically it walks to an area and interacts with NPC and logs that npc isnt null, goes to bank and then goes back to the area , however this time it logs that the NPC is null. What am I doing wrong? code: NPC npc = getNpcs().closest("NPC"); // onloop if (!area.contains(myPlayer()) { getWalking().webWalk(area); } else { if (npc != null) { log("npc is not null"); npc.interact(); } else { log("npc is null"); } }
- Accepting trade issues
- Acerd's Gnome Agility
-
Accepting trade issues
use conditionalsleeps instead of while loops try tis: if (getTrade().isCurrentlyTrading()) { if (getTrade().isFirstInterfaceOpen()) { if (getTrade().acceptTrade()) { new ConditionalSleep(5000) { @Override public boolean condition() throws InterruptedException { return getTrade().isSecondInterfaceOpen(); } }.sleep(); } } else { if (getTrade().acceptTrade()) { new ConditionalSleep(5000) { @Override public boolean condition() throws InterruptedException { return !getTrade().isCurrentlyTrading(); } }.sleep(); } } idk 100% if code will work cause i wrote it on browser
-
Accepting trade issues
do u have a: getTrade().isCurrentlyTrading() in your code edit: post ur code