Scriptname PublicanIllOmenManheim
;CellName: InnIllOmen
;Publican: Manheim Maulhand
;Room: First room upstairs on the left
;Door Ref: InnIllOmenRentDoor
short rent
short rentday
short rentmonth
short cleanup
short setup
begin gamemode
if ( rent == 1 )
if ( setup == 0 )
set rentday to GameDay
set rentmonth to GameMonth
set setup to 1
InnIllOmenRentDoor.unlock
InnIllOmenRentBed.SetOwnership
else
if ( GameDay != rentday )
set cleanup to 1
elseif ( GameMonth != rentmonth )
set cleanup to 1
endif
endif
if ( Player.GetinCell InnIllOmen == 0 )
if ( Cleanup == 1 )
set Cleanup to 2
endif
endif
if ( Cleanup == 2 )
set rent to 0
set setup to 0
set rentday to 0
set rentmonth to 0
set cleanup to 0
InnIllOmenRentDoor.SetOpenState 0
InnIllOmenRentDoor.lock 30
InnIllOmenRentBed.SetOwnership ManheimMaulhand
endif
endif
End
|