PRC8_fork/nwn/trunk/scripts/prc_hips.nss
Jaysyn904 5914ed2ab5 Updated Release Archive
Updated Release Archive.  Fixed Mage-killer prereqs.  Removed old LETO & ConvoCC related files.  Added organized spell scroll store.  Fixed Gloura spellbook. Various TLK fixes.  Reorganized Repo.  Removed invalid user folders. Added DocGen back in.
2023-08-22 10:00:21 -04:00

17 lines
600 B
Plaintext

#include "prc_inc_spells"
#include "x0_i0_modes"
void main()
{
object oPC = OBJECT_SELF;
object oSkin = GetPCSkin(oPC);
DelayCommand(0.2, SetActionMode(oPC, ACTION_MODE_STEALTH, TRUE));
DelayCommand(0.21, UseStealthMode());
DelayCommand(0.2, ActionUseSkill(SKILL_HIDE, oPC));
DelayCommand(0.2, ActionUseSkill(SKILL_MOVE_SILENTLY, oPC));
//AddItemProperty(DURATION_TYPE_TEMPORARY,PRCItemPropertyBonusFeat(31),oSkin,3.0f);
AddSkinFeat(FEAT_HIDE_IN_PLAIN_SIGHT, IP_CONST_FEAT_HIDE_IN_PLAIN_SIGHT, oSkin, oPC, 3.0f);
SetActionMode(oPC, ACTION_MODE_STEALTH, TRUE);
}