Pub_Aldruhn_Skar
Morrowind.esm
Variables
5
Local Variables
rent
rentDay
rentMonth
setup
cleanup
Source
1begin Pub_Aldruhn_Skar
2
3;Cell: Ald-ruhn, Ald Skar Inn
4;Publican: Boderi Farano
5;Flag: Rent_Aldruhn_Skar
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 rent ;if room is rented, set through dialogue on this NPC
16short rentDay ;the day of the rental
17short rentMonth ;the month of the rental
18short setup ;if setup has been done
19short cleanup ;true if you want to cleanup all the flags, rental is over and can be reset
20;this script also uses a global variable (Rent_Bed_Pelagiad). Make a new one for each rental. You can have as many
21;beds as you want use that variable, it is used through the ownership data on the object reference
22
23if ( rent == 1)
24
25 if ( setup == 0 )
26 set rentDay to Day
27 set rentMonth to Month
28 set setup to 1
29 set Rent_Aldruhn_Skar to 1 ;this is the flag for the ownership on the bed
30
31 else ;setup is done so check to see if the day is over
32
33 if ( Day != rentDay )
34 set cleanup to 1
35
36 elseif ( Month != rentMonth )
37 set cleanup to 1
38
39 endif
40
41 endif
42
43 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
44 if ( cleanup == 1 ) ;this gets called when the rental is over and everything can be cleaned up
45 set rent to 0
46 set Rent_Aldruhn_Skar to 0
47 set setup to 0
48 set rentDay to 0
49 set rentMonth to 0
50 set cleanup to 0
51 endif
52 endif
53
54endif
55
56
57end Pub_Aldruhn_Skar