Scripts

Pub_Smora_Gateway

Morrowind.esm
Variables 5
Local Variables
rent
rentDay
rentMonth
setup
cleanup
Source
1begin Pub_Smora_Gateway 2 3;Cell: Sadrith Mora, Gateway Inn 4;Publican: Ery 5;Flag: Rent_SMora_Gateway 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_Pelagiad_Halfway). 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 ;"Specific Door"->Unlock 27 set rentDay to Day 28 set rentMonth to Month 29 set setup to 1 30 set Rent_Smora_Gateway to 1 ;this is the flag for the ownership on the bed 31 ;"doorID"->unlock ;also needed if you have locked the room, use a specific objectRef 32 33 else ;setup is done so check to see if the day is over 34 35 if ( Day != rentDay ) 36 set cleanup to 1 37 38 elseif ( Month != rentMonth ) 39 set cleanup to 1 40 41 endif 42 43 endif 44 45 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 46 if ( cleanup == 1 ) ;this gets called when the rental is over and everything can be cleaned up 47 set rent to 0 48 set Rent_Smora_Gateway to 0 49 set setup to 0 50 set rentDay to 0 51 set rentMonth to 0 52 set cleanup to 0 53 endif 54 endif 55 56endif 57 58end Pub_Smora_Gateway