blob: 61b5ff8d493bd32428f3f8f4fff29d4aecd8f074 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// TMW2 scripts.
// Authors:
// The Mana World Team
// Jesusalva
// Description:
// Cave logic
021-1,155,196,0 script #MainLogic NPC_NO_SPRITE,0,0,{
.@q=getq(NivalisQuest_Cindy);
if (.@q < 4) end;
if ($@CINDY_STATE > gettimetick(2) || $@CINDY_STATE == 0) goto L_Safe;
if ($@CINDY_STATE % 2 == 0) goto L_Blocked;
warp "021-2", 80, 102;
end;
L_Blocked:
dispbottom l("This place is reeking blood. We better come again later.");
end;
L_Safe:
dispbottom l("There's no reason to enter these caves now.");
end;
}
|