30 lines
618 B
Plaintext
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;
|
||
|
}
|