Time Travel: Difference between revisions

From Fortress Blast
Jump to navigationJump to search
(Frameless image)
(Added YouTube player)
Line 3: Line 3:
Time Travel is the sixth [[Powerups|powerup]] in Fortress Blast. It turns the user invisible, super fast, and in third person for 3 seconds, but during this time they cannot attack. This can be used to get past difficult obstacles or as an escape method. The powerup [[Blast]] forcibly removes Time Travel when used.
Time Travel is the sixth [[Powerups|powerup]] in Fortress Blast. It turns the user invisible, super fast, and in third person for 3 seconds, but during this time they cannot attack. This can be used to get past difficult obstacles or as an escape method. The powerup [[Blast]] forcibly removes Time Travel when used.


== Development Information ==
<youtube>JsuMQSggHEA</youtube>
 
== Development information ==
 
Through m_flMaxspeed, the player's speed is increased to 520 HU/s (the maximum speed on ground). The player is also given condition 66 (TFCond_StealthedUserBuffFade). The player is blocked from attacking using the netprops m_flNextPrimaryAttack and m_flNextSecondaryAttack and by blocking the IN_ATTACK button. The former is preferred due to the latter having the blocked action delayed by ping amounts, but only having the former makes the sapper usable during time travel, which is why two different attack-blocking methods are employed.
Through m_flMaxspeed, the player's speed is increased to 520 HU/s (the maximum speed on ground). The player is also given condition 66 (TFCond_StealthedUserBuffFade). The player is blocked from attacking using the netprops m_flNextPrimaryAttack and m_flNextSecondaryAttack and by blocking the IN_ATTACK button. The former is preferred due to the latter having the blocked action delayed by ping amounts, but only having the former makes the sapper usable during time travel, which is why two different attack-blocking methods are employed.

Revision as of 17:16, 24 November 2019

Powerup time travel.png

Time Travel is the sixth powerup in Fortress Blast. It turns the user invisible, super fast, and in third person for 3 seconds, but during this time they cannot attack. This can be used to get past difficult obstacles or as an escape method. The powerup Blast forcibly removes Time Travel when used.

Development information

Through m_flMaxspeed, the player's speed is increased to 520 HU/s (the maximum speed on ground). The player is also given condition 66 (TFCond_StealthedUserBuffFade). The player is blocked from attacking using the netprops m_flNextPrimaryAttack and m_flNextSecondaryAttack and by blocking the IN_ATTACK button. The former is preferred due to the latter having the blocked action delayed by ping amounts, but only having the former makes the sapper usable during time travel, which is why two different attack-blocking methods are employed.