HessionScript
Tribunal.esm
Variables
8
Local Variables
HessKnown
HessDeath
nolore
rent
rentDay
rentMonth
setup
cleanup
Source
1begin HessionScript
2
3;Cell: Mournhold, Bar
4;Publican: Hession
5;Flag: Rent_Mournhold_Bar
6
7;all rooms get rented for one day
8;This guy must be in the map where the room is if you use the locked door cell loading cleanup
9;rename the script for the guy and make a specific door to unlock or flag to set
10;NO actual key is given to player, a global flag is set that removes the ownership on the beds.
11
12;this script fires off when RENT is set true. Rent is set true throuhg the BEDS topic in dialogue, which all Publicans have.
13;Each publican will also have a separate response to buying the bed, so they can give simple directions. There is also a default one.
14
15short HessKnown
16short HessDeath
17short nolore
18short rent ;if room is rented, set through dialogue on this NPC
19short rentDay ;the day of the rental
20short rentMonth ;the month of the rental
21short setup ;if setup has been done
22short cleanup ;true if you want to cleanup all the flags, rental is over and can be reset
23;this script also uses a global variable (Rent_Bed_Pelagiad). Make a new one for each rental. You can have as many
24;beds as you want use that variable, it is used through the ownership data on the object reference
25
26if ( MenuMode == 1 )
27 Return
28endif
29
30if ( rent == 1)
31
32 if ( setup == 0 )
33 set rentDay to Day
34 set rentMonth to Month
35 set setup to 1
36 set Rent_MH_Guar to 1 ;this is the flag for the ownership on the bed
37 "Rent_MH_Guar_Door"->unlock
38
39 else ;setup is done so check to see if the day is over
40
41 if ( Day != rentDay )
42 set cleanup to 1
43
44 elseif ( Month != rentMonth )
45 set cleanup to 1
46
47 endif
48
49 endif
50
51 if ( CellChanged == 1 ) ;this is only needed if you've done a locked door. If so, you only want to do this on cell change so you don't lock them in the room
52 if ( cleanup == 1 ) ;this gets called when the rental is over and everything can be cleaned up
53 set rent to 0
54 set Rent_MH_Guar to 0
55 set setup to 0
56 set rentDay to 0
57 set rentMonth to 0
58 set cleanup to 0
59 "Rent_MH_Guar_Door"->lock 20
60 endif
61 endif
62
63endif
64
65
66
67end