Areas and Fixes
Added CCOH and missing areas Changed some areas to be craftable, Fixed some on death issues, Fixed the Gaurd
This commit is contained in:
24
_module/nss/spawn_nodeath.nss
Normal file
24
_module/nss/spawn_nodeath.nss
Normal file
@@ -0,0 +1,24 @@
|
||||
/**
|
||||
spawn_nodeath
|
||||
|
||||
OnSpawn: Requests notification about OnDamaged events, to aid in creating
|
||||
non-dying characters.
|
||||
|
||||
J.D. Robertson, 2002
|
||||
*/
|
||||
#include "NW_I0_GENERIC"
|
||||
void main()
|
||||
{
|
||||
// Set listening
|
||||
SetListeningPatterns();
|
||||
|
||||
// Catch damaga events. Also register Percieve events for Loden
|
||||
//SetSpawnInCondition(NW_FLAG_HEARTBEAT_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1001
|
||||
//SetSpawnInCondition(NW_FLAG_PERCIEVE_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1002
|
||||
//SetSpawnInCondition(NW_FLAG_ATTACK_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1005
|
||||
SetSpawnInCondition(NW_FLAG_DAMAGED_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1006
|
||||
//SetSpawnInCondition(NW_FLAG_DISTURBED_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1008
|
||||
//SetSpawnInCondition(NW_FLAG_END_COMBAT_ROUND_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1003
|
||||
//SetSpawnInCondition(NW_FLAG_ON_DIALOGUE_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1004
|
||||
//SetSpawnInCondition(NW_FLAG_DEATH_EVENT); //OPTIONAL BEHAVIOR - Fire User Defined Event 1007
|
||||
}
|
Reference in New Issue
Block a user