Files
HeroesStone_PRC8/_module/nss/subdual_activate.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

18 lines
599 B
Plaintext

/*****************************************************************************
PC Subdual Damage
By Rocc
Version 0.9
October 26, 2002
Allows for PC subdual in PvP combat.
******************************************************************************/
// Subdual OnActivate script
// If you already have an OnItemActivate script, just copy the following line
// there right below main()'s opening curly bracket.
void main()
{
if(GetTag(GetItemActivated())=="SubdualModeTog")
AssignCommand(GetItemActivator(),ActionStartConversation(GetItemActivator(),"subdualconv",TRUE));
}