Welcome to the RaGEZONE - MMORPG development forums.

ZenthosDev Command Problems.

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 ...

Results 1 to 7 of 7
  1. #1
    Member
    Rank
    Member
    Join Date
    May 2010
    Location
    Toronto
    Posts
    76
    Liked
    0

    ZenthosDev Command Problems.

    Click
    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!

  2. #2
    Member
    Rank
    Member
    Join Date
    Jun 2010
    Location
    In Java Files
    Posts
    94
    Liked
    44

    Re: ZenthosDev Command Problems.

    Try to recompile, it always works for me.
    Follow The MapleChaos v83 Development on Twitter!

    https://twitter.com/MapleChaosDev

  3. #3
    MapleDevAgain?08-12(noob)
    Rank
    Member +
    Join Date
    Oct 2008
    Location
    Canada, Ontario
    Posts
    364
    Liked
    20

    Re: ZenthosDev Command Problems.

    It works, maybe something's wrong.

  4. #4
    Member
    Rank
    Member
    Join Date
    May 2010
    Location
    Toronto
    Posts
    76
    Liked
    0

    Re: ZenthosDev Command Problems.

    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!

  5. #5
    Member
    Rank
    Member
    Join Date
    Jun 2010
    Location
    In Java Files
    Posts
    94
    Liked
    44

    Re: ZenthosDev Command Problems.

    Set your GM Level to 5, maybe then you'll be able to use the commands you want.
    Follow The MapleChaos v83 Development on Twitter!

    https://twitter.com/MapleChaosDev

  6. #6
    Registered
    Rank
    Member
    Join Date
    Apr 2011
    Location
    San Francisco
    Posts
    7
    Liked
    1

    Re: ZenthosDev Command Problems.

    Quote Originally Posted by NinjaDEV View Post
    Set your GM Level to 5, maybe then you'll be able to use the commands you want.
    Wrong! This source goes by 0-3
    0- Player
    1- Donor
    2- GM
    3- Admin

    *Make sure your GM Level is at 3

  7. #7
    Ass > Tits
    Rank
    Alpha Member
    Join Date
    Feb 2009
    Location
    null
    Posts
    1,890
    Liked
    238

    Re: ZenthosDev Command Problems.

    Go to CommandProcessor.java

    See what the admin #is. (above says it's 3).
    Make sure it says something like
    PHP Code:
    if (getPlayer().gmLevel() >= 3) { 
    and not
    PHP Code:
    if (getPlayer().gmLevel() == 3) { 
    Cause if it's >= an admin can use GM commands too..

    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
    PHP Code:
    splitted[0].equals("!warp"
    or
    PHP Code:
    splitted[0].equals("warp"
    (splitted[0] can also be sub[0] or anything else. It really depends on your source.).


    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.
    Last edited by Lapje; 15-06-11 at 12:36 PM.
    Don't raise your voice, Improve your argument.




    Quote Originally Posted by JingDaBandit View Post
    @lapje: YOU SIR! are the best helper I've ever come in contact with on ANY forum :D
    Made my day =]

 

 

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •