Rune_PRC8/_module/nss/mar_cd_ondeath.nss
Jaysyn904 d1c309ae63 Initial commit
Initial commit
2024-09-13 09:10:39 -04:00

21 lines
588 B
Plaintext

////////////////////////////////////////////////////////////////////////////////
//
// New Style Training Dummy and Training Target
// mar_cd_ondeath
// By:Don Anderson
// dandersonru@msn.com
//
// This is placed in the OnDeath Event of a Combat Dummy and/or Archery Target
//
////////////////////////////////////////////////////////////////////////////////
void main()
{
object oSelf = OBJECT_SELF;
int nSelf = GetObjectType(oSelf);
string sSelf = GetResRef(oSelf);
location lSelf = GetLocation(oSelf);
CreateObject(nSelf, sSelf, lSelf, FALSE);
}