Hooks
Hooks provided by the Load Messages module for managing character load messages.
Overview
The Load Messages module adds faction-based load messages, execution when players first load a character, customizable message text, color-coded formatting options, and per-faction enable toggles.. It provides comprehensive hook integration for customizing managing character load messages and extending functionality.
LoadMessageMissing
đ Purpose
Called when a load message configuration is missing.
â° When Called
When a player loads but no message data is found for their class.
âī¸ Parameters
| Parameter | Type | Description |
|---|---|---|
client |
Player | The player who loaded without a message |
âŠī¸ Returns
nil
đ Realm
Server
Overview
The Load Messages module adds faction-based load messages, execution when players first load a character, customizable message text, color-coded formatting options, and per-faction enable toggles.. It provides comprehensive hook integration for customizing managing character load messages and extending functionality.
LoadMessageSent
đ Purpose
Called when a load message is sent to a player.
â° When Called
After the message is displayed to the player.
âī¸ Parameters
| Parameter | Type | Description |
|---|---|---|
client |
Player | The player receiving the message |
data |
table | The load message data that was sent |
âŠī¸ Returns
nil
đ Realm
Server
Overview
The Load Messages module adds faction-based load messages, execution when players first load a character, customizable message text, color-coded formatting options, and per-faction enable toggles.. It provides comprehensive hook integration for customizing managing character load messages and extending functionality.
PostLoadMessage
đ Purpose
Called after a load message has been processed.
â° When Called
After the message is sent and displayed.
âī¸ Parameters
| Parameter | Type | Description |
|---|---|---|
client |
Player | The player who received the message |
data |
table | The load message data |
âŠī¸ Returns
nil
đ Realm
Server
Overview
The Load Messages module adds faction-based load messages, execution when players first load a character, customizable message text, color-coded formatting options, and per-faction enable toggles.. It provides comprehensive hook integration for customizing managing character load messages and extending functionality.
PreLoadMessage
đ Purpose
Called before a load message is sent.
â° When Called
Before the message is displayed to the player.
âī¸ Parameters
| Parameter | Type | Description |
|---|---|---|
client |
Player | The player who will receive the message |
data |
table | The load message data that will be sent |
âŠī¸ Returns
nil
đ Realm
Server