NibaniMaesa
Morrowind.esm
Variables
3
Local Variables
currentDay
localdaysPassed
NoLore
Source
1Begin NibaniMaesa
2
3short currentDay
4short localdaysPassed
5Short NoLore ;blocks discussion of general topics
6
7if ( OnDeath == 1 )
8 Journal B1_UrshilakuKill 1
9 Journal B8_Failed_Nerevarine 1
10endif
11
12if ( currentDay != Day )
13 set currentDay to Day
14 set localdaysPassed to localdaysPassed + 1
15endif
16
17;Old Version (for reference -- month thing makes no sense so sayeth Doug)
18
19;short eventDay
20;short eventMonth
21;short oneDayPassed
22
23;if (oneDayPassed == 0)
24; set oneDayPassed to 1
25; set eventDay to Day
26; set eventMonth to Month
27;endif
28
29;if (oneDayPassed == 1)
30; if (Month != eventMonth)
31; set oneDayPassed to 2
32; endif
33;
34; if (Day != eventDay)
35; set oneDayPassed to 2
36; endif
37;endif
38
39End