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

Difference between revisions of "Bz Load"

From BZFlagWiki
Jump to: navigation, search
(wrote page for bz_load)
 
m (edited the example)
 
(One intermediate revision by the same user not shown)
Line 13: Line 13:
  
 
===Deprecation===
 
===Deprecation===
All calls to [[bz_Load]] have been deprecated as of 2.4 and will been replaced with:
+
All calls to [[bz_Load]] have been deprecated as of 2.4 and will be replaced with:
  # '''virtual void Init ( const char* config);'''
+
  # '''void SAMPLE_PLUGIN::Init ( const char* config);'''
  
 
More information on this function can be found on the [[BZFS_API_2.4_Upgrade]] page.
 
More information on this function can be found on the [[BZFS_API_2.4_Upgrade]] page.

Latest revision as of 19:17, 10 July 2011

Code Example[edit]

 BZF_PLUGIN_CALL int bz_Load ( const char* /*commandLine*/ ) {
     bz_debugMessage(4,"SAMPLE_PLUGIN plugin loaded");
     return 0;
 }

Functions[edit]

The bz_Load function is required for all plugins. In this function all debug messages, events, map objects, and slash commands are registered. Available functions for this are as follows:

Deprecation[edit]

All calls to bz_Load have been deprecated as of 2.4 and will be replaced with:

# void SAMPLE_PLUGIN::Init ( const char* config);

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