1
0
EQ2Emu/docs/lua_functions/AddToWard.md
2025-05-28 21:48:33 -04:00

17 lines
475 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

### Function: AddToWard(AdditionalAmount)
**Description:** Used inside a Spell Script. Increases the strength of an existing ward on the target(s) of the spell by the specified amount. If the target(s) has this ward active, this tops it up.
**Parameters:**
`AdditionalAmount`: Int32 How much to increase the wards remaining absorption by.
**Returns:** None.
**Example:**
```lua
-- Example usage (reinforce a companions ward during battle)
AddToWard(200)
```