Finished PRC8 integration

Finished PRC8 integration.  Moved creature abilities to top hak.  Setup tooling.  Created release archive
This commit is contained in:
Jaysyn904
2024-03-12 21:27:23 -04:00
parent 7b9e44ebbb
commit e5b3f6ad61
958 changed files with 1491 additions and 630 deletions

View File

@@ -1,8 +1,10 @@
//////////////////////////////////
/// Script: jth_dmwand
/// Purpose: include file for a DM's Helper wand
/// Author: Dopple (dopple@why-bother-me.com
//: Script: jth_dmwand
//: Purpose: include file for a DM's Helper wand
//: Author: Dopple (dopple@why-bother-me.com
//////////////////////////////////
#include "prc_inc_racial"
// function for OnActivateItem
object oMySpeaker = GetLastSpeaker();
object oMyTarget = GetLocalObject(oMySpeaker, "dmwandtarget");
@@ -230,7 +232,7 @@ string Alignment(object oEntity)
string Race(object oEntity)
{
// Returns striong version of objects race
switch (GetRacialType(oEntity))
switch (MyPRCGetRacialType(oEntity))
{
case RACIAL_TYPE_ALL: return "All"; break;
case RACIAL_TYPE_ANIMAL: return "Animal"; break;