Initial commit

Initial commit
This commit is contained in:
Jaysyn904
2024-09-13 09:10:39 -04:00
parent 09dc8aec92
commit d1c309ae63
8437 changed files with 8727659 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
////////////////////////////////////////////////////////////////////////////////
//
// 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);
}