Fix/Cheat Zoom

05/27/2016 10:15 ZeroTwo02#1
Après avoir vue le Bot de greyb1t je me suis pencher sur le fait de pouvoir changer la valeur du Zoom, en me disant qu'il devait bien être possible de mettre une limite à celui-ci, tout d'abord j'ai regarder comment faire, donc l'astuce est assez simple.

Dès lorsque vous êtes connectez au jeu, cherche avec cheat engine en "Value Type" Float la valeur "6", ensuite dé-zommer au maximum et modifié la Value par "7" puis next scan, vous trouverez le Float du zoom, ensuite il suffit de le modifié comme bon vous semble :

[Only registered and activated users can see links. Click Here To Register...]

Pour corrigé rendez-vous dans le fichier "Camera.cpp" à la fonction "CBackCamera::Process"

Modifié

Code:
#if __VER >= 13 // __HOUSING
	if(m_nCamMode == CM_MYROOM)
	{
		if(m_fZoom <= 0.5f) m_fZoom = 0.5f;
	//	if(m_fZoom >= 3.0f) m_fZoom = 3.0f;
	}
#endif // __HOUSING
par

Code:
#if __VER >= 13 // __HOUSING
	if(m_nCamMode == CM_MYROOM)
	{
		if(m_fZoom <= 0.5f) m_fZoom = 0.5f;
		if(m_fZoom >= 15.0f) m_fZoom = 15.0f;
	}
	else
	{
		if(m_fZoom < -1.5f) m_fZoom = -1.5f;
		if(m_fZoom > 15.0f) m_fZoom = 15.0f;
	}
#endif // __HOUSING

--------------------------------------

English ->

As soon as you connect to the game, trying to cheat engine in "Value Type" Float value "6", then de-zommer maximum and change the Value by "7" then next scan, you will find the Float zoom, then just changed the way you like:

[Only registered and activated users can see links. Click Here To Register...]

Go to the file "Camera.cpp" on the function "CBackCamera::Process"

Change :

Code:
#if __VER >= 13 // __HOUSING
	if(m_nCamMode == CM_MYROOM)
	{
		if(m_fZoom <= 0.5f) m_fZoom = 0.5f;
	//	if(m_fZoom >= 3.0f) m_fZoom = 3.0f;
	}
#endif // __HOUSING
By

Code:
#if __VER >= 13 // __HOUSING
	if(m_nCamMode == CM_MYROOM)
	{
		if(m_fZoom <= 0.5f) m_fZoom = 0.5f;
		if(m_fZoom >= 15.0f) m_fZoom = 15.0f;
	}
	else
	{
		if(m_fZoom < -1.5f) m_fZoom = -1.5f;
		if(m_fZoom > 15.0f) m_fZoom = 15.0f;
	}
#endif // __HOUSING
05/27/2016 14:53 FlyCraft.TobiLap#2
Easy to bypass:
Search for 15.0 float point with exact value, replace it with e.g. 50 and you will be able to zoom again.
I think narutos Thread opening is close to spam as for every 10 characters he opens a new thread and most of the times the code is just shit.
#NarutoStopSpam
@[Only registered and activated users can see links. Click Here To Register...]: Clientside fixes should not be published as the only way to apply hack fixes in thy client is to hide how it works, which is the principle of "Security by obscurity".
05/28/2016 00:32 Devisory#3
thx now my hamachi server more safe
05/28/2016 14:29 Rhyder`#4
Quote:
Originally Posted by Devisory View Post
thx now my hamachi server more safe
now the name of the server becomes zoom flyff :D
05/28/2016 18:07 xMootie#5
Damn :/ now my super hack don't work... If only there was way to write over executable code with some sort of operation that does nothing... :/
05/28/2016 18:09 Pumaaa#6
Quote:
Originally Posted by xMootie View Post
Damn :/ now my super hack don't work... If only there was way to write over executable code with some sort of operation that does nothing... :/
NOP. Sadly there is no such operation.