Skip to content

Commit

Permalink
ADD Following Convoys in CH2 Step D
Browse files Browse the repository at this point in the history
  • Loading branch information
simustyt committed May 22, 2024
1 parent a89aa4c commit fe86241
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
7 changes: 3 additions & 4 deletions pak128.prototype/scenario/tutorial/class/class_chapter_02.nut
Original file line number Diff line number Diff line change
Expand Up @@ -518,19 +518,18 @@ class tutorial.chapter_02 extends basic_chapter
this.next_step()
}
if (current_cov == ch2_cov_lim1.b){
local conv = my_tile(sch_list1[0]).find_object(mo_car)
if (conv) {
local conv = convoy_x(ch2_cov_lim1.b)
if (conv && conv.is_followed()) {
//Crear cuadro label
local opt = 0
label_bord(brdg_lim.a, brdg_lim.b, opt, false, "X")
//Elimina cuadro label
label_bord(del_lim1.a, del_lim1.b, opt, true, "X")
//label_bord(c_lock.a, c_lock.b, opt, true, "X")
lock_tile_list(c_lock, c_lock.len(), true, 1)
lock_tile_list(c_lock, c_lock.len(), true, 1)
pot2=1
}
}

return 50
break
case 5:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,12 @@ Now you need to purchase a <em>{bus1}</em> Bus to run the service.
<em>Tip:</em> Press the <em>[Ctrl]+["]</em> keys to hide the urban buildings.
</p>
<p>
<st>It takes to the next step</st> when the bus arrives at the first stop on the list.
</p>
<h1>Following Convoys</h1>
This option allows you to follow vehicles as they travel their route, so that they remain in view no matter where they go, even if they go underground. It is activated from the Convoy Window and is the fourth icon in that Window's title bar (an eye).
</p>
<p>
Click on the vehicle already in circulation so that the Convoy Window is displayed. Look for the fourth icon in the title bar of the Convoy Window (eye icon) and press it to follow the convoy.
</p>
<p>
<st>The tutorial will move to the next step</st> when you are following the convoy.
</p>

0 comments on commit fe86241

Please sign in to comment.