Amon_PRC8/_removed/hench/nw_ch_stlth_on.nss
Jaysyn904 c5cffc37af Initial Commit
Initial Commit [v1.01]
2025-04-03 19:00:46 -04:00

22 lines
779 B
Plaintext

//::///////////////////////////////////////////////
//:: Turn On Stealth Mode
//:: NW_CH_SRCH_ON.nss
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Preston Watamaniuk
//:: Created On: Nov 19, 2001
//:://////////////////////////////////////////////
// Auldar: If asked to be Stealthy, flag associate for OnHeartbeat to maintain
// stealthy state, and activate stealth mode - Hmm. Can't activate stealth mode when
// in conversation. Removed code and leave it to OnHeartbeat.
#include "hench_i0_conv"
void main()
{
ClearAllActions();
HenchSetAssociateInt(sHenchStealthMode, TRUE);
DelayCommand(1.0, SetActionMode(OBJECT_SELF, ACTION_MODE_STEALTH, TRUE));
}