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!

Problem with src (v179) in the eclipse

Initiate Mage
Joined
Sep 18, 2020
Messages
3
Reaction score
0
Im using This source for private server (v179), using for the File's: src & scripts folder's,
the scripts folder are fine but the src is giving me many error's when im putting this folder in my eclipse, im trying to understand why it's have many error's and ill be happy to get answer to fix it.

screenshot's:
(https://imgur.com/dD7I2tZ)

(https://imgur.com/bKv4ske)


thx for all the helper's!

for contect:
Discord: xTalius#2378



and this one more error im getting, maybe cuz the src error's:

Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
at java.util.EnumMap.<init>(Unknown Source)
at server.MapleStatEffect.loadFromData(MapleStatEffect.java:486)
at server.MapleStatEffect.loadSkillEffectFromData(MapleStatEffect.java:211)
at clientside.Skill.loadFromData(Skill.java:345)
at clientside.SkillFactory.load(SkillFactory.java:53)
at server.Start.run(Start.java:70)
at server.Start.main(Start.java:111)
 
Newbie Spellweaver
Joined
May 21, 2007
Messages
31
Reaction score
24
You're missing libraries, use maven to import them. The heap exception is probably because you're using a 32 bit version of java instead of 64 bit. Try using 64 bit and try again. Else run the server with -Xmx 4G or something to increase the maximum allowed memory.
 
Upvote 0
Back
Top