• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

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
293
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
293
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