Method Global:RegisterPetEvent [-] [+]
Registers a Pet event handler.
enum PetEvents
{
PET_EVENT_ON_CREATE_SPELLS = 1, // (event, pet)
PET_EVENT_COUNT
};
Synopsis
cancel = RegisterPetEvent( entry, event, function )
cancel = RegisterPetEvent( entry, event, function, shots )
Arguments
number eventRefer to PetEvents above.
Valid numbers: integers from 0 to 4,294,967,295.
function functionFunction that will be called when the event occurs.
number shots (0)The number of times the function will be called, 0 means "always call this function".
Valid numbers: integers from 0 to 4,294,967,295.
Returns
function cancelA function that cancels the binding when called.