Jump to content

Block Exp on map and Emoticons problem


Recommended Posts

I have 2 question;
1: How can i block exp on map i mean after level up to next map, i dont want get exp on last map after max lv for map.
2: How to turn on this emoticons? because after enter this on chat effect is not showing only like on the picture..
1tC2zem.jpg

Edited by Metin2 Dev
Core X - External 2 Internal
Link to comment
Share on other sites

  • Replies 1
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

6 hours ago, Agorin said:

I have 2 question;
1: How can i block exp on map i mean after level up to next map, i dont want get exp on last map after max lv for map.
2: How to turn on this emoticons? because after enter this on chat effect is not showing only like on the picture..
1tC2zem.jpg

1.

char.cpp find void CHARACTER::PointChange(BYTE type, int amount, bool bAmount, bool bBroadcast) after:

		case POINT_EXP:
		[ ... ]
				else
				{
					if (gPlayerMaxLevel <= GetLevel())
						return;

add:

					if (GetMapIndex() == 1 && GetLevel >= 75) //instead of 1 insert your map index and instead of 75 insert your level
						return;

Mind that it will also block exp from missions.

Edited by Metin2 Dev
Core X - External 2 Internal
Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.