drenSlaveOwners
Morrowind.esm
Variables
1
Local Variables
timer
Source
1Begin drenSlaveOwners
2
3float timer
4
5if ( timer < 3 )
6 Set timer to ( timer + GetSecondsPassed )
7endif
8
9Set timer to 0
10
11if ( GetDeadCount "hides_his_foot" == 0 )
12 if ( GetJournalIndex HH_TwinLamps3 >= 50 )
13 if ( GetJournalIndex HH_TwinLamps3 < 70 )
14 if ( GetDetected "hides_his_foot" == 1 )
15 StartCombat "hides_his_foot"
16 return
17 endif
18 endif
19 endif
20endif
21
22if ( GetDeadCount "Neetinei" == 0 )
23 if ( "Neetinei".slaveStatus == 3 )
24 if ( "Neetinei"->GetDisabled == 0 )
25 if ( GetDetected Player == 1 )
26 StartCombat Player
27 return
28 endif
29 endif
30 endif
31endif
32
33if ( GetDeadCount "Ahzini" == 0 )
34 if ( "Ahzini".slaveStatus == 3 )
35 if ( "Neetinei"->GetDisabled == 0 )
36 if ( GetDetected Player == 1 )
37 StartCombat Player
38 return
39 endif
40 endif
41 endif
42endif
43
44if ( GetDeadCount "gah_julan" == 0 )
45 if ( "gah_julan".slaveStatus == 3 )
46 if ( "gah_julan"->GetDisabled == 0 )
47 if ( GetDetected Player == 1 )
48 StartCombat Player
49 return
50 endif
51 endif
52 endif
53endif
54
55End