File Reorganization

File Reorganization.  Initialized ratdog_creature hak & added Project Q overrides & other models.  Continued dynamic swapover & upgrade.
This commit is contained in:
Jaysyn904
2021-10-02 03:15:34 -04:00
parent 8dbdd0bd23
commit e870de8a20
582 changed files with 564594 additions and 140683 deletions

View File

@@ -0,0 +1,31 @@
//Put this script OnEnter
void main()
{
object oPC = GetEnteringObject();
object oTarget = GetObjectByTag("RA_PLC_BOULDER01");
object oSpawn;
location lTarget;
if (!GetIsPC(oPC)) return;
int DoOnce = GetLocalInt(oPC, GetTag(OBJECT_SELF));
if (DoOnce==TRUE) return;
SetLocalInt(oPC, GetTag(OBJECT_SELF), TRUE);
if (GetIsSkillSuccessful(oPC, SKILL_SEARCH, 30))
{
if (!GetIsObjectValid(oTarget)) return;
DelayCommand(0.1f, DestroyObject(oTarget, 0.0));
oTarget = GetWaypointByTag("RA_PLC_BOULDER01");
lTarget = GetLocation(oTarget);
oSpawn = CreateObject(OBJECT_TYPE_PLACEABLE, "ra_hiddencave001", lTarget);
SendMessageToPC(oPC, "You have discovered an illusion shrouded door.");
DestroyObject(oSpawn, 180.0f);
}
}