Battledale_PRC8/_module/nss/jw_detect_plate.nss
Jaysyn904 7b9e44ebbb Initial upload
Initial upload.  PRC8 has been added.  Module compiles, PRC's default AI & treasure scripts have been integrated.  Started work on top hak for SLA / Ability / Scripting modifications.
2024-03-11 23:44:08 -04:00

140 lines
3.9 KiB
Plaintext

//::///////////////////////////////////////////////
//:: Secret Door invis object
//:: V 1.2
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
/*
This Invisable object will do a check and see
if any pc comes within a radius of this object.
If the PC has the search skill or is a elf then
a search check will be made.
It will create a trap door that will have its
Destination set to a waypoint that has
a tag of DST_<tag of this object>
The radius is determined by the reflex saving
throw of the invisible object
The DC of the search stored by the willpower
saving throw.
*/
//:://////////////////////////////////////////////
//:: Created By: Robert Babiak
//:: Created On: June 25, 2002
//:://////////////////////////////////////////////
void main()
{
// what is the tag of this object used in setting the destination
string sTag = GetTag(OBJECT_SELF);
if (GetLocalInt(GetObjectByTag(sTag+"_platet"),"trapped")==FALSE)
{
return;
}
else
{
// get the radius and DC of the secret door.
float fSearchDist = IntToFloat( GetReflexSavingThrow ( OBJECT_SELF ) );
int nDiffaculty = GetWillSavingThrow ( OBJECT_SELF );
// has it been found?
int nDone = GetLocalInt(OBJECT_SELF,"D_"+sTag);
int nReset = GetLocalInt(OBJECT_SELF,"Reset");
// ok reset the door is destroyed, and the done and reset flas are made 0 again
if (nReset == 1)
{
nDone = 0;
nReset = 0;
SetLocalInt(OBJECT_SELF,"D_"+sTag,nDone);
SetLocalInt(OBJECT_SELF,"Reset",nReset);
object oidDoor= GetLocalObject(OBJECT_SELF,"Door");
if (oidDoor != OBJECT_INVALID)
{
SetPlotFlag(oidDoor,0);
DestroyObject(oidDoor);
}
}
//
int nBestSkill = -50;
object oidBestSearcher = OBJECT_INVALID;
int nCount = 1;
// Find the best searcher within the search radius.
object oidNearestCreature = GetNearestCreature(CREATURE_TYPE_PLAYER_CHAR, PLAYER_CHAR_IS_PC);
while ( ( nDone == 0 ) &&
( oidNearestCreature != OBJECT_INVALID )
)
{
// what is the distance of the PC to the door location
float fDist = GetDistanceBetween(OBJECT_SELF,oidNearestCreature);
if ( fDist > fSearchDist )
{
nDone = 1;
}
if ( fDist <= fSearchDist )
{
int nSkill = GetSkillRank(SKILL_SEARCH,oidNearestCreature);
if (nSkill > nBestSkill)
{
nBestSkill = nSkill;
oidBestSearcher = oidNearestCreature;
}
}
nCount = nCount +1;
oidNearestCreature = GetNearestCreature(CREATURE_TYPE_PLAYER_CHAR, PLAYER_CHAR_IS_PC, OBJECT_SELF ,nCount);
}
if ( ( nDone == 0 ) &&
( GetIsObjectValid( oidBestSearcher ) )
)
{
int nMod = d20();
// did we find it.
if ((nBestSkill +nMod > nDiffaculty))
{
location locLoc = GetLocation (OBJECT_SELF);
object oidDoor;
// yes we found it, now create a trap door for us to use. it.
oidDoor = CreateObject(OBJECT_TYPE_PLACEABLE,sTag+"_plate",locLoc,TRUE);
ApplyEffectAtLocation(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_IMP_KNOCK),GetLocation(oidDoor));
FloatingTextStringOnCreature("Discovered a hidden pressure plate",oidBestSearcher);
/// instantly tell the finder that it is trapped.
SetTrapDetectedBy(oidDoor,oidBestSearcher);
// make this door as found.
SetLocalInt(OBJECT_SELF,"D_"+sTag,1);
SetPlotFlag(oidDoor,1);
SetLocalObject(OBJECT_SELF,"Door",oidDoor);
} // if skill search found
} // if Object is valid
}
}