mirror of
https://github.com/emagi/eq2emu
synced 2026-08-12 18:23:04 -04:00
16 lines
308 B
Markdown
16 lines
308 B
Markdown
### Function: ModifyMaxPower(spawn, value)
|
|
|
|
**Description:**
|
|
Sets the Maximum Power of the Spawn to the value provided.
|
|
|
|
**Parameters:**
|
|
- `spawn` (Spawn) - Spawn object representing `spawn`.
|
|
- `value` (int32) - Integer value `value`.
|
|
|
|
**Returns:** None.
|
|
|
|
**Example:**
|
|
|
|
```lua
|
|
ModifyMaxPower(NPC, 10000)
|
|
```
|