 |
|
Veteran Member
Join Date: Apr 2005
Location: Florida
|

05-12-2006
, 17:53
|
#2
|
Quote:
|
Originally Posted by AMXX WIKI
Also, note PLUGIN_HANDLED. There are two main return values you should concern yourself with. PLUGIN_CONTINUE generally means "continue with normal operation", and PLUGIN_HANDLED means "block further operation". The differences are subtle but important. For example, when binding a command, you should never return PLUGIN_CONTINUE. But if you return PLUGIN_HANDLED while binding to the "say" command, it will block the player's text from ever appearing. You must be careful with which you choose in certain situations. However, most things are unaffected (such as tasks, events, and other things you will run into later on).
|
|
|
|
|