alvisTeriScript
Morrowind.esm
Variables
2
Local Variables
noLore
OnPCHitMe
Source
1Begin alvisTeriScript
2
3short noLore
4short OnPCHitMe
5
6if ( OnMurder == 1 )
7 Set Neminda.murderedAlvisTeri to 1
8endif
9
10if ( CellChanged == 1 )
11 if ( GetJournalIndex HR_FoundersHelm > 0 )
12 if ( GetJournalIndex HR_FoundersHelm < 100 )
13 ;to avoid free murder if that is still a bug
14 SetFight 50
15 SetDisposition 30
16 StopCombat
17 Set noLore to 0
18 endif
19 else
20 Set noLore to 1
21 endif
22endif
23
24if ( OnPCHitMe == 1 )
25 "meril hlaano"->StopCombat
26 "meril hlaano"->SetFight 30
27 "traven marvos"->StopCombat
28 "traven marvos"->SetFight 30
29 "dulnea ralaal"->StopCombat
30 "dulnea ralaal"->SetFight 30
31 "dulnea ralaal"->SetDisposition 30
32 if ( "itermerel"->GetDisabled == 0 )
33 ;justin case
34 "itermerel"->StopCombat
35 "Itermerel"->SetFight 30
36 endif
37 if ( GetTarget Player == 0 )
38 StartCombat Player
39 endif
40 Set OnPCHitMe to 0
41endif
42
43End