PropMover Speed Hack Fix

04/19/2014 02:26 TheGodIsHereBrah'#1
Many people know that you can increase the Movement Speed of your character in the PropMover file.
You simply change the value in the propmover file which is used in the source code to calculate your speed.


This is what you have to do, to fix it!


Go in mover.cpp and search for this:

Code:
	m_pActMover->m_fSpeed = pProp->fSpeed;
replace it with this

Code:
	m_pActMover->m_fSpeed = 0.1f;

The neuz will no longer calculate the Speed by using the Value in propmover.


I know its maybe not the best way to fix it, but it works.
If you have a better solution, feel free to share it with us!
04/19/2014 14:17 .Swak#2
By doing this, you will normaly have a warning :
"warning C4305: '=' : truncation from 'double' to 'float' "

To fix it, it's very simple:

Change:
m_pActMover->m_fSpeed = 0.1;
to:
m_pActMover->m_fSpeed = 0.1F;
04/19/2014 15:55 TheGodIsHereBrah'#3
Quote:
Originally Posted by .Swak View Post
By doing this, you will normaly have a warning :
"warning C4305: '=' : truncation from 'double' to 'float' "

To fix it, it's very simple:

Change:
m_pActMover->m_fSpeed = 0.1;
to:
m_pActMover->m_fSpeed = 0.1F;
yea. i forgot about that :P

thanks
08/03/2014 21:14 ramosss#4
I'm sorry but where do you find this mover.cpp file?
08/03/2014 21:24 CrackTex#5
Quote:
Originally Posted by ramosss View Post
I'm sorry but where do you find this mover.cpp file?
you can find this file in your Source
11/22/2020 07:19 heikinrarufu#6
Quote:
Originally Posted by CrackTex View Post
you can find this file in your Source
bro, i cant find the source folder of my flyff? where can i find that Souce folder? thank u so much bro
12/24/2020 09:30 Common.H#7
Danke^^