summaryrefslogtreecommitdiff
path: root/npc/021-4/doors.txt
blob: 49e84cfb9b60cac4c77ad35522e0cbe6cf6cb7e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// TMW2 scripts.
// Authors:
//    Jesusalva
// Description:
//    Cave logic

021-4,67,27,0	script	#Leave0214	NPC_NO_SPRITE,0,0,{
    if ($@CINDY_STATE % 2 == 1 && $@CINDY_STATE < 150000) goto L_Blocked;
    warp "021-3", 24, 123;
    end;

L_Blocked:
    dispbottom l("You cannot leave this room until either ALL yetis are dead, or you are dead yourself.");
    end;
}