Added persistent player storage. Fixed store items. Full compile. Updated release archive.
87 lines
2.8 KiB
Plaintext
87 lines
2.8 KiB
Plaintext
//::////////////////////////////////////////////////////////////////////////////
|
|
//:: Name Respawn Door/s v1.1
|
|
//:: FileName se_door_death
|
|
//:: Copyright (c) 2001 Bioware Corp.
|
|
//::////////////////////////////////////////////////////////////////////////////
|
|
/*
|
|
Respawn a door after a set delay
|
|
Set a float on the door ie. RESPAWN_TIMER = xx else the default is used
|
|
Thanks to Craig Welburn for the insight
|
|
Cheers to Zarathustra217
|
|
*/
|
|
//::////////////////////////////////////////////////////////////////////////////
|
|
//:: Created By: Sir Elric
|
|
//:: Created On: 8th May, 2006
|
|
//:: Modified On: 16th August, 2007
|
|
//:: Event Used: OnDeath event of a door
|
|
//::////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "x2_inc_compon"
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// CONSTANTS - Settings below
|
|
// -----------------------------------------------------------------------------
|
|
|
|
const float RESPAWN_TIMER_DEFAULT = 600.0; // Default respawn delay
|
|
const int DO_CRAFT_DROP = TRUE; // Drop default Bioware crafting item?
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// PROTOTYPES
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// Respawn a door after a set delay
|
|
// If no float is set on the door ie. RESPAWN_TIMER = xx
|
|
// The default delay will be used ie. RESPAWN_TIMER_DEFAULT = xx
|
|
// oSelf: - Object calling the script
|
|
void SE_RespawnDoor(object oSelf);
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// FUNCTIONS
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void SE_RespawnDoor(object oSelf)
|
|
{
|
|
PlayAnimation(ANIMATION_DOOR_CLOSE);
|
|
int nHealAmount = GetMaxHitPoints(oSelf) - GetCurrentHitPoints(oSelf);
|
|
ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectHeal(nHealAmount), oSelf);
|
|
}
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// MAIN
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
void main()
|
|
{
|
|
object oSelf = OBJECT_SELF;
|
|
object oKiller = GetLastKiller();
|
|
|
|
SetIsDestroyable(FALSE);
|
|
|
|
float fDelay = GetLocalFloat(oSelf, "RESPAWN_TIMER");
|
|
if(fDelay == 0.0)
|
|
fDelay = RESPAWN_TIMER_DEFAULT;
|
|
|
|
DelayCommand(fDelay, SE_RespawnDoor(oSelf));
|
|
|
|
if (!GetIsPC(oKiller))
|
|
return;
|
|
|
|
while (GetIsObjectValid(GetMaster(oKiller)))
|
|
{
|
|
oKiller=GetMaster(oKiller);
|
|
}
|
|
|
|
if(GetIsObjectValid(oKiller))
|
|
{
|
|
AdjustReputation(oKiller, OBJECT_SELF, -35);
|
|
AdjustAlignment (oKiller, ALIGNMENT_CHAOTIC, 10);
|
|
}
|
|
|
|
if(DO_CRAFT_DROP)
|
|
craft_drop_placeable();
|
|
}
|