You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This one is especially tricky. FF2 doesn't allow maxspeed to be changed right now and it's going to take some work in order to get it to cooperate.
You're not the only one who wants this; sarysa also needs it for a couple of abilities.
I just use OnGameFrame as a workaround to this, and an array-based int and bool. That's how i do it for Female Heavy and Cave Johnson to adjust their move speed.
primitive, but works. Just remember to make a timer to reset the bool to false (whether an actual timer, or a tick via OnGameFrame using GetEngineTime() for the latter.)
I've been attempting to implement FF2_{Get|Set}BossMaxSpeed on my private FF2 fork.
While my implementation compiles, it will work at first but once it starts trying to adjust move speed, the boss is pretty much stuck there. The way i attempted it is similar to how FF2_{Get|Set}BossRageDamage is set up, except the move speed would return / set as a float instead of a regular integer.
Something like this won't work
BossSpeed is 170
new client2=GetClientOfUserId(FF2_GetBossUserId(boss));
SetEntDataFloat(client2, FindSendPropInfo("CTFPlayer", "m_flMaxspeed"), 400.0, true);
after working rage the speed was the same.
Will it be fixed some time ?
The text was updated successfully, but these errors were encountered: