Everything posted by itzDot
-
So July 15th...
HAA, GOT EEEEEM
-
What are you guys buying this Prime Day?
probably nothing poor af xD
-
bot won't start
since yesterday my bot stopped working it and i get this error if someone could help, i don't know what the problem is.. because the code wasn't changed and it worked perfectly fine before yesterday, was there a new update for osbot or something? *NVM works fine on my laptop its just some bugs with eclipse project folders when transferring between two pc
-
Jack's IP Checker Script
lol.. this is just basically goes to google types in "whats my ip" and fetches the result. people are getting that lazy?
-
AdvWoodCutter -first script
thanks buddy it still needs work dou
-
AdvWoodCutter -first script
fair enough i understand
-
AdvWoodCutter -first script
AdvWoodCutter Hello osbot community, this is my first script and I'll be updating and improving this script overtime. requirements: -have an axe in inventory or equiped -For powerleveling you can be anywhere just select your tree type -For Bank mode be close to the specific area that you selected for banking Current features -power leveling -supports the major popular trees (will add new trees if requested) -works anywhere in runescape just be in a decent proximity of the tree type you wish to cutt -Of course it drops the logs once inventory full *no need to worry about the script dropping your axe -Bank mode -supports yews,maple, magic -current locations that are added -edgevil yews -Grand exchange yews (will add more locations in future of course) -Seers Village(maple, yew , magic) -will walk back to path if your character leaves the area for what ever reason Things i'm working on: -improve antiban GUI Progress report: v2.2: -changed GUI v2.1: -Added SeersVillage maple -Added SeersVillage Yews -Added SeersVillage Magic (two locations) -Added couple of custom antibans v1.9: -added progress bar onto paint -added the obstacle/door for edgevil yews
-
Problem with script
nvm you need to switch up the returns with chop and drop
-
Are is interested to work with me? Al Kharid Warrior
for GUI aka form its simple create a seperate class just for GUI which extends JFrame public class GUI extends JFrame { //fields go here //constructor public GUI() { } } ////on main script class in start method envoke the GUI class
-
Unique IP VPN
check out pia their decent
-
disable the random mouse & camera movements
is there anyway I can disable the random mouse & camera movements that are made by the client
-
1 month free vip!
VIP status would help me allot, because while I'm working on my scripts, the VIP status would help me to test the limits of how long I can run my scripts without it getting any error(s)/ban by using the mirror client.
- failing to drop logs
-
failing to drop logs
alright thanks for the heads up
-
First "working" script.
just a little tip no need to make two if statements like that. if (tree != null) if (!myPlayer().isAnimating()) // how to decide which mode to be return State.CHOPPING_LOGS; instead do if (tree != null && !myPlayer().isAnimating()) return State.CHOPPING_LOGS;
-
failing to drop logs
hey idk what causes this issue but once a while my script fails to drop the log and instead clicks use, and then it just stops droping the logs and moves onto different task, the method im using to drop the logs is inventory.dropAll(treeType);
-
IntelliJ need help with testing out my script
nvm figured it out
-
IntelliJ need help with testing out my script
Hi i used IntelliJ as my IDE and now i finished the foundation of my script and i wanted to test it out, but I don't know how to test out my script using IntelliJ. If someone could help me it would great, thanks in advance.