Skip to Content

bz_ePollVetoEvent

This event is called whenever a poll is vetoed

Data Object Type

2.4.10 bz_PollVetoEventData_V1

Parameters

These are the values accessible in the bz_EventData variable that's made available in the Event method.

Data Type Name Description
int playerID

The player ID who vetoed the poll; this is set to BZ_SERVER if it was done through bz_vetoPoll()

double eventTime

The time of the event.

Plug-in Usage

There are no plug-ins in the official distribution that make use of this event. Browse the Plug-in Releases forum for plug-ins which may make use of this event.

Plug-in Example

This block of code can be used to get started when implementing the Event() function of your plug-in.

bz_PollVetoEventData_V1* dataObject = (bz_PollVetoEventData_V1*)eventData;

// Data
// ---
// (int)          playerID - The player ID who vetoed the poll; this is set to BZ_SERVER if it was done through bz_vetoPoll()
// (double)       eventTime - The time of the event.

Other Polls Events

Back to bzfs API Events

This content is maintained on GitHub. We welcome any feedback and improvements!

Give us Feedback Edit this Page