ID:174856
 
For some reason my coding to make the var health go up times 2 doesnt work...Coding:
src.health*2

Error:Skills.dm:30:* :warning: statement has no effect
src.health = src.health * 2

src.health*2 is actually nothing , nothing is defined or used. Keep this in mind. And if this isn't the problem then you sould post more code.
In response to Fint
You could also use src.health*=2.
src.Health = src.Health *2

this should work.
In response to Crashed
it had already been answered ages ago, pay attention.