Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!

Bug Access denied. Your account and IP have been flagged.

Joined
Jun 10, 2020
Messages
3
I have recently created an account on RuneMate so that I can write my own bot. After reading the tutorials and linking IntelliJ to RuneMate, I'm getting this error when running my code:


RuneMate denied.png
This is my first using RuneMate and I don't know why im getting denied and my IP is getting flagged. By the way, this is what I get on the console:

Code:
"C:\Program Files (x86)\Java\jre1.8.0_251\bin\java.exe" "-javaagent:C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2020.1.2\lib\idea_rt.jar=53233:C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2020.1.2\bin" -Dfile.encoding=UTF-8 -classpath "C:\Program Files (x86)\Java\jre1.8.0_251\lib\charsets.jar;C:\Program Files (x86)\Java\jre1.8.0_251\lib\deploy.jar;C:\Program Files (x86)\Java\jre1.8.0_251\lib\ext\access-bridge-32.jar;C:\Program Files (x86)\Java\jre1.8.0_251\lib\ext\cldrdata.jar;C:\Program Files (x86)\Java\jre1.8.0_251\lib\ext\dnsns.jar;C:\Program Files (x86)\Java\jre1.8.0_251\lib\ext\jaccess.jar;C:\Program Files (x86)\Java\jre1.8.0_251\lib\ext\jfxrt.jar;C:\Program Files (x86)\Java\jre1.8.0_251\lib\ext\localedata.jar;C:\Program Files (x86)\Java\jre1.8.0_251\lib\ext\nashorn.jar;C:\Program Files (x86)\Java\jre1.8.0_251\lib\ext\sunec.jar;C:\Program Files (x86)\Java\jre1.8.0_251\lib\ext\sunjce_provider.jar;C:\Program Files (x86)\Java\jre1.8.0_251\lib\ext\sunmscapi.jar;C:\Program Files (x86)\Java\jre1.8.0_251\lib\ext\sunpkcs11.jar;C:\Program Files (x86)\Java\jre1.8.0_251\lib\ext\zipfs.jar;C:\Program Files (x86)\Java\jre1.8.0_251\lib\javaws.jar;C:\Program Files (x86)\Java\jre1.8.0_251\lib\jce.jar;C:\Program Files (x86)\Java\jre1.8.0_251\lib\jfr.jar;C:\Program Files (x86)\Java\jre1.8.0_251\lib\jfxswt.jar;C:\Program Files (x86)\Java\jre1.8.0_251\lib\jsse.jar;C:\Program Files (x86)\Java\jre1.8.0_251\lib\management-agent.jar;C:\Program Files (x86)\Java\jre1.8.0_251\lib\plugin.jar;C:\Program Files (x86)\Java\jre1.8.0_251\lib\resources.jar;C:\Program Files (x86)\Java\jre1.8.0_251\lib\rt.jar;C:\Users\User\IdeaProjects\RuneMate Tutorial\out\production\RuneMate Tutorial;C:\Program Files (x86)\RuneMate\RuneMate.jar" com.runemate.boot.Boot -sdk -login=im not telling you lol

followed by this

Code:
[Debug] Java Home: C:\Program Files (x86)\Java\jre1.8.0_251
[Debug] Java Version: 1.8.0_251 x86 (Oracle Corporation)
[Debug] Maximum Heap Size: 248MB
[Debug] RuneMate Version: 2.107.1
[Debug] Operating System: Windows 10 x64
[Debug] C:\Users\User\jagexcache is a cache root according to the registry.
[Debug] Configured instrument.dll @ C:\Users\User\jagexcache\jagexlauncher\bin\instrument.dll
[Debug] Configured rmi.dll @ C:\Users\User\jagexcache\jagexlauncher\bin\rmi.dll
00:00:00 INFO    Access denied. Your account and IP have been flagged.

I can still access the non-development kit version of RuneMate just fine, but I can't create my own script. If anyone can help me it would be really appreciated
 
Mod Automation
Joined
Jul 26, 2013
Messages
3,046
It is likely being caused by the `-javaagent` argument. Try running it in SDK mode outside of IntelliJ.
 
Joined
Jun 10, 2020
Messages
3
Ok I tried running it via the command console instead

Code:
C:\Users\my name\Desktop javac --release 8 -classpath "C:\Program Files (x86)\RuneMate\RuneMate.jar" Test.java
C:\Users\my name\Desktop java  -classpath "C:\Users\my name\Desktop;C:\Program Files (x86)\RuneMate\RuneMate.jar" Test test

How do I run it in SDK mode outside of the IDE? I think im missing some stuff in here
 
Joined
Jun 10, 2020
Messages
3
Thanks for the help!

But is there a way to run it in my IDE? It's kinda annoying that I have to compile my code with the command console every time I want to test my bot
 
Top