To get global links make sure scripting is set to advanced.. Then click on scripting.
I'l leave this one for october. Solo or madglee or tsmpaul or alex will be able to do it too.
First, when typing IF and THEN, I believe you need to have the word THEN on the same line as the word IF
So, you'd have
IF %DAMAGE < (%POWER + %EDEFENCE) THEN%DAMAGE=0END
However, looking at your script, it doesn't make sense - your first line sets damage to equal POWER + EDEFENCE, so it is impossible for DAMAGE on the second line to be less than POWER + DEFENCE, because you just told it to make it equal to POWER + DEFENCE on the line above!
IF %DAMAGE < (%POWER + %EDEFENCE)THEN %DAMAGE = 0END
Should be
IF %DAMAGE < (%POWER + %EDEFENCE) THEN BEGIN %DAMAGE := 0END
Remember, "=" means "is equal to" and ":=" means "assign to". Also, an "END" must have a "BEGIN".
"I'm not sure if singular links have a higher power than global, but that's just my guess."
Global Link Scripts first, then Link Scripts. They both run.
Nuby's got the big guns helping him.
lol