mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-22 20:57:12 +01:00
19 lines
785 B
Plaintext
19 lines
785 B
Plaintext
|
|
/* --------------------------------------------------------------------------------------------------------------------
|
|
* Bind to global event: BlipCreated
|
|
*/
|
|
SqCore.On().BlipCreated.Connect(function(/*SqBlip*/ blip, /*int*/ header, /*object*/ payload) {
|
|
|
|
});
|
|
/* --------------------------------------------------------------------------------------------------------------------
|
|
* Bind to global event: BlipDestroyed
|
|
*/
|
|
SqCore.On().BlipDestroyed.Connect(function(/*SqBlip*/ blip, /*int*/ header, /*object*/ payload) {
|
|
|
|
});
|
|
/* --------------------------------------------------------------------------------------------------------------------
|
|
* Bind to global event: BlipCustom
|
|
*/
|
|
SqCore.On().BlipCustom.Connect(function(/*SqBlip*/ blip, /*int*/ header, /*object*/ payload) {
|
|
|
|
}); |