Event
Event API
When you install events, you send the subscribe message to the server, which is potentially unsafe. Therefore, you won't be able to install new listeners when you have unsafe features disabled in the Settings -> Security tab.
The list of events can be found in the "pak01_dir.vpk" under "resource/game.gameevents."
AddListener(name: string
): void
string
): void
name
string
Event name
Installs an event listener for the desired event.
IsReliable(event: Event
): boolean
Event
): boolean
event
Event
Checks if the event is reliable.
IsLocal(event: Event
): boolean
Event
): boolean
event
Event
Checks if the event is local or networked.
IsEmpty(event: Event
): boolean
Event
): boolean
event
Event
Checks if the event is empty.
GetBool(event: Event
, field: string
): boolean
Event
, field: string
): boolean
event
Event
field
string
Field name
Returns the boolean value of the specified event field.
GetInt(event: Event
, field: string
): integer
Event
, field: string
): integer
event
Event
field
string
Field name
Returns the integer value of the specified event field.
GetUint64(event: Event
, field: string
): integer
Event
, field: string
): integer
event
Event
field
string
Field name
Returns the uint64 value of the specified event field.
GetFloat(event: Event
, field: string
): number
Event
, field: string
): number
event
Event
field
string
Field name
Returns the floating value of the specified event field.
GetString(event: Event
, field: string
): string
Event
, field: string
): string
event
Event
field
string
Field name
Returns the string value of the specified event field.
Last updated