You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
249 B
8 lines
249 B
4 years ago
|
function Update()
|
||
|
d=tonumber(SKIN:GetVariable('#ofdrives'))
|
||
|
bars=0
|
||
|
for i=1, d do
|
||
|
bars = bars + tonumber(SKIN:GetVariable('drive'..i..'on'))
|
||
|
end
|
||
|
SKIN:Bang('!SetOption Drive_Icon ImageName #@#Images/Drones/drives_icon'..bars..'.png')
|
||
|
end
|