This wiki is archived and useful information is being migrated to the main bzflag.org website

Cleanup

From BZFlagWiki
Revision as of 19:39, 10 July 2011 by Allejo (Talk | contribs) (added some info on how the unloading part of a plugin works for 2.4)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Code Example

 void SAMPLE_PLUGIN::Cleanup( void ) {
     Flush(); //This removes all events that were registered with Registered()
     bz_debugMessage(4,"SAMPLE_PLUGIN plugin unloaded");
     return 0;
 }

Functions

The Cleanup function is required for all plugins. This function replaces the bz_Unload function in plugins written for 2.4 or higher. In this function all debug messages, events, map objects, and slash commands are unregistered. Available functions for this are as follows:

More information on this function can be found on the BZFS_API_2.4_Upgrade page.