-
Ultimate Zulrah Helper
Can I get a trail?
-
12we12qw12 started following ProjectPact
-
Making a red chin bot {need help}
What API would you use? something like if (myPosition.equals.chinArea) I think this is what they mean but I still am trying to figure out how my position will get marked. and I dont think designated trap spots will work well
-
Making a red chin bot {need help}
Ok I'm wondering how to store the player postion ?
-
Making a red chin bot {need help}
Ok something like (Pseudo Code) boxtrapPosition.getPosition.translate ?
-
Making a red chin bot {need help}
Hey yall, im making a red chinchompa bot I came to some trouble and was wondering if you can tell which box traps are your players and what box traps are other players? I made my bot but if somebody comes in my proximity it will think that another players trap is mine own. So, is there an ID I dont know of or a trick to make it so the bot recognizes my own traps? any solutions would be great. Thank you all
-
12we12qw12 changed their profile photo
-
{Beginner} Simple woodcutting script need help
I'm making a woodcutting script but I have ran into an issue, when I get a full inventory of logs my character will walk to the back but will not deposit the logs but instead run back to the trees and try to cut them down. This making my character run back and forth. Script is below, I don't know what to add to fix this. If you guys have any other recommendations to add to the script or tips let me know, Thanks. @Override public void onStart() throws InterruptedException { super.onStart(); int wcLvl = getSkills().getStatic(Skill.WOODCUTTING); if (getInventory().isEmptyExcept("Bronze axe", "Iron axe", "Steel Axe", "Black axe", "Mithril axe", "Adamant axe", "Rune axe", "Dragon axe")) ; } @Override public int onLoop() throws InterruptedException { Player player = myPlayer(); RS2Object Tree = getObjects().closest(new Filter<RS2Object>() { @Override public boolean match(RS2Object rs2Object) { return rs2Object != null && rs2Object.getName().equals("Tree") && rs2Object.exists() && getMap().canReach(rs2Object); } }); if (Banks.VARROCK_WEST.contains(myPosition()) && bankbooth != null && !getBank().isOpen()) { getBank().withdraw("Steel axe",1); } if (Tree != null) if (Tree.isVisible()) { getWalking().walk(Tree.getPosition()); getCamera().toEntity(Tree); if (Tree.getPosition().distance(myPosition()) > 6) ; if (!myPlayer().isAnimating()) if (Tree.interact("Chop down")) ; getMouse().moveOutsideScreen(); sleep(random(301, 2999)); } else { RS2Object bankBooth = getObjects().closest("Bank booth"); if (getInventory().isFull()) getWalking().webWalk(BANK_AREA); log("Inventory full walking to bank"); if (Banks.VARROCK_WEST.contains(myPosition()) && bankbooth != null && !getBank().isOpen()) { getBank().depositAllExcept("Bronze axe", "Iron axe", "Steel axe", "Black axe", "Mithril axe", "Adamant axe", "Rune axe", "Dragon axe"); log("interacting with bank"); bankBooth.interact("Bank"); } else if (getBank().isOpen()) { int wcLvl = getSkills().getStatic(Skill.WOODCUTTING); log("Depositing Logs"); getBank().depositAllExcept("Bronze axe", "Iron axe", "Steel axe", "Black axe", "Mithril axe", "Adamant axe", "Rune axe", "Dragon axe"); if (wcLvl >= 6 && getInventory().contains("Bronze axe", "Iron axe") && getBank().contains("Steel axe")) { log("withdrawing shitty axe"); getBank().deposit("Bronze axe", 1); getBank().withdraw("Steel axe", 1); } } }return 0;}}
-
(Beginner) Realistic camera angles and mouse movements.
Hey I'm sort of new to scripting and was wondering how can I add Random Realistic Moving Camera angles and mouse movements to my bot? I want to make a bot that isnt obvious and flicking mouse movements isn't good. Any help or explanation would be very much appreciated thanks. (what would the script look like)
-
{Beginner} OsBot Local script not appearing
Solved - had to uninstall and reinstall OsBot. I think that I had multiple copies of OsBot making it complicated for me. Thanks for all the messages they actually did help me.
-
{Beginner} OsBot Local script not appearing
I do have this skeleton on my script, i have one that is just the skeleton but it wont send. My problem is that the scripts are located in different files possible? Or something could be wrong on my script? Kind of clueless.
-
{Beginner} OsBot Local script not appearing
I am new to scripting having troubles getting my script sent to my OsBot application. IntelliJ is sending the script to C:\Users\Me\OSBot\Scripts but this is not showing up on the OsBot application. Yes I have tried refreshing. Any feedback would be very helpful. ty
- {Beginner} Scripts are not sending from IntelliJ to OsBot Script Selector