Browse Source

[fixes] small stuff in club, obekt und obekt2

julzor 5 years ago
parent
commit
034135ddce
3 changed files with 15 additions and 15 deletions
  1. 1 1
      locations/club.qsrc
  2. 5 6
      locations/obekt.qsrc
  3. 9 8
      locations/obekt2.qsrc

+ 1 - 1
locations/club.qsrc

@@ -263,7 +263,7 @@ if $ARGS[0] = 'dance':
 	
 	if hour <= 3 or hour >= 18:
 		act 'Dance (0:15)':
-			*clr % cla
+			*clr & cla
 			menu_off = 1
 			minut += 15
 			pcs_stam -= 5

+ 5 - 6
locations/obekt.qsrc

@@ -4,7 +4,7 @@ $menu_loc = 'obekt'
 $menu_arg = ''
 menu_off = 0
 
-clr
+*clr & cla
 gs 'stat'
 $location_type = 'secluded'
 '<center><h4>An object</h4></center>'
@@ -16,13 +16,14 @@ if car > 0 and cardrive = 12:
 end
 
 act 'Sneak into the construction site':
-	cls
+	*clr & cla
 	minut += 5
 	menu_off = 1
 	gs 'stat'
 
 	if ObjektOpen = 0:
-		if ObjektBil = 0:ObjektBil = 1
+		if ObjektBil = 0: 
+			ObjektBil = 1
 			'Before you''re able to enter, you hear a voice asking you what you''re doing. It''s the guard that caught you. He points towards the direction you should be heading instead.'
 
 			act 'Leave':gt $curloc
@@ -31,9 +32,7 @@ act 'Sneak into the construction site':
 		end
 	end
 
-	!!if ObjektBil = 1:end
-
-	act 'Go on the road':minut += 15 & nroad = 16 & gt 'road'
+	act 'Go to the road':minut += 15 & nroad = 16 & gt 'road'
 end
 
 --- obekt ---------------------------------

+ 9 - 8
locations/obekt2.qsrc

@@ -5,8 +5,7 @@ $menu_loc = 'obekt2'
 $menu_arg = ''
 menu_off = 0
 
-*clr
-cla
+*clr & cla
 
 gs 'stat'
 $location_type = 'secluded'
@@ -14,18 +13,20 @@ $location_type = 'secluded'
 '<center><img <<$set_imgh>> src="images/locations/construction/obekt.jpg"></center>'
 'There is not much to see at the construction site, only a trailer where a guard sits. The entrance is closed...'
 
-act 'Try to sneak in':
+act 'Leave the construction site':
 	cla & *clr
-	minut += 10
+	menu_off = 1
+	minut += 5
 	gs 'stat'
-	gt 'dangeon'
+	gt 'obekt'
 end
 
-act 'Leave the construction site':
+act 'Try to sneak in':
 	cla & *clr
-	minut += 5
+	menu_off = 1
+	minut += 10
 	gs 'stat'
-	gt 'obekt'
+	gt 'dangeon'
 end
 
 --- obekt2 ---------------------------------