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

16 lines
471 B
Markdown
Raw Permalink 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: CompleteTransmute(Player)
**Description:** Finalizes a transmuting action for the player, typically yielding the transmuted components. This would be called after StartTransmute once the process should complete (if not automatic).
**Parameters:**
`Player`: Spawn The player finishing transmuting.
**Returns:** None.
**Example:**
```lua
-- Example usage (complete the transmuting process after a delay or confirmation)
CompleteTransmute(Player)
```