Everything posted by Vilius
- Cant join chatbox?
-
Cant join chatbox?
Oh you Aight, will try.
-
Cant join chatbox?
I cant seem to join the chatbox, I get an error joining. https://gyazo.com/ab6f085db37add5367181c4119504ae7 Anyone else experiencing this problem?
-
Some kid tried to scam me on steam.
More info, he tried to scam a 130euro knife from me
-
Some kid tried to scam me on steam.
Lol's were made. https://gyazo.com/03d1f9ec8d8947828d6536e996786cc2 , https://gyazo.com/e44737fa9666e39660d2d35a600eb9cb , https://gyazo.com/e3e6589d47896151666e1ba196fdcda9
-
My story - Recovery.
Good luck man, looking really good fam :P
-
Meh, 50+ mining lvl bot banned :P
Nah, coal mining at barbs with banking. f2p profit from coal alone bout 300k xD
-
Meh, 50+ mining lvl bot banned :P
Just right now my mining bot got banned. its been botting for 12 hours with breaks.
-
Local walker doesn't want to walk...
I tried logging everything, but don't seem to understand what do you want me to log with localwalker? WALK_TO_FISH("WalkToFish") { @Override public boolean canProcess(main script) { boolean inArea = script.ZONE.contains(script.myPlayer().getPosition()); return !inArea; } @Override public void process(main script) { if(!script.myPlayer().isMoving()){ script.getLocalWalker().walk(3109, 3433); } } }, This is how my walk to fish code looks like, it works. It goes where I want it to go
-
Local walker doesn't want to walk...
Well its walking to the fish zone when its not on screen.
-
Local walker doesn't want to walk...
WALK_TO_BANK("WalkToBank") { @Override public boolean canProcess(main script) { boolean inAreaPickup = !script.BANKZONE.contains(script.myPlayer().getPosition()) && script.inventory.isFull(); return inAreaPickup; } @Override public void process(main script) { if(!script.myPlayer().isMoving()){ script.getLocalWalker().walk(3183, 3437); } } }, i'm not sure whats happening, tried everything checked if everything is starting doing its things. But when inventory is full and its not in bankzone it doesn't walk to the bank. Even when inAreaPickup is true. Maybe something is wrong with LocalWalker? Even the almighty fixthissite doesn't know whats happening.
-
Help me fix looting.
Nevermind, canProcess is returning false. ;_;
-
Help me fix looting.
tried that, didn't work tho.
- Help me fix looting.
-
Wassup Peeps
Heyo! I'm Vilius! I'm a long time lurker now interested in making my own scripts! Few cool peeps: dudeami fixthissite
-
PPOSB - AIO Hunter
Whens the release date?
-
need help with hidden number call from phone (Will pay)
Why its so important, was it life threatening? Depends on the situation.
-
Need help looting
So I get an error with looting filter what am I doing wrong? GroundItem ashes = groundItems.closest(new Filter<GroundItem>() { @Override public boolean match(GroundItem groundItem) { return groundItem != null && groundItem.getName().equals("Raw trout && Raw salmon") && ZONE.contains(groundItem); } }); How do I fix that?