Dizzy Bomb: Difference between revisions

From Fortress Blast
Jump to navigationJump to search
mNo edit summary
m (6 revisions imported: Importing pages from old wiki)
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[[File:Powerup dizzy bomb.png|frameless|right|128px]]
[[File:Powerup dizzy bomb.png|frameless|right|128px]]
Dizzy Bomb is a [[Powerups|powerup]] in Fortress Blast, added in version 4.0. Upon use, all enemies within 512 units will have their experience 'dizziness' achieved by rotating their view in both directions wildly for five seconds. To prevent issues with community prone to epilepsy and such, there are two [[ConVars]] that control its effectiveness: [[sm_fortressblast_dizzy_states]] and [[sm_fortressblast_dizzy_length]]
 
Dizzy Bomb is the fourteenth [[Powerups|powerup]] in Fortress Blast. It was added to Fortress Blast in version 4.0 and is a completely original powerup.
 
Upon use, all enemies within 512 Hammer units will experience 'dizziness', achieved by rotating their view in both directions wildly for five seconds. To prevent issues with players that may be prone to vertigo or other visual stimulation-related illnesses, there are two [[ConVars]] that control its effectiveness: <code>[[sm_fortressblast_dizzy_length]]</code> and <code>[[sm_fortressblast_dizzy_states]]</code>.
 
<youtube>JDlKXAU29YQ</youtube>
<youtube>JDlKXAU29YQ</youtube>
== Developer information ==
== Developer information ==
Dizzy Bomb operates by changing their third angle every 0.1 second, using the following formula:
 
:<code>float ang = Sine((3.16159265 * sm_fortressblast_dizzy_states.FloatValue * DizzyProgress[client]) / (10 * sm_fortressblast_dizzy_length.FloatValue)) * ((10 * sm_fortressblast_dizzy_length.FloatValue) - DizzyProgress[client]);</code>
Dizzy Bomb operates by changing affected players' Z-axis angle every 0.1 seconds, using the following formula: <code>Sine((3.16159265 * States * Progress) / (10 * Length)) * ((10 * Length) - Progress)</code>.
 
[[Category:Powerups]]
[[Category:Powerups with no callback]]

Latest revision as of 21:22, 6 June 2023

Powerup dizzy bomb.png

Dizzy Bomb is the fourteenth powerup in Fortress Blast. It was added to Fortress Blast in version 4.0 and is a completely original powerup.

Upon use, all enemies within 512 Hammer units will experience 'dizziness', achieved by rotating their view in both directions wildly for five seconds. To prevent issues with players that may be prone to vertigo or other visual stimulation-related illnesses, there are two ConVars that control its effectiveness: sm_fortressblast_dizzy_length and sm_fortressblast_dizzy_states.

Developer information

Dizzy Bomb operates by changing affected players' Z-axis angle every 0.1 seconds, using the following formula: Sine((3.16159265 * States * Progress) / (10 * Length)) * ((10 * Length) - Progress).