March 21, 20214 yr Hello everyone, First time user here. Tried to find a solution here couldn't really find anything... What could be the issue here ? I pressed the 'update to ......" but that doesn't do anything next to making a 'old bot' folder with a net .jar in
March 21, 20214 yr I'd recommend deleting your OSBot folder in C:/Users/(yourname) and downloading a new .jar file to see if that solves the problem.
March 21, 20214 yr Author Thank you for responding! Now it's stuck on 'Status..." Edited March 21, 20214 yr by BalanceDruid
March 21, 20214 yr 1 hour ago, BalanceDruid said: Thank you for responding! Now it's stuck on 'Status..." Try closing and reopening it
March 21, 20214 yr 9 minutes ago, BalanceDruid said: This again... If you have an anti virus try disabling it
March 21, 20214 yr Author 1 hour ago, Gunman said: If you have an anti virus try disabling it Thank you for the time you invested in my issue. I found the solution to my problem : Open CMD in Admin and open your JAR file through the CMD This helped me. Not sure if it will still work after restarting thank you everyone. Have a good day
March 21, 20214 yr 12 minutes ago, BalanceDruid said: Thank you for the time you invested in my issue. I found the solution to my problem : Open CMD in Admin and open your JAR file through the CMD This helped me. Not sure if it will still work after restarting thank you everyone. Have a good day Glad to hear you were able to get it to work! If running it via CMD as Admin worked, I'm guessing @Gunman might be in the right idea with it being something being blocked by an antivirus or firewall. You could try disabling it or whitelisting the OSBot.jar and seeing if you can run it normally after that. Worst cast scenario, just write a .bat file to execute the .jar as administrator and use that every time 😁
March 22, 20214 yr Author 9 hours ago, Delision said: Glad to hear you were able to get it to work! If running it via CMD as Admin worked, I'm guessing @Gunman might be in the right idea with it being something being blocked by an antivirus or firewall. You could try disabling it or whitelisting the OSBot.jar and seeing if you can run it normally after that. Worst cast scenario, just write a .bat file to execute the .jar as administrator and use that every time 😁 Yea this morning when I tried to boot it up again I had the same issue; Tobad my knowledge of BAT scripting is far from on point. I'll take a look around how to fix this issue Thank you for the response!
March 22, 20214 yr 5 hours ago, BalanceDruid said: Yea this morning when I tried to boot it up again I had the same issue; Tobad my knowledge of BAT scripting is far from on point. I'll take a look around how to fix this issue Thank you for the response! Here's a quick script that will execute a .jar file with administrator rights. It's a bit lengthy but it worked when I tested it. The only thing you should need to change will be the very last line where you will need to change the file path to wherever the OSBot.jar is located on your computer: @echo off :: BatchGotAdmin (Run as Admin code starts) REM --> Check for permissions >nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system" REM --> If error flag set, we do not have admin. if '%errorlevel%' NEQ '0' ( echo Requesting administrative privileges... goto UACPrompt ) else ( goto gotAdmin ) :UACPrompt echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs" echo UAC.ShellExecute "%~s0", "", "", "runas", 1 >> "%temp%\getadmin.vbs" "%temp%\getadmin.vbs" exit /B :gotAdmin if exist "%temp%\getadmin.vbs" ( del "%temp%\getadmin.vbs" ) pushd "%CD%" CD /D "%~dp0" :: BatchGotAdmin (Run as Admin code ends) :: Your codes should start from the following line java -jar "C:\Users\pesal\Desktop\RS\OSBot 2.6.18.jar"
Create an account or sign in to comment