Methods
The methods
module provides a system to register, remove, and trigger custom method callbacks on both the client and server.
These are useful for extending resource behavior without modifying the core logic.
Accessing the Module
Shared
add_method(event_name, cb, options?)
Adds a method callback to a specific event.
Parameters
event_name
string
Name of the event to hook into.
cb
function
Function to call when the event triggers.
options?
table
Optional table for method filtering/data.
Returns
number
ID of the method for later removal.
Example
remove_method(event_name, id)
Removes a method callback from an event.
Parameters
event_name
string
The event name to remove from.
id
number
ID returned from add_method()
.
Example
trigger_method(event_name, response)
Triggers all registered methods for an event. If any method returns false
, execution halts.
Parameters
event_name
string
The event to trigger.
response
table
The table passed to all method callbacks.
Returns
boolean
false
if any callback returned false
, otherwise true
.
Example
Last updated