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!

I'm asking because two things are not resolved, thanks for your help

Newbie Spellweaver
Joined
Dec 29, 2021
Messages
11
Reaction score
1
Question 1.

I went to https://forum.ragezone.com/f245/gunz-sniper-gt-real-fix-971973/
and patched the sniper rifle.
Right-click and aim and turn the wheel up or down to reveal the next weapon.
How do I fix it so it doesn't appear while aiming?
(I am a wheel tap user, so I often use the wheel up and down)

Question 2.

There is one mod called momsg in game mode, where can I delete it?
 
I'm retired, I'm already
Banned
Joined
Oct 3, 2011
Messages
832
Reaction score
155
1. in ZCharacter::ChangeWeapon(MMatchCharItemParts nParts, bool bReSelect)
Code:
	if (ZGetGame()->m_pMyCharacter->m_statusFlags.Ref().m_bSniferMode)
	{
		if ((nParts == MMCIP_PRIMARY) || (nParts == MMCIP_SECONDARY || (nParts == MMCIP_MELEE) || nParts == MMCIP_CUSTOM1 || nParts == MMCIP_CUSTOM2 || nParts == MMCIP_CUSTOM3)) 
		{
			return;
		}
	}

2. that's a loss of data in your message.xml.
 
Upvote 0
Back
Top