- Joined
- Oct 5, 2011
- Messages
- 114
- Reaction score
- 2
Why can't I use any command?
A few things.Why can't I use any command?
I'm surprised there isn't a lot of people all over this. You've put a lot of effort into this and I really enjoy this.
I really like how you did the commands and you've included a lot of the necessities a lot of people want/need such as being able to use playernpcs. I haven't tested all the new features in your latest update so I can't make too many on all that. I know people will reply to me and be like "haha noob just copy and paste" and all that jazz, but whatever lol. I also like the simple yet to the point guides on your wiki. I don't need them but it's easy enough for someone with little experience to follow.
Keep up the good work!
Gotta give my thanks for this source/repack-edit- Got it working. I just needed to turn CASH_CYGNUS to true in ItemFactory.java. Keep up the good work!
This file is part of the OdinMS Maple Story Server
Copyright (C) 2008 Patrick Huy <[email protected]>
Matthias Butz <[email protected]>
Jan Christian Meyer <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation version 3 as published by
the Free Software Foundation. You may not use, modify or distribute
this program under any other version of the GNU Affero General Public
License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package constants;
public class ServerConstants {
public static short VERSION = 83;
public static String ORPHEUS_VERSION = "5/19/12";
public static final String SERVER_NAME = "OrpheusMS";
public static String[] WORLD_NAMES = {"Scania", "Bera", "Broa", "Windia", "Khaini", "Bellocan", "Mardia", "Kradia", "Yellonde", "Demethos", "Galicia", "El Nido", "Zenith", "Arcenia", "Kastia", "Judis", "Plana", "Kalluna", "Stius", "Croa", "Medere"};
// Orpheus Feature Configuration
public static final String TIP_NAME = "OrpheusTip"; // Tip Name for automsg
public static final boolean USE_PARANOIA = true; // use Orpheus' everything logger, Paranoia.
public static final boolean USE_MTS_AS_FM_WARP = true; // Replace the Meso Trade Shop with a warp to the Free Market.
public static final boolean HIDE_GMS_ON_LOGIN = true; // Hide GMs upon login.
public static final boolean MAKE_NPCS_SCRIPTABLE = true; // Makes NPCs scriptable. (Setup in ScriptableNPCConstants)
public static final boolean BROADCAST_GACHAPON_ITEMS = true; // broadcast gachapon use!
public static final boolean UNLIMITED_PROJECTILES = false; // have unlimited projectiles (don't lose bullets, throwing stars, arrows)
public static final boolean ALLOW_INFO_ON_GMS = true; // if false, non-GMs cannot get info on GMs.
public static final boolean CLEAR_ERROR_LOGS_ON_BOOT = true; // if true, error logs will be cured on boot.
public static final boolean PAGINATE_HELP = true; // if true, help messages will be displayed in pages.
public static final short ENTRIES_PER_PAGE = 8; // the number of entries to display on each page.
public static final int MAX_CHAT_MESSAGE_LENGTH = Byte.MAX_VALUE; // the number of characters allowed in chat messages. (fixes DC hax)
// Rate Configuration
public static final byte QUEST_EXP_RATE = 4;
public static final byte QUEST_MESO_RATE = 3;
// Login Configuration
public static final boolean ENABLE_AUTOREGISTER = true; // Confirmed: working.
public static final int CHANNEL_LOAD = 100; // Players per channel
public static final long RANKING_INTERVAL = 3600000; // not used if the rankings event is used.
public static final boolean ENABLE_PIC = false; // False: must use Maple Admin to delete characters.
// Event Configuration
public static final boolean PERFECT_PITCH = false;
public static final boolean FREE_NX = true;
public static final int NX_COST = 1000000; // 1,000,000
public static final String EVENTS = "automsg KerningPQ Boats Subway AirPlane elevator rankings"; // there is a rankings event to replace the default rankings tool.
// IP Configuration
public static final String HOST = "myipgoeshere";
// Database Configuration
public static final boolean DB_USE_COMPILED_VALUES = false;
public static final String DB_URL = "jdbc:mysql://localhost:3306/Orpheus?autoReconnect=true";
public static final String DB_USER = "root";
public static final String DB_PASS = "";