Profile
Name: |
Global Band Strength |
ID: |
7002 |
Created on: |
Fri, 08/06/2010 - 13:33 |
Updated on: |
Fri, 08/06/2010 - 20:33 |
Description: |
Script request from Mat747.
Sets the strength of all bands to one value. |
Best For
Comments
|
| | |
|
Want to try?
Add to Cookbook!
To download recipes to your cookbook, you need to have the game client running.
| |
| | |
| | |
|
-- General Band Strength by Crashguard303
-- A script request by Mat747
-- Sets the strength of all existing bands to specifeid value.
-- Default value is 1.
function band_set_strength_all(strength)
local NumBands = get_band_count()
local k
for k = 1 , NumBands do
band_set_strength(k,strength)
end -- k loop
end -- function
band_set_strength_all(1)