zp_player_spawn_post
Called when a player spawns. This is also called for CZ bots which are spawning Note: You should use this, instead of other spawn forwards, when you want to change some one's class after spawning. Note: If you have used this forward then you must return ZP_PLUGIN_HANDLED to inform the main plugin that you have used this forward
Syntax
forward zp_player_spawn_post(id, resp_zombie) /** * Called when a player buys an extra item from the ZP menu. * * Note: You can now return ZP_PLUGIN_HANDLED in your plugin to block * the purchase and the player will be automatically refunded. * * @param id Player index of purchaser. * @param itemid Internal extra item ID. */ forward zp_extra_item_selected(id, itemid) // New Forwards // Exec When Open the Extra Itens menu // Use the ZP_PLUGIN_HANDLED for block option (Like ZP 5.0) // Use the ZP_PLUGIN_SUPERCEDE for block showing item in menu forward zp_extra_item_selected_pre(id, itemid) // Use the ZP_PLUGIN_HANDLED for block user frozing forward zp_user_frozen_pre(id) forward zp_user_frozen_post(id) // Use the ZP_PLUGIN_HANDLED for block user burning forward zp_user_burn_pre(id) forward zp_user_burn_post(id) /**
Usage
| id | Player index who has spawned |
| resp_zombie | This is passed by the main plugin as 1 if |
Defined in
zombie_plague_special.inc
at line 859
.
This documentation was automatically generated from source.