RATDOG/_module/nss/sc_30dc_distrap.nss
Jaysyn904 409981289e Fixed exploit
Fixed exploit. Added test Shield scroll.  Tweaked a few creatures.
2023-01-01 23:56:52 -05:00

30 lines
618 B
Plaintext

//::///////////////////////////////////////////////
//::
//:: sc_30dc_distrap.nss
//::
//:: Copyright (c) 2023 Project RATDOG
//::
//:://////////////////////////////////////////////
/*
Performs a 30DC Disable Trap check in
conversation
*/
//:://////////////////////////////////////////////
//::
//:: Created By: Jaysyn
//:: Created On: 20230101
//::
//:://////////////////////////////////////////////
#include "nw_i0_tool"
int StartingConditional()
{
//:: Declare major variables
object oPC = GetPCSpeaker();
if (!GetIsSkillSuccessful(oPC, SKILL_DISABLE_TRAP, 30)) return FALSE;
return TRUE;
}