HOWTO: Quick Turn Always
Brought to you by Felipe :)
Here's a simple edit that will allow you to have Quick Turn at all times without the Quick Turn Flag. Find the following lines of LocalPlayer.cxx in the /src/bzflag/ directory of the extracted source:
// boost turn speed for other flags
if (flag == Flags::QuickTurn) {
Remove "== Flags::QuickTurn" so that the lines read like this:
// boost turn speed for other flags
if (flag) {
For the original instructions, see Felipe's comments to Flying Without Wings & Extended Jumping. When you're finished, save the file, compile your new client, and ...
Have fun!
Related post:
HOWTO: Speed Hacking
Here's a simple edit that will allow you to have Quick Turn at all times without the Quick Turn Flag. Find the following lines of LocalPlayer.cxx in the /src/bzflag/ directory of the extracted source:
// boost turn speed for other flags
if (flag == Flags::QuickTurn) {
Remove "== Flags::QuickTurn" so that the lines read like this:
// boost turn speed for other flags
if (flag) {
For the original instructions, see Felipe's comments to Flying Without Wings & Extended Jumping. When you're finished, save the file, compile your new client, and ...
Have fun!
Related post:
HOWTO: Speed Hacking
0 Comments:
Post a Comment
<< Home