Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Help] Questions about v83 private server

Newbie Spellweaver
Joined
Jan 14, 2010
Messages
25
Reaction score
0
1.Is there a way to remove the Maple Tips that keep on popping up in your chat randomly?

2.How can I make an MSI in game ? I dont want to make an MSI through editing wz files, and I thought it'd be a lot easier if i used !msi <itemID> <stats>

3. How would I remove the PIC after i double click on my character?

4. How would I make buffs last forever? Other servers have it and I dont .Btw I'm using MoopleDEV

5. When I log into my private server ( I am an admin), the hide skill is active ( character is transparent). There is no hide skill icon on the top right hand corner so I was wondering if there was a way to turn it off? Toggle On/Off? Somewhere in log in handler java files?

6.My EXP_RATES are retarded...I set it to 5 in the ServerConstants.java but it doesnt 5x the exp in game? I use the gm command !exprate 300, and it doesnt set the rate to 300. Help?

PHP:
package constants;

public class ServerConstants {
    public static short VERSION = 83;
    public static String SERVERNAME = "MoopleDEV";
    // Rate Configuration
    public static int EXP_RATE = 5;
    public static int MESO_RATE = 10000000;
    public static final byte DROP_RATE = 50;
    public static final byte BOSS_DROP_RATE = 50;
    public static final byte QUEST_EXP_RATE = 4;
    public static final byte QUEST_MESO_RATE = 3;
    public static final boolean GMS_LIKE = true;
    // Login Configuration
    public static final byte FLAG = 3;
    public static final int CHANNEL_NUMBER = 2;
    public static final int CHANNEL_LOAD = 50;
    public static final String EVENT_MESSAGE = "Welcome!";
    public static final long RANKING_INTERVAL = 3600000;
    public static final boolean ENABLE_PIN = false;
    public static final boolean ENABLE_PIC = false;
    // Channel Configuration
    public static String SERVER_MESSAGE = "Welcome to <server name>.";
    public static String RECOMMEND_MESSAGE = "";
    public static final String EVENTS = "automsg KerningPQ Boats Subway";
    // IP Configuration
    public static final String HOST = "5.173.55.159";
}

7. How do I add unlimited inventory slots?
 
Back
Top