Try to recompile, it always works for me.
This is a discussion on ZenthosDev Command Problems. within the Help forums, part of the Java Based (Odin) category; Hey guys, GM Commands don't work on Zenthos Dev. !warp, !setall, !job or anything Im not sure how to fix ...
Hey guys, GM Commands don't work on Zenthos Dev.
!warp, !setall, !job or anything
Im not sure how to fix this .. Some do work, some don't.
I thought maybe taking the command processor from another repack and replacing all the commands etc would fix it, but I just get a lot of compile errors.
What are some ways of fixing these command problems?
And yes, I have tried manually adding the commands using other ways, but I just get errors .. it's like this command system only takes THIS command system, and I can't seem to get it working.
Last edited by Mootykinz; 12-06-10 at 11:11 PM.
http://www.youtube.com/MrTuneless
I'm 17, produce DrumNBass, Dubstep as well as some hardstyle.
Link me up!
Try to recompile, it always works for me.
It works, maybe something's wrong.
I just noticed, Admins can't work with GM commands.
So I think that was my problem.
http://www.youtube.com/MrTuneless
I'm 17, produce DrumNBass, Dubstep as well as some hardstyle.
Link me up!
Set your GM Level to 5, maybe then you'll be able to use the commands you want.
Go to CommandProcessor.java
See what the admin #is. (above says it's 3).
Make sure it says something like
and notPHP Code:if (getPlayer().gmLevel() >= 3) {
Cause if it's >= an admin can use GM commands too..PHP Code:if (getPlayer().gmLevel() == 3) {
Now something else, open your GMCommands.java (or w/e it is called)
Scroll down to a command that doesn't work and look if there is
orPHP Code:splitted[0].equals("!warp")
(splitted[0] can also be sub[0] or anything else. It really depends on your source.).PHP Code:splitted[0].equals("warp")
Notice the '!' is missing in the second one.
Now browse your commands file and see if other commands have the '!' included in there. If not, delete it in the commands that do not work and compile. Your commands should now work.