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!

Gunz doesn't get XP

Newbie Spellweaver
Joined
Mar 15, 2014
Messages
97
Reaction score
16
check the map.xml file in system / matchserver and check that the map line you added contains: ExpRatio = "1" if it has 0 put 1 and if it is not, add it.
 
Upvote 0
Experienced Elementalist
Joined
Oct 14, 2015
Messages
295
Reaction score
86
Code:
<MAP id="0" MapName ="Name" MapImageName= "map_Name.bmp" BannerName = "banner_Name.png" ExpRatio ="1" MaxPlayers ="16" bOnlyDuelMap = "false"></MAP>
 
Upvote 0
Newbie Spellweaver
Joined
Jul 9, 2013
Messages
14
Reaction score
1
All the codes are exactly like this, with ExpRatio 1, I've tried everything and nothing solves ..There is a detail, the default maps get exp, and some 3 other maps I added too, but from a specific ID you don't get any more.
 
Upvote 0
Experienced Elementalist
Joined
Oct 14, 2015
Messages
295
Reaction score
86
All the codes are exactly like this, with ExpRatio 1, I've tried everything and nothing solves ..There is a detail, the default maps get exp, and some 3 other maps I added too, but from a specific ID you don't get any more.

I don't know what kind of source you should be using, but try increasing the amount of maps.

MMatchMap.h
Code:
enum MMATCH_MAP 
{
	MMATCH_MAP_MANSION			= 0,
	MMATCH_MAP_PRISON			= 1,
	MMATCH_MAP_STATION			= 2,
	MMATCH_MAP_PRISON_II		= 3,
	MMATCH_MAP_BATTLE_ARENA		= 4,
	MMATCH_MAP_TOWN				= 5,
	MMATCH_MAP_DUNGEON			= 6,
	MMATCH_MAP_RUIN				= 7,
	MMATCH_MAP_ISLAND			= 8,
	MMATCH_MAP_GARDEN			= 9,
	MMATCH_MAP_CASTLE			= 10,
	MMATCH_MAP_FACTORY			= 11,
	MMATCH_MAP_PORT				= 12,
	MMATCH_MAP_LOST_SHRINE		= 13,
	MMATCH_MAP_STAIRWAY			= 14,
	MMATCH_MAP_SNOWTOWN			= 15,
	MMATCH_MAP_HALL				= 16,
	MMATCH_MAP_CATACOMB			= 17,
	MMATCH_MAP_JAIL				= 18,
	MMATCH_MAP_SHOWERROOM		= 19,
	MMATCH_MAP_HIGH_HAVEN		= 20,
	MMATCH_MAP_CITADEL			= 21,
	MMATCH_MAP_RELAYMAP			= 22,
	MMATCH_MAP_HALLOWEEN_TOWN	= 23,
	MMATCH_MAP_WEAPON_SHOP		= 24,
	MMATCH_MAP_MAX				= 100 // Here you add as much map as you wish.
};

After you do this compile Gunz.exe and MatchServer.exe.
 
Upvote 0
Newbie Spellweaver
Joined
Mar 15, 2014
Messages
97
Reaction score
16
and of course adding by obeying the map id you added in map.xml and make sure you add your map to channelrule.xml in system and matchserver.
 
Upvote 0
Back
Top