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é
par
--------------------------------------
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 :
By
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
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
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