Everything posted by skillerkidos1
-
Hello
Welcome! hope you enjoy
-
KO Corp
Join my discord! I’ll give you auth
-
Opening items in inventory
if(inventory.contains("Feather pack")){ inventory.getItem("Feather pack").interact("Open"); //add conditional sleep }
-
Tried making gui with tabs now script wont even start
I love you ❤️❤️❤️❤️
-
Tried making gui with tabs now script wont even start
https://pastebin.com/U0hmwKbZ That’s all of it and I’ll try what you said when I get home I’m a few hours. Hopefully that will work!
-
Tried making gui with tabs now script wont even start
Where would I put that? Originally I was following this guide here
-
Tried making gui with tabs now script wont even start
No I had a simple GUI and it was working fine then I redid the GUI and now the script won’t start. The log in osbot does not say anything when I try to start the script. public void open(){ mainDialog.setVisible(true); } public void close(){ mainDialog.setVisible(false); mainDialog.dispose(); }
-
KO Soul Wars beta
Thank you! Yea this project is currently on hold unfortunately because I can’t figure out a core issue. So I started my other one 😛 and thank you for the idea with beta testers!! That is going to be so helpful!
-
Tried making gui with tabs now script wont even start
Hey so i tried making a GUI with tabs but now when i try to start my script nothing happens. the log does not say anything either. I tried use JFormDesigner but couldnt get that to work so i checked out explvs guide i think it was. suppose to looke like this SOLVED THANK YOU! idk what im doing wrong thank you for your help in advance
-
OSTracker 2.0 - User data tracking and storage API
Wow this looks really useful!
-
KO Corp
KO Corp Looking for BETA Testers! August 2025 Current Features: Solo's Corp Group Support Private portal with alt Support Running core Uses DWH, Arclight, and BGS special attack on Corp Heals/Refills special attack and prayer in POH Supports super combat/prayer pots Restocking Friends House Portal Support Deathwalking Working on: Gear switch support If you would like to help test the script please join my discord!
-
Why is OSBot doing this?
ooo lmao yea ive tried doing that it still does it
-
Why is OSBot doing this?
how do i put it back to the default size? ive tried closing and opening but that does not help. Ive also tried cloing the log and the menu on the right and it will still do it.
-
Why is OSBot doing this?
The past couple days OSBot started doing this weird thing when i move the mouse over the screen it does that only on the client not the runescape screen if that makes sence. any ideas why its doing this? Thank you!
-
Selling combat lev 12 - 96 Hunter alt
Added on discord
-
Selling combat lev 12 - 96 Hunter alt
Bans?
-
Soul Wars Bot
Working on it and I’m sure others are too
-
OSBot Bumper
Sounds nice! Does it use the mouse or anything? or it just does it in the background?
-
[B] 500+ Total Level and Combat Level 40+
Looking for some accounts with a minimum total level of 500 and minimum combat level of 40 please post stats/price or add me on discord SkillerKido#2423 Thank you
-
KO Soul Wars beta
updated to fix some bugs that were reported! v0.2 bug fixes, fixed pathing, added GUI, option to collect/attack forgotten souls currently in the gui only the ATTACK_PLAYERS and COLLECT_SOULS options work. The ATTACK_AVATAR has not been implemented yet so do not chose that option YET!
-
KO Soul Wars beta
This is one of my first scripts I've made. I plan on adding a lot more but needed some help with testing. Current Features: Joins game Grabs Bandages when out Attacks other players Attacks and collects souls (MORE TO COME) Working on adding: - GUI (basic) - Zeal Rate - Attacking/Collecting forgotten souls - Putting souls in obelisk - Using potion of power - Auto spending points - Quick prayer support - Attacking the Avatar Let me know what you guys think! Start the script at Soul Wars Download: https://mega.nz/file/GplEEC4b#Gut19itYwj5qGZZjfby7LPk_8vLFVLbg19LRk42iS1E Change Log: v0.1 released v0.2 bug fixes, fixed pathing, added GUI, option to collect/attack forgotten souls
-
Can't see local script
In your IDE is the output path setup correctly?
-
help getting object x - myPosition x
I think I tried that but now im thinking I used it wrong Will try it now and see if that will work!
-
help getting object x - myPosition x
omg do i just need to check if they are != null first?
-
help getting object x - myPosition x
So I'm trying to get the X of an object in a instance and get my X while in that instance and then subtract them @Override public int onLoop() throws InterruptedException { RS2Object obj = getObjects().closest(123); int distance = myPosition().getX() - obj.getPosition().getX(); I also tried int distance = myPosition().getX() - obj.getX(); if(distance <= 2){ //do this } When I do either of those and start the script I get this error [ERROR][Bot #1][01/14 07:34:39 PM]: Error in script executor! java.lang.NullPointerException at main.onLoop(main.java:125) at org.osbot.rs07.event.ScriptExecutor$InternalExecutor.run(tk:46) at java.lang.Thread.run(Thread.java:748) I'm not really sure what I'm doing wrong any help would be great Thank you