- Joined
- Apr 29, 2008
- Messages
- 1,297
- Reaction score
- 509
Hmmm.. Maybe this should be in the guide section..
If it is, tell me, I'll delete it and put it in the guide section.
Go to MapleCharacter.java
Its in net\sf\odinms\client
Find this line
You can change it to anything you want
Not much of a release though.
But it may help noobs.
If it is, tell me, I'll delete it and put it in the guide section.
Go to MapleCharacter.java
Its in net\sf\odinms\client
Find this line
Code:
public static MapleCharacter getDefault(MapleClient client) {
MapleCharacter ret = new MapleCharacter();
ret.client = client;
ret.hp = 50; //Current Hp
ret.maxhp = 50; //Max Hp
ret.mp = 50; //Current Mp
ret.maxmp = 50; //Max Mp
ret.map = null;
// ret.map = ChannelServer.getInstance(client.getChannel()).getMapFactory().getMap(0);
ret.exp.set(0);
ret.gm = false; //Is Gm or not. True for everyone is a gm
ret.job = MapleJob.BEGINNER; //Starting Jobs
ret.meso.set(0); //Start mesos
ret.level = 1; //Starting level
ret.pvpdeaths = 0;
ret.pvpkills = 0;
ret.accountid = client.getAccID();
ret.buddylist = new BuddyList(25); //Buddy List Slot Max = 50
ret.nxcash = 0; //Nx Cash
ret.maplepoints = 0; //Maple Points
ret.gifttokens = 0; //Gift Tokens
ret.incs = false;
You can change it to anything you want
Not much of a release though.
But it may help noobs.