|
@@ -1305,6 +1305,7 @@ if $ARGS[0] = 'Diner Exterior':
|
|
|
|
|
|
act 'Enter the diner': gt 'NikoSlut', 'Diner Interior'
|
|
|
act 'Go back to the highway':nroad = 20 & gt 'road'
|
|
|
+ act 'Wait (0:30)': minut += 30 & gt 'NikoSlut', 'Diner Exterior'
|
|
|
end
|
|
|
|
|
|
if $ARGS[0] = 'Diner Interior':
|
|
@@ -1312,11 +1313,13 @@ if $ARGS[0] = 'Diner Interior':
|
|
|
if $YurikEv['Name'] = '':$YurikEv['Name'] = 'a burly bearded man'
|
|
|
gs'stat'
|
|
|
'<center><img <<$set_imgh>> src="images/locations/highway/borisdiner/interior1.jpg"></center>'
|
|
|
- if hour >= 7 and hour <= 17 and BorisDiner_Trucker_Daystart ! daystart:
|
|
|
+ if hour >= 7 and hour <= 17 and hour ! BorisDiner['Trucker']:
|
|
|
+ BorisDiner['Trucker'] = hour
|
|
|
'You see a row of stools along the counter and booths along the walls next to the windows. A couple of waitress''s work behind the counter and carry food out to the booths, while a large man works in the back as a cook. Their is a <a href="exec:gt ''NikoSlut'', ''Truckers''">trucker</a> sitting on a stool, enjoying his meal.'
|
|
|
- elseif hour >= 7 and hour <= 17 and BorisDiner_Trucker_Daystart = daystart:
|
|
|
+ elseif hour >= 7 and hour <= 17 and hour = BorisDiner['Trucker']:
|
|
|
'You see a row of stools along the counter and booths along the walls next to the windows. A couple of waitress''s work behind the counter and carry food out to the booths, while a large man works in the back as a cook. Their is a trucker sitting on a stool, enjoying his meal..'
|
|
|
- elseif BorisDiner_Biker_Daystart ! daystart:
|
|
|
+ elseif hour ! BorisDiner['Biker']:
|
|
|
+ BorisDiner['Biker'] = hour
|
|
|
'You see a row of stools along the counter and booths along the walls next to the windows. A couple of waitress''s work behind the counter and carry food out to the booths, while a large man works in the back as a cook. The stools and counters are nearly empty but you can see some <a href="exec:gt ''NikoSlut'', ''Bikers''">bikers</a> sitting at the tables, chatting and drinking beer.'
|
|
|
else
|
|
|
'You see a row of stools along the counter and booths along the walls next to the windows. A couple of waitress''s work behind the counter and carry food out to the booths, while a large man works in the back as a cook. The stools and counters are nearly empty but you can see some bikers sitting at the tables, chatting and drinking beer.'
|
|
@@ -1473,7 +1476,6 @@ end
|
|
|
if $ARGS[0] = 'Truckers':
|
|
|
*clr & cla
|
|
|
minut += 5
|
|
|
- BorisDiner_Trucker_Daystart = daystart
|
|
|
gs'stat'
|
|
|
VK = rand (1,6)
|
|
|
if VK = 1:
|
|
@@ -1528,7 +1530,6 @@ end
|
|
|
if $ARGS[0] = 'Bikers':
|
|
|
*clr & cla
|
|
|
minut += 5
|
|
|
- BorisDiner_Biker_Daystart = daystart
|
|
|
gs'stat'
|
|
|
VK = rand (1,4)
|
|
|
if VK = 1:
|