Sm fortressblast powerups: Difference between revisions

From Fortress Blast
Jump to navigationJump to search
(Removed bold)
m (24 revisions imported: Importing pages from old wiki)
 
(17 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{DISPLAYTITLE:sm_fortressblast_powerups}}
{{DISPLAYTITLE:sm_fortressblast_powerups}}<code>sm_fortressblast_powerups</code> is a [[ConVars|ConVar]] in Fortress Blast that was added in version 1.1. It controls the [[powerups]] that are placed at the start of a round, dropped on death, and used by [[Mystery]]. It does not affect powerups that are set with <code>[[sm_setpowerup]]</code> or spawned with <code>[[sm_spawnpowerup]]</code>.


<code>sm_fortressblast_powerups</code> is a [[ConVars|ConVar]] in Fortress Blast that was added in version 1.1. It controls the [[powerups]] that are placed at the start of a round, dropped on death, and used by [[Mystery]]. It does not affect powerups that are set with <code>[[sm_setpowerup]]</code> or spawned with <code>[[sm_spawnpowerup]]</code>.
You ''cannot'' disable [[ULTRA POWERUP!!]] with this ConVar. Instead, <code>[[sm_fortressblast_ultra_spawnchance]]</code> should be set to 0.


To enable all powerups, use a value of -1 to avoid having to update the ConVar every time new powerups are added. Otherwise, the value of the ConVar should be a integer which is the sum of the needed powerups' bits, which are defined as below:
To enable all powerups, use a value of -1 to avoid having to update the ConVar every time new powerups are added. Otherwise, the value of the ConVar should be a integer which is the sum of the needed powerups' bits, which are defined as below:


{| class="wikitable"
{| class="wikitable"
Line 30: Line 31:
|-
|-
| [[Teleportation]] || 1024
| [[Teleportation]] || 1024
|-
| [[Magnetism]] || 2048
|-
| [[Effect Burst]] || 4096
|-
| [[Dizzy Bomb]] || 8192
|-
| [[Become Sentry]] || 16384
|-
| [[Ghost]] || 32768
|-
| [[Catapult]] || 65535
|}
|}
<!--- when updating this table, remember to update the part below about mystery as well -->
 
Here are some example values for this ConVar:
Here are some example values for this ConVar:


* Enable Blast and Gyrocopter: 64 + 16 = 80
* Enable Blast and Gyrocopter: 64 + 16 = 80
* Enable Frost Touch and Super Bounce: 256 + 1 = 257
* Enable Teleportation and Super Bounce: 1024 + 1 = 1025
* Enable Mega Mann, Shock Absorber, Super Jump, and Mystery: 128 + 2 + 8 + 512 = 650
* Enable Mega Mann, Shock Absorber, Super Jump, and Mystery: 128 + 2 + 8 + 512 = 650
* Enable Time Travel only: 32 = 32
* Enable Time Travel only: 32 = 32


Keep in mind that Mystery cannot be the only powerup enabled, because it requires at least one other powerup enabled. If this happens to be the case, all powerups will forcibly be enabled. This will also happen if you attempt to set a number bigger than 2047, as that is the highest value that can be obtained with this bits.  
Keep in mind that Mystery cannot be the only powerup enabled, because it requires at least one other powerup enabled. If this happens to be the case, all powerups will forcibly be enabled. This will also happen if you attempt to set a number bigger than 131071, as that is the highest value that can be obtained with these bits.


[[Category:ConVars]]
[[Category:ConVars]]
[[Category:Pages to update with new powerups]]
[[Category:Pages to update with new powerups]]
[[Category:ConVars passed through the MOTD]]

Latest revision as of 21:22, 6 June 2023

sm_fortressblast_powerups is a ConVar in Fortress Blast that was added in version 1.1. It controls the powerups that are placed at the start of a round, dropped on death, and used by Mystery. It does not affect powerups that are set with sm_setpowerup or spawned with sm_spawnpowerup.

You cannot disable ULTRA POWERUP!! with this ConVar. Instead, sm_fortressblast_ultra_spawnchance should be set to 0.

To enable all powerups, use a value of -1 to avoid having to update the ConVar every time new powerups are added. Otherwise, the value of the ConVar should be a integer which is the sum of the needed powerups' bits, which are defined as below:


Powerup Bit
Super Bounce 1
Shock Absorber 2
Super Speed 4
Super Jump 8
Gyrocopter 16
Time Travel 32
Blast 64
Mega Mann 128
Frost Touch 256
Mystery 512
Teleportation 1024
Magnetism 2048
Effect Burst 4096
Dizzy Bomb 8192
Become Sentry 16384
Ghost 32768
Catapult 65535

Here are some example values for this ConVar:

  • Enable Blast and Gyrocopter: 64 + 16 = 80
  • Enable Teleportation and Super Bounce: 1024 + 1 = 1025
  • Enable Mega Mann, Shock Absorber, Super Jump, and Mystery: 128 + 2 + 8 + 512 = 650
  • Enable Time Travel only: 32 = 32

Keep in mind that Mystery cannot be the only powerup enabled, because it requires at least one other powerup enabled. If this happens to be the case, all powerups will forcibly be enabled. This will also happen if you attempt to set a number bigger than 131071, as that is the highest value that can be obtained with these bits.