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!

How To Make A MapleStory v117 (ExiledMS Based) Private Server

Joined
Mar 18, 2010
Messages
3
Reaction score
0
tryed to execute the sql query 'structure' in my sqlserver 2008 but i got alot of mistakes in the code, like 200 errors.
is that because i used sql server and not mysql like in the tutorial or the query have mistakes?
 
Initiate Mage
Joined
Jul 17, 2013
Messages
4
Reaction score
0
Hello i download this and i worked fine but i was just woundering if the is a gm map on this server and if !shop actually dose anything because when i type it, it say arrays out of bounds :/ and some o the commands do the same thing. is there a fix for it ?
 
Skilled Illusionist
Joined
Oct 16, 2012
Messages
386
Reaction score
90
Hello i download this and i worked fine but i was just woundering if the is a gm map on this server and if !shop actually dose anything because when i type it, it say arrays out of bounds :/ and some o the commands do the same thing. is there a fix for it ?

GM map is map id 180000000.
As for the commands, look into your source and check what input it takes.
 
Newbie Spellweaver
Joined
Jul 21, 2013
Messages
6
Reaction score
0
for the java file downloads it says I have to accept to the licensing agreement before downloading, how do I do that?
 
Newbie Spellweaver
Joined
Jul 29, 2013
Messages
7
Reaction score
0
For somereason i am a gm but i cannot use any commands? Can you tell me the reason for this?

i have the same problems for blank12345, and i saw what they commands are but i cannot use them in-game?
 
Experienced Elementalist
Joined
May 10, 2013
Messages
213
Reaction score
6
Section 5A:
Opening Structure (Main).SQL

1. Open MySQL Query Browser.
2. Hit Menu and Click Add SQL.
3. Open Structure (Main).SQL
*Located In (C:\Users\Username\Desktop\ExiledMS\SQL)*

Where is the add sql button in MySQL Query Browser???
 
Experienced Elementalist
Joined
May 10, 2013
Messages
213
Reaction score
6
and how do i log in to MySQL Query Browser?
 
Initiate Mage
Joined
Aug 14, 2013
Messages
4
Reaction score
0
Afternoon GUYS,
Can anyone hlp me? I seem to be getting this error from netbeans

Created dir: C:\Users\Admin\Documents\NetBeansProjects\ExiledMs\build
Updating property file: C:\Users\Admin\Documents\NetBeansProjects\ExiledMs\build\built-jar.properties
Created dir: C:\Users\Admin\Documents\NetBeansProjects\ExiledMs\build\classes
Created dir: C:\Users\Admin\Documents\NetBeansProjects\ExiledMs\build\empty
Created dir: C:\Users\Admin\Documents\NetBeansProjects\ExiledMs\build\generated-sources\ap-source-output
Compiling 405 source files to C:\Users\Admin\Documents\NetBeansProjects\ExiledMs\build\classes
C:\Users\Admin\Desktop\ExiledMS\src\client\MapleCharacter.java:3172: illegal start of type
list = new HashMap<>();
C:\Users\Admin\Desktop\ExiledMS\src\client\MapleCharacter.java:3394: illegal start of type
final Map<Skill, SkillEntry> list = new HashMap<>();
C:\Users\Admin\Desktop\ExiledMS\src\client\MapleCharacter.java:3416: illegal start of type
final Map<Skill, SkillEntry> list = new HashMap<>();
C:\Users\Admin\Desktop\ExiledMS\src\client\MapleCharacter.java:3466: illegal start of type
final Map<Skill, SkillEntry> newL = new HashMap<>();
C:\Users\Admin\Desktop\ExiledMS\src\client\MapleCharacter.java:3979: illegal start of type
final Map<Skill, SkillEntry> skilz = new HashMap<>();
C:\Users\Admin\Desktop\ExiledMS\src\client\MapleCharacter.java:8060: illegal start of type
final Map<Byte, Integer> eq = new HashMap<>();
C:\Users\Admin\Desktop\ExiledMS\src\client\MapleCharacter.java:8170: illegal start of type
Map<MapleStat, Integer> stat = new EnumMap<>(MapleStat.class);
C:\Users\Admin\Desktop\ExiledMS\src\client\MapleCharacterCards.java:38: illegal start of type
private Map<Integer, CardData> cards = new LinkedHashMap<>(); // order
C:\Users\Admin\Desktop\ExiledMS\src\client\MapleCharacterCards.java:39: illegal start of type
private List<Pair<Integer, Integer>> skills = new LinkedList<>(); // id, level
C:\Users\Admin\Desktop\ExiledMS\src\client\MapleCharacterCards.java:57: illegal start of type
List<Integer> cardids1 = new LinkedList<>();
C:\Users\Admin\Desktop\ExiledMS\src\client\MapleCharacterCards.java:58: illegal start of type
List<Integer> cardids2 = new LinkedList<>();
C:\Users\Admin\Desktop\ExiledMS\src\client\MapleCharacterCards.java:65: illegal start of type
skills.add(new Pair<>(skillData.getMid(), skillData.getRight()));
C:\Users\Admin\Desktop\ExiledMS\src\client\MapleCharacterCards.java:74: illegal start of type
skills.add(new Pair<>(skillData.getMid(), skillData.getRight()));
C:\Users\Admin\Desktop\ExiledMS\src\client\MapleCharacterCards.java:86: illegal start of type
skills.add(new Pair<>(ii, GameConstants.getSkillLevel(lowD1))); // we can have more than 1 unique skills
C:\Users\Admin\Desktop\ExiledMS\src\client\MapleCharacterCards.java:88: illegal start of type
skills.add(new Pair<>(CharacterCardFactory.getInstance().getRankSkill(lowD1), 1));
C:\Users\Admin\Desktop\ExiledMS\src\client\MapleCharacterCards.java:93: illegal start of type
skills.add(new Pair<>(ii, GameConstants.getSkillLevel(lowD2)));
C:\Users\Admin\Desktop\ExiledMS\src\client\MapleCharacterCards.java:95: illegal start of type
skills.add(new Pair<>(CharacterCardFactory.getInstance().getRankSkill(lowD2), 1));
C:\Users\Admin\Desktop\ExiledMS\src\client\MapleClient.java:105: illegal start of type
private Map<Integer, Pair<Short, Short>> charInfo = new LinkedHashMap<>();
C:\Users\Admin\Desktop\ExiledMS\src\client\MapleClient.java:156: illegal start of type
charInfo.put(chr.getId(), new Pair<>(chr.getLevel(), chr.getJob())); // to be used to update charCards
C:\Users\Admin\Desktop\ExiledMS\src\client\PlayerStats.java:59: illegal start of type
private Map<Integer, Integer> setHandling = new HashMap<>(), skillsIncrement = new HashMap<>(), damageIncrease = new HashMap<>();
C:\Users\Admin\Desktop\ExiledMS\src\client\PlayerStats.java:59: illegal start of type
private Map<Integer, Integer> setHandling = new HashMap<>(), skillsIncrement = new HashMap<>(), damageIncrease = new HashMap<>();
C:\Users\Admin\Desktop\ExiledMS\src\client\PlayerStats.java:59: illegal start of type
private Map<Integer, Integer> setHandling = new HashMap<>(), skillsIncrement = new HashMap<>(), damageIncrease = new HashMap<>();
C:\Users\Admin\Desktop\ExiledMS\src\client\PlayerStats.java:60: illegal start of type
private EnumMap<Element, Integer> elemBoosts = new EnumMap<>(Element.class);
C:\Users\Admin\Desktop\ExiledMS\src\client\PlayerStats.java:61: illegal start of type
private List<Equip> durabilityHandling = new ArrayList<>(), equipLevelHandling = new ArrayList<>();
C:\Users\Admin\Desktop\ExiledMS\src\client\PlayerStats.java:61: illegal start of type
private List<Equip> durabilityHandling = new ArrayList<>(), equipLevelHandling = new ArrayList<>();
C:\Users\Admin\Desktop\ExiledMS\src\client\PlayerStats.java:206: illegal start of type
final Map<Skill, SkillEntry> sData = new HashMap<>();
C:\Users\Admin\Desktop\ExiledMS\src\client\PlayerStats.java:2506: illegal start of type
List<Equip> all = new ArrayList<>(equipLevelHandling);
C:\Users\Admin\Desktop\ExiledMS\src\client\PlayerStats.java:2549: illegal start of type
List<Equip> all = new ArrayList<>(durabilityHandling);
C:\Users\Admin\Desktop\ExiledMS\src\client\PlayerStats.java:3340: illegal start of type
return new Pair<>(localmaxhp_x, localmaxmp_x);
C:\Users\Admin\Desktop\ExiledMS\src\client\messages\CommandProcessor.java:58: illegal start of type
ArrayList<String> cL = new ArrayList<>();
C:\Users\Admin\Desktop\ExiledMS\src\client\messages\commands\AdminCommand.java:90: '{' expected
try (PreparedStatement ps = con.prepareStatement("INSERT INTO wz_customlife (dataid, f, hide, fh, cy, rx0, rx1, type, x, y, mid) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)")) {
C:\Users\Admin\Desktop\ExiledMS\src\client\messages\commands\AdminCommand.java:90: ')' expected
try (PreparedStatement ps = con.prepareStatement("INSERT INTO wz_customlife (dataid, f, hide, fh, cy, rx0, rx1, type, x, y, mid) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)")) {
C:\Users\Admin\Desktop\ExiledMS\src\client\messages\commands\AdminCommand.java:90: ';' expected
try (PreparedStatement ps = con.prepareStatement("INSERT INTO wz_customlife (dataid, f, hide, fh, cy, rx0, rx1, type, x, y, mid) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)")) {
C:\Users\Admin\Desktop\ExiledMS\src\client\messages\commands\AdminCommand.java:88: 'try' without 'catch' or 'finally'
try {
C:\Users\Admin\Desktop\ExiledMS\src\client\messages\commands\AdminCommand.java:110: 'else' without 'if'
} else {
C:\Users\Admin\Desktop\ExiledMS\src\client\messages\commands\AdminCommand.java:146: '{' expected
try (PreparedStatement ps = con.prepareStatement("INSERT INTO wz_customlife (dataid, f, hide, fh, cy, rx0, rx1, type, x, y, mid, mobtime) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)")) {
C:\Users\Admin\Desktop\ExiledMS\src\client\messages\commands\AdminCommand.java:146: ')' expected
try (PreparedStatement ps = con.prepareStatement("INSERT INTO wz_customlife (dataid, f, hide, fh, cy, rx0, rx1, type, x, y, mid, mobtime) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)")) {
C:\Users\Admin\Desktop\ExiledMS\src\client\messages\commands\AdminCommand.java:146: ';' expected
try (PreparedStatement ps = con.prepareStatement("INSERT INTO wz_customlife (dataid, f, hide, fh, cy, rx0, rx1, type, x, y, mid, mobtime) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)")) {
C:\Users\Admin\Desktop\ExiledMS\src\client\messages\commands\AdminCommand.java:144: 'try' without 'catch' or 'finally'
try {
C:\Users\Admin\Desktop\ExiledMS\src\client\messages\commands\AdminCommand.java:166: 'else' without 'if'
} else {
C:\Users\Admin\Desktop\ExiledMS\src\client\messages\commands\AdminCommand.java:360: reached end of file while parsing
}
C:\Users\Admin\Desktop\ExiledMS\src\constants\OccupationConstants.java:93: illegal start of type
return new Pair<>(chance, drops);
C:\Users\Admin\Desktop\ExiledMS\src\handling\channel\handler\InventoryHandler.java:442: illegal start of type
final List<StructItemOption> pots = new LinkedList<>(ii.getAllSocketInfo(rank).values());
C:\Users\Admin\Desktop\ExiledMS\src\handling\channel\handler\InventoryHandler.java:476: illegal start of type
final List<List<StructItemOption>> pots = new LinkedList<>(ii.getAllPotentialInfo().values());
C:\Users\Admin\Desktop\ExiledMS\src\handling\channel\handler\InventoryHandler.java:990: illegal start of type
final List<StructItemOption> pots = new LinkedList<>(ii.getAllSocketInfo(rank).values());
C:\Users\Admin\Desktop\ExiledMS\src\handling\channel\handler\InventoryHandler.java:2297: illegal start of type
final Map<Skill, SkillEntry> sa = new HashMap<>();
C:\Users\Admin\Desktop\ExiledMS\src\handling\channel\handler\InventoryHandler.java:2580: illegal start of type
final List<StructItemOption> pots = new LinkedList<>(ii.getAllSocketInfo(rank).values());
C:\Users\Admin\Desktop\ExiledMS\src\handling\channel\handler\InventoryHandler.java:3450: illegal start of type
final List<String> lines = new LinkedList<>();
C:\Users\Admin\Desktop\ExiledMS\src\handling\channel\handler\ItemMakerHandler.java:691: illegal start of type
final Map<Skill, SkillEntry> sa = new HashMap<>();
C:\Users\Admin\Desktop\ExiledMS\src\handling\channel\handler\MobHandler.java:106: illegal start of type
/* 122 */ final List<Pair<Integer, Integer>> unk3 = new ArrayList<>();
C:\Users\Admin\Desktop\ExiledMS\src\handling\channel\handler\MobHandler.java:112: illegal start of type
/* 148 */ final List<Integer> unk2 = new ArrayList<>();
C:\Users\Admin\Desktop\ExiledMS\src\handling\channel\handler\MovementParse.java:37: illegal start of type
final List<LifeMovementFragment> res = new ArrayList<>();
C:\Users\Admin\Desktop\ExiledMS\src\handling\channel\handler\PlayersHandler.java:535: illegal start of type
final List<Integer> newDrops = new ArrayList<>();
C:\Users\Admin\Desktop\ExiledMS\src\handling\channel\handler\PlayersHandler.java:675: illegal start of type
List<Pair<Integer, String>> players1 = new LinkedList<>();
C:\Users\Admin\Desktop\ExiledMS\src\handling\channel\handler\PlayersHandler.java:677: illegal start of type
players1.add(new Pair<>(players.get(xx).getId(), players.get(xx).getName()));
C:\Users\Admin\Desktop\ExiledMS\src\handling\login\handler\AutoRegister.java:49: '{' expected
try (PreparedStatement ipc = con.prepareStatement("SELECT SessionIP FROM accounts WHERE SessionIP = ?")) {
C:\Users\Admin\Desktop\ExiledMS\src\handling\login\handler\AutoRegister.java:49: ')' expected
try (PreparedStatement ipc = con.prepareStatement("SELECT SessionIP FROM accounts WHERE SessionIP = ?")) {
C:\Users\Admin\Desktop\ExiledMS\src\handling\login\handler\AutoRegister.java:49: ';' expected
try (PreparedStatement ipc = con.prepareStatement("SELECT SessionIP FROM accounts WHERE SessionIP = ?")) {
C:\Users\Admin\Desktop\ExiledMS\src\handling\login\handler\AutoRegister.java:54: '{' expected
try (PreparedStatement ps = con.prepareStatement("INSERT INTO accounts (name, password, email, birthday, macs, SessionIP) VALUES (?, ?, ?, ?, ?, ?)")) {
C:\Users\Admin\Desktop\ExiledMS\src\handling\login\handler\AutoRegister.java:54: ')' expected
try (PreparedStatement ps = con.prepareStatement("INSERT INTO accounts (name, password, email, birthday, macs, SessionIP) VALUES (?, ?, ?, ?, ?, ?)")) {
C:\Users\Admin\Desktop\ExiledMS\src\handling\login\handler\AutoRegister.java:54: ';' expected
try (PreparedStatement ps = con.prepareStatement("INSERT INTO accounts (name, password, email, birthday, macs, SessionIP) VALUES (?, ?, ?, ?, ?, ?)")) {
C:\Users\Admin\Desktop\ExiledMS\src\handling\login\handler\AutoRegister.java:53: 'try' without 'catch' or 'finally'
try {
C:\Users\Admin\Desktop\ExiledMS\src\handling\login\handler\AutoRegister.java:73: 'catch' without 'try'
} catch (SQLException ex) {
C:\Users\Admin\Desktop\ExiledMS\src\handling\login\handler\AutoRegister.java:73: ')' expected
} catch (SQLException ex) {
C:\Users\Admin\Desktop\ExiledMS\src\handling\login\handler\AutoRegister.java:73: not a statement
} catch (SQLException ex) {
C:\Users\Admin\Desktop\ExiledMS\src\handling\login\handler\AutoRegister.java:73: ';' expected
} catch (SQLException ex) {
C:\Users\Admin\Desktop\ExiledMS\src\handling\login\handler\AutoRegister.java:49: 'try' without 'catch' or 'finally'
try (PreparedStatement ipc = con.prepareStatement("SELECT SessionIP FROM accounts WHERE SessionIP = ?")) {
C:\Users\Admin\Desktop\ExiledMS\src\handling\login\handler\AutoRegister.java:47: 'try' without 'catch' or 'finally'
try {
C:\Users\Admin\Desktop\ExiledMS\src\handling\login\handler\AutoRegister.java:77: reached end of file while parsing
}
C:\Users\Admin\Desktop\ExiledMS\src\handling\login\handler\CharLoginHandler.java:170: illegal start of type
final Map<Integer, Integer> cids = new LinkedHashMap<>();
C:\Users\Admin\Desktop\ExiledMS\src\handling\login\handler\CharLoginHandler.java:258: illegal start of type
final Map<Skill, SkillEntry> ss = new HashMap<>();
C:\Users\Admin\Desktop\ExiledMS\src\handling\login\handler\CharLoginHandler.java:264: illegal start of type
final Map<Skill, SkillEntry> ss1 = new HashMap<>();
C:\Users\Admin\Desktop\ExiledMS\src\handling\login\handler\CharLoginHandler.java:272: illegal start of type
final Map<Skill, SkillEntry> ss2 = new HashMap<>();
C:\Users\Admin\Desktop\ExiledMS\src\handling\login\handler\CharLoginHandler.java:278: illegal start of type
final Map<Skill, SkillEntry> ss3 = new HashMap<>();
C:\Users\Admin\Desktop\ExiledMS\src\handling\login\handler\CharLoginHandler.java:284: illegal start of type
final Map<Skill, SkillEntry> ss4= new HashMap<>();
C:\Users\Admin\Desktop\ExiledMS\src\handling\login\handler\CharLoginHandler.java:290: illegal start of type
final Map<Skill, SkillEntry> ss5 = new HashMap<>();
^
C:\Users\Admin\Desktop\ExiledMS\src\handling\login\handler\CharLoginHandler.java:306: illegal start of type
final Map<Skill, SkillEntry> ss6 = new HashMap<>();
C:\Users\Admin\Desktop\ExiledMS\src\handling\login\handler\CharLoginHandler.java:337: illegal start of type
final Map<Skill, SkillEntry> ss7 = new HashMap<>();
C:\Users\Admin\Desktop\ExiledMS\src\handling\login\handler\CharLoginHandler.java:361: illegal start of type
final Map<Skill, SkillEntry> ss8 = new HashMap<>();
C:\Users\Admin\Desktop\ExiledMS\src\handling\login\handler\CharLoginHandler.java:369: illegal start of type
final Map<Skill, SkillEntry> ss9 = new HashMap<>();
C:\Users\Admin\Desktop\ExiledMS\src\handling\login\handler\CharLoginHandler.java:491: illegal start of type
final Map<Skill, SkillEntry> ss = new HashMap<>();
C:\Users\Admin\Desktop\ExiledMS\src\handling\world\CharacterTransfer.java:81: illegal start of type
public final Map<Integer, CardData> cardsInfo = new LinkedHashMap<>();
C:\Users\Admin\Desktop\ExiledMS\src\scripting\NPCConversationManager.java:572: illegal start of type
final List<StructItemOption> pots = new LinkedList<>(ii.getAllSocketInfo(grade).values());
C:\Users\Admin\Desktop\ExiledMS\src\scripting\NPCConversationManager.java:678: illegal start of type
final Map<Skill, SkillEntry> skills = new HashMap<>(getPlayer().getSkills());
C:\Users\Admin\Desktop\ExiledMS\src\scripting\NPCConversationManager.java:679: illegal start of type
final Map<Skill, SkillEntry> newList = new HashMap<>();
C:\Users\Admin\Desktop\ExiledMS\src\scripting\NPCConversationManager.java:1559: illegal start of type
HashMap<Skill, SkillEntry> sa = new HashMap<>();
C:\Users\Admin\Desktop\ExiledMS\src\scripting\NPCConversationManager.java:1569: illegal start of type
HashMap<Skill, SkillEntry> sa = new HashMap<>();
C:\Users\Admin\Desktop\ExiledMS\src\scripting\NPCConversationManager.java:1604: illegal start of type
List<Integer> list = new ArrayList<>();
C:\Users\Admin\Desktop\ExiledMS\src\server\CashItemFactory.java:27: illegal start of type
private final Map<Integer, List<Integer>> openBox = new HashMap<>();
C:\Users\Admin\Desktop\ExiledMS\src\server\CashItemFactory.java:83: illegal start of type
List<Integer> availableSN = new LinkedList<>();
C:\Users\Admin\Desktop\ExiledMS\src\server\CashItemFactory.java:93: illegal start of type
availableSN = new LinkedList<>();
C:\Users\Admin\Desktop\ExiledMS\src\server\CashItemFactory.java:104: illegal start of type
availableSN = new LinkedList<>();
C:\Users\Admin\Desktop\ExiledMS\src\server\CashItemFactory.java:113: illegal start of type
availableSN = new LinkedList<>();
C:\Users\Admin\Desktop\ExiledMS\src\server\CharacterCardFactory.java:49: illegal start of type
private final Map<Integer, Integer> cardEffects = new HashMap<>(); // cardid, skillid
C:\Users\Admin\Desktop\ExiledMS\src\server\CharacterCardFactory.java:50: illegal start of type
private final Map<Integer, List<Integer>> uniqueEffects = new HashMap<>(); // skillid, cardids
C:\Users\Admin\Desktop\ExiledMS\src\server\CharacterCardFactory.java:86: illegal start of type
return new Triple<>((skillid - 71000000), skillid, GameConstants.getSkillLevel(level));
C:\Users\Admin\Desktop\ExiledMS\src\server\CharacterCardFactory.java:90: illegal start of type
final List<Integer> uis = new LinkedList<>();
C:\Users\Admin\Desktop\ExiledMS\src\server\CharacterCardFactory.java:114: illegal start of type
Map<Integer, CardData> cards = new LinkedHashMap<>(); // order
C:\Users\Admin\Desktop\ExiledMS\src\server\CharacterCardFactory.java:152: illegal start of type
Map<Integer, Pair<Short, Short>> chars = new HashMap<>();
C:\Users\Admin\Desktop\ExiledMS\src\server\CharacterCardFactory.java:160: illegal start of type
chars.put(rs.getInt("id"), new Pair<>(rs.getShort("level"), rs.getShort("job")));
100 errors
C:\Users\Admin\Documents\NetBeansProjects\ExiledMs\nbproject\build-impl.xml:926: The following error occurred while executing this line:
C:\Users\Admin\Documents\NetBeansProjects\ExiledMs\nbproject\build-impl.xml:268: Compile failed; see the compiler error output for details.
BUILD FAILED (total time: 4 seconds)

I have this problem only with the v117 sources. When i use it with v83 it works though.
 
Initiate Mage
Joined
Aug 16, 2013
Messages
1
Reaction score
0
How can I allow my friends to join my server other than connecting to the hamachi server, what cilent do they require to play with me?
 
Newbie Spellweaver
Joined
Aug 1, 2008
Messages
37
Reaction score
0
I got it working thanks. However, ExiledMS is too standard. I cant make myself gm, there is no skill maxer, no usual player commands. So i tried using many v117 sources from the release section but I can't make a server online with other servers if i use this method shown in this guide. What should I do when I'm using another source than ExiledMS? like EliteMS or etc
 
Supreme Arcanarch
Loyal Member
Joined
Oct 18, 2009
Messages
914
Reaction score
335
I got it working thanks. However, ExiledMS is too standard. I cant make myself gm, there is no skill maxer, no usual player commands. So i tried using many v117 sources from the release section but I can't make a server online with other servers if i use this method shown in this guide. What should I do when I'm using another source than ExiledMS? like EliteMS or etc

There the same methods, just configure the source and apply this guide or any other guide here.
Also there is a skill maxer, in the GM map, you can make yourself gm from Mysql, and no ones gonna spoon feed you commands.
 
Experienced Elementalist
Joined
Jun 6, 2008
Messages
229
Reaction score
0
Help with


Loader 1...
Loader 2...
Loader 3...
Loader 4...
Loader 5...
Loader 6...
22630 items loaded.
Loader 7...
Loader 8...
Loader 9...
Loader 10...
[Loading Login]
Listening on port 8484.
[Login Initialized]
[Loading Channel]
Exception in thread "main" java.lang.RuntimeException: java.lang.NumberFormatExc
eption: For input string: "2 "
at handling.channel.ChannelServer.run_startup_configurations(ChannelServ
er.java:127)
at handling.channel.ChannelServer.startChannel_Main(ChannelServer.java:2
95)
at server.Start.run(Start.java:96)
at server.Start.main(Start.java:126)
Caused by: java.lang.NumberFormatException: For input string: "2 "
at java.lang.NumberFormatException.forInputString(NumberFormatException.
java:65)
at java.lang.Integer.parseInt(Integer.java:492)
at java.lang.Integer.parseInt(Integer.java:527)
at handling.channel.ChannelServer.run_startup_configurations(ChannelServ
er.java:118)
... 3 more
 
Newbie Spellweaver
Joined
Aug 28, 2013
Messages
19
Reaction score
0
ERRORcom.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: Could not create connection to database server. Attempted reconnect 3 times. Giving u
p.
Exception in thread "main" java.lang.ExceptionInInitializerError
at server.Start.run(Start.java:37)
at server.Start.main(Start.java:126)
Caused by: java.lang.NullPointerException
at server.ServerProperties.<clinit>(ServerProperties.java:30)
... 2 more
Press any key to continue . . .

I been having dis problem for 3 weeks and still no fix.
 
Skilled Illusionist
Joined
Oct 16, 2012
Messages
386
Reaction score
90
Help with


Loader 1...
Loader 2...
Loader 3...
Loader 4...
Loader 5...
Loader 6...
22630 items loaded.
Loader 7...
Loader 8...
Loader 9...
Loader 10...
[Loading Login]
Listening on port 8484.
[Login Initialized]
[Loading Channel]
Exception in thread "main" java.lang.RuntimeException: java.lang.NumberFormatExc
eption: For input string: "2 "
at handling.channel.ChannelServer.run_startup_configurations(ChannelServ
er.java:127)
at handling.channel.ChannelServer.startChannel_Main(ChannelServer.java:2
95)
at server.Start.run(Start.java:96)
at server.Start.main(Start.java:126)
Caused by: java.lang.NumberFormatException: For input string: "2 "
at java.lang.NumberFormatException.forInputString(NumberFormatException.
java:65)
at java.lang.Integer.parseInt(Integer.java:492)
at java.lang.Integer.parseInt(Integer.java:527)
at handling.channel.ChannelServer.run_startup_configurations(ChannelServ
er.java:118)
... 3 more

Delete the space behind the '2' in the appropriate file.

ERRORcom.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: Could not create connection to database server. Attempted reconnect 3 times. Giving u
p.
Exception in thread "main" java.lang.ExceptionInInitializerError
at server.Start.run(Start.java:37)
at server.Start.main(Start.java:126)
Caused by: java.lang.NullPointerException
at server.ServerProperties.<clinit>(ServerProperties.java:30)
... 2 more
Press any key to continue . . .

I been having dis problem for 3 weeks and still no fix.

Make sure WAMP is online and mysql is started.
 
Newbie Spellweaver
Joined
Aug 28, 2013
Messages
19
Reaction score
0
Im still having problems wamp is online and im not sure if i did mysql right.
1
2SET FOREIGN_KEY_CHECKS=0;
3
4
5--
6-- Create schema v117
7--
8
9CREATE DATABASE IF NOT EXISTS v117;
10USE v117;
11
12-- ----------------------------
13-- Table structure for `accounts`
14-- ----------------------------
DROP TABLE IF EXISTS `accounts`;
CREATE TABLE `accounts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(13) NOT NULL DEFAULT '',
`password` varchar(128) NOT NULL DEFAULT '',
`salt` varchar(32) DEFAULT NULL,
`2ndpassword` varchar(134) DEFAULT NULL,
`salt2` varchar(32) DEFAULT NULL,
`loggedin` tinyint(1) unsigned NOT NULL DEFAULT '0',
`lastlogin` timestamp NULL DEFAULT NULL,
`createdat` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`birthday` date NOT NULL DEFAULT '0000-00-00',
`banned` tinyint(1) NOT NULL DEFAULT '0',
`banreason` text,
`gm` tinyint(1) NOT NULL DEFAULT '0',
`email` tinytext,
`macs` tinytext,
`tempban` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`greason` tinyint(4) unsigned DEFAULT NULL,
`ACash` int(11) NOT NULL DEFAULT '0',
 
ヽ(#゚Д゚)ノ┌┛)` Д゚)・;'
Joined
Mar 26, 2012
Messages
502
Reaction score
103
What is GM command of this server ? :O
 
Back
Top