MMD_PRC8/_module/nss/use_crystalball.nss
Jaysyn904 adeff59f82 Initial commit
Initial commit.
2024-08-02 23:18:00 -04:00

46 lines
1.4 KiB
Plaintext

//::///////////////////////////////////////////////
//:: OnUse: Toggle Activate
//:: x2_plc_used_act
//:: Copyright (c) 2003 Bioware Corp.
//:://////////////////////////////////////////////
/*
Simple script to toggle the placeable animation
state for placeables that support Activate and
DeActivate Animations
Placeables are best set to be DeActivated by
default with this script.
*/
//:://////////////////////////////////////////////
//:: Created By: Georg Zoeller
//:: Created On: 2003-09-10
//:://////////////////////////////////////////////
void main()
{
object oPC = GetLastUsedBy();
object oArea = GetArea(oPC);
int iTouched = GetLocalInt(OBJECT_SELF,"touched");
// * note that nActive == 1 does not necessarily mean the placeable is active
// * that depends on the initial state of the object
int nActive = GetLocalInt (OBJECT_SELF,"X2_L_PLC_ACTIVATED_STATE");
// * Play Appropriate Animation
if (!nActive)
{
ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE);
}
else
{
ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE);
}
// * Store New State
SetLocalInt(OBJECT_SELF,"X2_L_PLC_ACTIVATED_STATE",!nActive);
if (iTouched == 1) {FloatingTextStringOnCreature("This seems to do nothing.",oPC); return;}
ExploreAreaForPlayer(oArea,oPC);
FloatingTextStringOnCreature("You gain knowledge of the surrounding area.",oPC);
SetLocalInt(OBJECT_SELF,"touched",1);
}