-
Posts
84 -
Joined
-
Last visited
-
Feedback
100%
Everything posted by Thiccboi
-
Can I get some advice on Progressive Combat level Logic?
Thiccboi replied to Elixar's topic in Scripting Help
Heres a quick snippet of the logic you would use for checks. public int onLoop() throws InterruptedException { if (skills.getStatic(Skill.STRENGTH) >= 30 && (skills.getStatic(Skill.ATTACK) >=30 && (skills.getStatic(Skill.DEFENCE)) >=1)){ def(); } if (skills.getStatic(Skill.STRENGTH) >= 30 && (skills.getStatic(Skill.ATTACK)) >=1) { att(); } if (skills.getStatic(Skill.STRENGTH) >= 1 && (skills.getStatic(Skill.STRENGTH)) < 30)) { str(); } } return random(200, 300); } Then you would just need to make a voids for str,att,def. in this order it would get strength to 30 and then change to attack, and if attack and str are >=30 it will do defence. edit: just read you want to do 30% of the level before continuing, would just have to make 6 more of these calling the right levels you want. if (skills.getStatic(Skill.STRENGTH) >=10 && (skills.getStatic(Skill.STRENGTH)) <20)) { str(); } -
Why not just use worlds.hopToF2PWorld() then return if hopped world?
-
Im gonna run it on 2 more accounts, I'll post proggies so we can get an accurate gp an hour
-
Not entirely sure right now as I wrote this last night, I saw a video of someone killing imps on youtube and he was getting around 100k an hour, but that was 1 hitting them with range. I ran it on a fresh level 3 account and it was getting around 50k an hour in F2P after the stats hit about 20/20/20. could be a lot more now with ensouled heads. although I don't think many people will be killing imps for money on members worlds lol.
-
I made this with the intention of a f2p money maker, so I completely overlooked the p2p droptable lol. Added Ensouled heads and the Champion Scroll! thanks for pointing it out.
-
Features Kills Imps in Falador for Beads, Talismans, Ensouled heads, Champion Scrolls, Chef hats, and Wizard hats. Banks and returns to Imps when inventory is full Requirements Any weapon NOW ON SDN! Please report any bugs in the thread below, also feel free to post proggies.
-
I did, didn't lose anything was just suicide a f2p to 60 stats
-
Thicc Drop Party OK, This script is a big troll but I thought it was funny so I wrote it. Script will walk around GE advertising "Drop Party" on W301 then walks to mud skipper point and hops worlds leaving them all there then walks back to GE hops back to W301 and repeats God tier trolling xDDD Download here: Drop Party.jar any suggestions please add in the comments have fun lol also if someone could make a counter that grabs the amount of players at mudskipper every trip and adds them to the counter for a "Players time wasted" counter it would be cool I cba to do it for this
- 1 reply
-
- 6
-
-
-
-
-
-
'You are not eligible to create an account'
Thiccboi replied to CcozyD's topic in Community Discussion
happened to me one time when I said I was under 13 I believe, it sticks due to cache, try to clear your cache and see if it gives error still. -
I hope antiban.class checks your woodcutting xp congrats on your first release.
-
[F2P] Woad Leaf Buyer (20k per hour) (Muling Support)
Thiccboi replied to Thiccboi's topic in Money Making
Hmm ok, I’ll look at it right now the script stopping was working fine for me, maybe something broke edit:After testing for a bit I can't get it replicate what you were saying, if it does do it again can you copy and paste the log to me? edit2: all issues have been fixed. If anymore pop up please report it with the logger. -
[F2P] Woad Leaf Buyer (20k per hour) (Muling Support)
Thiccboi replied to Thiccboi's topic in Money Making
Did you download the newest version? The leaves per hour counter works in that one, maybe it did not exit on out of money because you’re using an older version. It was working fine for me but I will take another look at it -
[F2P] Woad Leaf Buyer (20k per hour) (Muling Support)
Thiccboi replied to Thiccboi's topic in Money Making
Found out the issue is with setting the price of the leaves with the osbuddy price guide on start. Sometimes it fails to retrieve it causing the script to close, there is no need to restart the client just keep restarting the script and eventually it will load it. I will fix this issue when I am home. -
[F2P] Woad Leaf Buyer (20k per hour) (Muling Support)
Thiccboi replied to Thiccboi's topic in Money Making
It's probably an issue with the GUI loading, I'll fix it. -
[F2P] Woad Leaf Buyer (20k per hour) (Muling Support)
Thiccboi replied to Thiccboi's topic in Money Making
@tmanowen Fixed the issue you mentioned above and added some stuff. -
[F2P] Woad Leaf Buyer (20k per hour) (Muling Support)
Thiccboi replied to Thiccboi's topic in Money Making
Nice proggie! completely overlooked the fact that you will run out of money eventually lol, Very simple fix I'll push that out with the paint update. -
GPSWoad | Woad leaf buyer | F2p | no reqs | up to 50k/h
Thiccboi replied to GPSwap's topic in Money Making
Never even noticed you already made this lmao. -
[F2P] Woad Leaf Buyer (20k per hour) (Muling Support)
Thiccboi replied to Thiccboi's topic in Money Making
I just added all of the paint stuff about an hour ago, but before it was there I was just running the scrip to test it. Accounts seem to last a decent amount of time while suiciding, during my test I ran 5 accounts for 15 hours and there were no issues, I'll run some accounts later tomorrow and post some. The best thing about Woad Leaf is that they stack so no banking needed, as well instead of selling them you can supply your own bots to make even more profit making blue dye. Possibly the option of making the leaves into dye after buying (x) amount would be something to add in the future? -
Very simple idea, buys Woad leaf from Wyson the Gardener in Falador. Profit is around 20k an hour currently. Requirements: Coins (spends about 7k an hour) Please post any issues in the comments! DOWNLOAD CHANGE LOG: PROGGIES
-
actually I was able to find a solution myself, I just forgot to post it here. Thank you for all of the help though!
-
if you don't mind me asking where does it store the username for getLastRequestingPlayer? I have tried trade.getLastRequestingPlayer == null; but I just get an error.
-
I am newly learning java and getting into scripting, I am trying to make the bot accept a trade when it is sent to it and then accept if coins are in the trade. the main issue I am having with my code is that it keeps spam trading the other player, It will accept the trade then close the trade instantly and keep spam trading them. but if you start the script while the trade window is open it works as intended, I would really like some help if possible. public int onLoop() throws InterruptedException { if (trade.getLastRequestingPlayer() != null) { trade.getLastRequestingPlayer().interact("trade with"); log ("trade started"); } if (trade.getTheirOffers().contains("coins")){ trade.acceptTrade();} if (trade.isSecondInterfaceOpen()) { trade.acceptTrade(); }; return random (200, 300);
-
Im using one of my proxies, I have only been banned twice on it so I didnt see the need to get a new one yet I am fairly new to botting for gold, so I do expect bans, I'm not blaming the script. I think its just a matter of me figuring out the correct way to do it, how often to change proxies and break settings / mirror mode if its really worth it.
-
I seem to get banned the day after using the script, I have had one account last me 30 hours, are there any tips you could give on lowering the ban rate such as break settings?
-
It was mithril bars, I had 1972 of them and it kept trying to sell them for 1972gp, I started the script in the GE and yeah I had to pause the script and manually sell them because it just got stuck like that. Edit, I was able to get it to happen again and recorded it. I started the bot in GE, only options I did in the bot was: Bar Type Mithril: GE mode and Coffer mode. Video of the bug I also purchased the script because it works really nice, thanks for the trial! Also after it finishes the bars instead of going back to the ge it just withdraws them from the bank and logs out.