It is currently 29 Mar 2024, 00:12

WELCOME TO SIMUSCAPE!


Please Sign in or Register to enable all features, remove restrictions and gain additional access!
For information on how to bypass the CAPTCHA or to contact Team Simuscape, Continue Here!


Post a new topicPost a reply Page 20 of 23   [ 452 posts ]
Go to page Previous  1 ... 17, 18, 19, 20, 21, 22, 23  Next
Author Message
 Post subject: Re: GarryG Does Stations
PostPosted: 15 Sep 2017, 13:11 
Player
Player
User avatar

Joined: 06 Mar 2012, 21:55
Posts: 480
Location: The Netherlands
Quote:
To clear room in this forum .. do you want me to go back through some of my notes and delete what not relevant to the course?

No, not necessary.
I have placed hotlinks to the various courses in the first post, so people can easily find relevant information.
All the rest is interesting enough to read if someone wants to follow the track of someone starting with coding stations.


Top
 Offline Profile  
 
 Post subject: Re: GarryG Does Stations
PostPosted: 17 Sep 2017, 09:19 
Expert
Expert
User avatar

Joined: 03 May 2015, 03:27
Posts: 1716
Location: Newcastle, Australia
I haven't started on the new lessons yet as still working on the coal loader. Using the timber colours from the photos to see if can get things to stand out a bit better.

Also trying to work out the front section of where they load the wagons as the poles are right up next to the wagons so seeing if I can try do same and put those stairs in.

Cheers pal

_________________
All my projects are GPLv2 License.
Soot Happens.
Projects: viewtopic.php?f=179&t=811


Top
 Offline Profile  
 
 Post subject: Re: GarryG Does Stations
PostPosted: 17 Sep 2017, 22:14 
Player
Player
User avatar

Joined: 06 Mar 2012, 21:55
Posts: 480
Location: The Netherlands
I want to tick off a couple more items of my to-do list. 8-)

First I am going to start by giving you a template for the largest a station can be built at once (so not via drag&drop), 7x7. With tracks.

I will then explain how to make that fully non-track.

After that I will explain how to do different sizes, this is why I have chosen to start out with the largest option, as it then means deleting graphics from the graphicstemplate and deleting lines of code. Hopefully that way it is easier to understand how it all works (it has recognisable patterns so to say).

Finally, I will get into Multi-tile stations that have tracked and non-tracked parts.

This may all be too much for you to handle Garry, as its a lot of graphics and a huge amount of code!!
It also means a lot of explanation by me. I hope I can do it in an understandable way... :help:
Dont worry if you dont get it at first, at second or maybe even never ;-) This is hard... :oops:
I have standardized the lot now, so if you want a station with a certain size (and maybe with combined tracked/non-tracked tiles), just let me know. I should be able to give you those custom templates rather quick. :W





Ok, here we go:

7x7 Fully Tracked Station
Attachment:
Example364.png
Example364.png [ 147.3 KiB | Viewed 13818 times ]


Templates (graphicsfiles & code):
Attachment:
7x7FullyTrackedStation.rar [78.66 KiB]
Downloaded 397 times

As always, change this in the code:
- Paths/names to graphicsfiles
- Station-IDs (in this example "15")
- Purchasemenu-ID (in this example "AS08")
- The hight of the boundingboxes (to the appropriate hight of the highest structure in the tile)
- Name you want to give to the station
- Name of Purchase Submenu


A little explanation:

* Graphics:

A stationtile for one direction has 2 graphics (the in-front-of-track and the back-of-track graphics) and the other direction has the same. You know that already ;-)

The first two graphics in the file are for the outer-right tile of direction-1 (the beige/green combo), the third and fourth graphics are for the outer-left tile of direction-2 (the green/reddish combo).
These are the startingpoints so to say. After that you get the 4 graphics of the next tiles (2 per direction), and so on and so on.
On a row of graphics in the template are all the other graphics up to 7 tracks wide (so 28 graphics in total).
The first row also has the 2 graphics needed for the purchasemenu.
The next row is to make the station longer, up to 7 rows.
Meaning that for a 7x7 station you get a total of 198 graphics....


These now have to be coded... :help:
I have segmented the code a bit, with some comments between it, to try to keep the various parts of the code a bit clear... Whats what (from top to bottom):

* Code:

//Action-1 Block
Code:
  407 * 6    01 04 01 FF C6 00

Here you have to enter the amount of graphics (in Hexadecimal), in this case 198, which is C6 in Hexadecimal.
This is followed by the graphicssprite information (this is the largest part of the code, I have segmented that per row of graphics).

//Action-0 Block
Code:
  606 * 2484    00 04 08 01 15 08 "AS08" 0B 02 0C BF 0D BF 11 FF 14 00 15 00 09 64

A couple of properties I would like to highlight:
606 * 2484 00 04 08 01 15 08 "AS08" 0B 02 0C BF 0D BF 11 FF 14 00 15 00 09 64
- Property 0C is the number of tracks of the station, its wideness so to say, in this case BF means 7 tracks wide
- Property 0D is the number of platforms of the station, its length so to say, in this case BF means 7 platforms long
- Property 09 is the number of tiles (for both directions, so 7x7x2) 98, plus the 2 sprites for the menu, so a total of 100, which is 64 in Hexadecimal.
This is then followed by the build-sprite information, containing the boundingbox-info, the basesprite info (in this case F4 03 and F3 03 for the tracked groundsprites), which graphic has to go on which tile and the two menusprites.

//Action-2 Block
This is what places which tile where ingame.

Code:
  608 * 34    02 04 01 81 41 0C 0F       06 04 80 01 01 06 80 02 02 08 80 03 03 0A 80 04 04 0C 80 05 05 0E 80 06 06 00 80

This line is for one row/wideness of, in this case, 7 tiles. (you need to repeat this line as many times as you have lengths, the numbers do change though each time, but I will get to that when explaining other sizes)

Code:
  609 * 16    02 04 02 81 41 80 0F 00 07 01 01 00 00 00 18 80

This line is for one length and has to be repeated as many times as the length of the station (in this case 7 times), also with different numbers, but I will get to that later.

//Action-3 Block
Not too important right now, but will be when you have stations of a different length (as then some numbers need to be changed).

//Action-4 Block
Not important, but to be complete, this is where you enter the names of the station and the purchasemenu.




This is enough for now, Ill get more into the details when explaining various sizes.


But lets say you want this station to be fully non-tracked, here is how:

7x7 Fully Non-Tracked Station
Not too difficult actually ;-) You can use the same graphics and code-templates from the above one, just some changes:
* Changes in Graphics:
Well, that speaks for itself, you need to provide full tiled graphics (rather than platform-sized graphics) :twisted:
There is no need to split it up in two parts (front/back of track), you can use the same full-tile graphic for both of those.
Pictures are always clearer than words, so here are the graphicstemplates altered for full non-track use:
Attachment:
GRAPHICS_7x7NONTRACK.rar [74.5 KiB]
Downloaded 378 times


More magic happens in the code:

* Changes in Code:

//Action-0 Block
606 * 2484 00 04 08 01 15 08 "AS08" 0B 02 0C BF 0D BF 11 FF 14 00 15 00 09 64
Change 11 FF to 11 00 to disable Pylons (you probably dont want pylons on a non-track station ;-) )
Change 14 00 to 14 FF to disable Wires (you probably dont want wires on a non-track station ;-) )
Change 15 00 to 15 FF to prevent trains from entering that station (you probably dont want trains inside a non-tracked building ;-) )

Furthermore change the F4 03's and F3 03's in the following build-sprite information to for example 8D 0F (that changes the tracked-basetiles into basetile with grass).
NOTE-1: you dont HAVE to do that, especially if you draw in ground-graphics yourself that fully cover an entire tile, but when you make stations transparent ingame you will see the tracked-graphics and that may be confusing and isnt very tidy ;-)
NOTE-2: You can also use other ground-graphics from OpenGFX-base (like roads).

IMPORTANT: DO NOT ACCIDENTLY ALSO CHANGE THE FIRST TWO BITS OF THE MENU-GRAPHICS INFORMATION IN THAT CODE-BLOCK!!
So these:
Code:
      F1 04 00 80 80 //menu graphic
      F2 04 00 80 80 //menu graphic

Those numbers do something completely different! Will get into that when explaining different sizes of stations.

And thats it, the station is now fully non-tracked! 8-)




I will explain more (various sizes & combination of tracked/non-tracked) tomorrow or Tuesday, my brain hurts and I am hungry.... :shock:


Last edited by Quast65 on 19 Sep 2017, 20:01, edited 1 time in total.

Top
 Offline Profile  
 
 Post subject: Re: GarryG Does Stations
PostPosted: 17 Sep 2017, 23:52 
Expert
Expert
User avatar

Joined: 03 May 2015, 03:27
Posts: 1716
Location: Newcastle, Australia
Thanks kindly my friend for all these. I will be having some fun .. but I like to try finish the coal stage first while I have some ideas in my head ;)

Maybe later in week start the lessons and that also gives me time to think of ideas :mrgreen: and add them to the to-do-list and do them.

The multitile stations be great for making some stations more actuate .. not sure yet if use 7x7 as not many stations in Australia be that long. But should be good for carriage sheds, loco sheds, and freight yards.

Cheers pal

_________________
All my projects are GPLv2 License.
Soot Happens.
Projects: viewtopic.php?f=179&t=811


Top
 Offline Profile  
 
 Post subject: Re: GarryG Does Stations
PostPosted: 18 Sep 2017, 02:43 
Player
Player
User avatar

Joined: 06 Mar 2012, 21:55
Posts: 480
Location: The Netherlands
You dont have to use the 7x7 ;-)
I just need it as a base to explain multiple size stations, as shaving off things is easier than shaving ON things :lol:

That said, time to shave things off!! :twisted: Razors and/or axes ready? Here we go!! 8-)


6x7 Fully Tracked Station
Attachment:
Example365.png
Example365.png [ 83.41 KiB | Viewed 13811 times ]

In this example I am going to show you how to convert the 7x7 templates to a 6x7 station.
So 6 tracks wide, 7 platforms long.
The changes in graphics are fairly easy to understand, the changes in code are a bit more difficult (loads of tiny things need to change and forgetting one of those can have a major impact :help: )
So read carefully, double/triple-check and make sure you have back-ups of your earlier working GRFs!!
Its a lot to take in, but just follow it step by step and you hopefully get a result :W



Lets start with the graphics:
As the station is one track less wide, we need to delete the four last graphics in each row, thats all ;-)

So, copy/paste the 7x7 BASE template, rename it for example to 6x7 Template and save it, then start deleting graphics.
So the BASE-template will look like this (in this case I also changed the menu graphics, so that it says 6x7):
Attachment:
Template_6x7_32bpp_BASE.png
Template_6x7_32bpp_BASE.png [ 122.08 KiB | Viewed 13811 times ]

Select and delete the white and blue and save the graphicsfile as a regular 32bpp template (like you have done often before).
Giving you this:
Attachment:
Template_6x7_32bpp.png
Template_6x7_32bpp.png [ 99.13 KiB | Viewed 13811 times ]

Do the same for the 8bpp template, so copy/paste, rename, save and delete the 4 last graphics on each row.



Now the code:

First, make all the usual changes:
- Paths/names to graphicsfiles
- Station-IDs
- Purchasemenu-ID
- The hight of the boundingboxes (not really necessary right now, that can also be done after creating the station)
- Name you want to give to the station
- Name of Purchase Submenu
That way you wont forget to do that afterwards and it is something you have done often times before, so you should be comfortable with making those changes ;-)

Now the harder part.... I will start again from top to bottom:

//Action-1 Block
Code:
407 * 6    01 04 01 FF C6 00

needs to be changed to
Code:
407 * 6    01 04 01 FF AA 00

As we now have 6x7x4 stationgraphics + 2 menugraphics = 170, which is AA in Hexadecimal.
(Again, the link to the very handy online hexadecimal conversiontool: http://www.statman.info/conversions/hexadecimal.html )

Now the graphicsblock...
I am going to take one of the rows as an example, do the same for the other rows, make sure that you dont delete the Menusprite ones!! ;-)

// Graphics of row-1

408 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 10 12 64 170 -31 -139 normal chunked
| c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 10 12 64 170 -31 -139 normal chunked
409 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 90 12 64 170 -53 -150 normal chunked
| c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 90 12 64 170 -53 -150 normal chunked
410 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 170 12 64 170 -31 -139 normal chunked
| c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 170 12 64 170 -31 -139 normal chunked
411 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 250 12 64 170 -9 -150 normal chunked
| c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 250 12 64 170 -9 -150 normal chunked
412 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 330 12 64 170 -31 -139 normal chunked
| c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 330 12 64 170 -31 -139 normal chunked
413 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 410 12 64 170 -53 -150 normal chunked
| c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 410 12 64 170 -53 -150 normal chunked
414 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 490 12 64 170 -31 -139 normal chunked
| c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 490 12 64 170 -31 -139 normal chunked
415 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 570 12 64 170 -9 -150 normal chunked
| c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 570 12 64 170 -9 -150 normal chunked
416 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 650 12 64 170 -31 -139 normal chunked
| c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 650 12 64 170 -31 -139 normal chunked
417 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 730 12 64 170 -53 -150 normal chunked
| c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 730 12 64 170 -53 -150 normal chunked
418 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 810 12 64 170 -31 -139 normal chunked
| c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 810 12 64 170 -31 -139 normal chunked
419 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 890 12 64 170 -9 -150 normal chunked
| c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 890 12 64 170 -9 -150 normal chunked
420 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 970 12 64 170 -31 -139 normal chunked
| c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 970 12 64 170 -31 -139 normal chunked
421 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 1050 12 64 170 -53 -150 normal chunked
| c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 1050 12 64 170 -53 -150 normal chunked
422 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 1130 12 64 170 -31 -139 normal chunked
| c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 1130 12 64 170 -31 -139 normal chunked
423 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 1210 12 64 170 -9 -150 normal chunked
| c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 1210 12 64 170 -9 -150 normal chunked
424 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 1290 12 64 170 -31 -139 normal chunked
| c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 1290 12 64 170 -31 -139 normal chunked
425 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 1370 12 64 170 -53 -150 normal chunked
| c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 1370 12 64 170 -53 -150 normal chunked
426 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 1450 12 64 170 -31 -139 normal chunked
| c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 1450 12 64 170 -31 -139 normal chunked
427 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 1530 12 64 170 -9 -150 normal chunked
| c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 1530 12 64 170 -9 -150 normal chunked
428 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 1610 12 64 170 -31 -139 normal chunked
| c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 1610 12 64 170 -31 -139 normal chunked
429 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 1690 12 64 170 -53 -150 normal chunked
| c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 1690 12 64 170 -53 -150 normal chunked
430 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 1770 12 64 170 -31 -139 normal chunked
| c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 1770 12 64 170 -31 -139 normal chunked
431 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 1850 12 64 170 -9 -150 normal chunked
| c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 1850 12 64 170 -9 -150 normal chunked
432 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 1930 12 64 170 -31 -139 normal chunked
| c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 1930 12 64 170 -31 -139 normal chunked
433 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 2010 12 64 170 -53 -150 normal chunked
| c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 2010 12 64 170 -53 -150 normal chunked
434 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 2090 12 64 170 -31 -139 normal chunked
| c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 2090 12 64 170 -31 -139 normal chunked
435 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 2170 12 64 170 -9 -150 normal chunked
| c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 2170 12 64 170 -9 -150 normal chunked


Delete the last 8 lines of code in each row (marked in red), again DONT delete the last lines for the menugraphics!!
These 8 lines refer to the last 4 graphics from the 32bpp file and the 8bpp file on each row.
You will then end up with this:
Code:
// Graphics of row-1

  408 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 10 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 10 12 64 170 -31 -139 normal chunked
  409 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  90 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  90 12 64 170 -53 -150 normal chunked
  410 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  170 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  170 12 64 170 -31 -139 normal chunked
  411 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  250 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  250 12 64 170 -9 -150 normal chunked
  412 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  330 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  330 12 64 170 -31 -139 normal chunked
  413 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  410 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  410 12 64 170 -53 -150 normal chunked
  414 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  490 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  490 12 64 170 -31 -139 normal chunked
  415 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  570 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  570 12 64 170 -9 -150 normal chunked
  416 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  650 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  650 12 64 170 -31 -139 normal chunked
  417 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  730 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  730 12 64 170 -53 -150 normal chunked
  418 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  810 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  810 12 64 170 -31 -139 normal chunked
  419 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  890 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  890 12 64 170 -9 -150 normal chunked
  420 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 970 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 970 12 64 170 -31 -139 normal chunked
  421 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1050 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1050 12 64 170 -53 -150 normal chunked
  422 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1130 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1130 12 64 170 -31 -139 normal chunked
  423 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1210 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1210 12 64 170 -9 -150 normal chunked
  424 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1290 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1290 12 64 170 -31 -139 normal chunked
  425 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1370 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1370 12 64 170 -53 -150 normal chunked
  426 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1450 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1450 12 64 170 -31 -139 normal chunked
  427 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1530 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1530 12 64 170 -9 -150 normal chunked
  428 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1610 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1610 12 64 170 -31 -139 normal chunked
  429 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1690 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1690 12 64 170 -53 -150 normal chunked
  430 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1770 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1770 12 64 170 -31 -139 normal chunked
  431 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1850 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1850 12 64 170 -9 -150 normal chunked


// Graphics of row-2

  436 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 10 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 10 362 64 170 -31 -139 normal chunked
  437 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  90 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  90 362 64 170 -53 -150 normal chunked
  438 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  170 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  170 362 64 170 -31 -139 normal chunked
  439 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  250 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  250 362 64 170 -9 -150 normal chunked
  440 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  330 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  330 362 64 170 -31 -139 normal chunked
  441 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  410 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  410 362 64 170 -53 -150 normal chunked
  442 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  490 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  490 362 64 170 -31 -139 normal chunked
  443 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  570 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  570 362 64 170 -9 -150 normal chunked
  444 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  650 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  650 362 64 170 -31 -139 normal chunked
  445 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  730 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  730 362 64 170 -53 -150 normal chunked
  446 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  810 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  810 362 64 170 -31 -139 normal chunked
  447 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  890 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  890 362 64 170 -9 -150 normal chunked
  448 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 970 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 970 362 64 170 -31 -139 normal chunked
  449 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1050 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1050 362 64 170 -53 -150 normal chunked
  450 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1130 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1130 362 64 170 -31 -139 normal chunked
  451 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1210 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1210 362 64 170 -9 -150 normal chunked
  452 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1290 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1290 362 64 170 -31 -139 normal chunked
  453 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1370 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1370 362 64 170 -53 -150 normal chunked
  454 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1450 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1450 362 64 170 -31 -139 normal chunked
  455 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1530 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1530 362 64 170 -9 -150 normal chunked
  456 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1610 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1610 362 64 170 -31 -139 normal chunked
  457 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1690 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1690 362 64 170 -53 -150 normal chunked
  458 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1770 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1770 362 64 170 -31 -139 normal chunked
  459 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1850 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1850 362 64 170 -9 -150 normal chunked



// Graphics of row-3

  464 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 10 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 10 712 64 170 -31 -139 normal chunked
  465 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  90 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  90 712 64 170 -53 -150 normal chunked
  466 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  170 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  170 712 64 170 -31 -139 normal chunked
  467 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  250 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  250 712 64 170 -9 -150 normal chunked
  468 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  330 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  330 712 64 170 -31 -139 normal chunked
  469 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  410 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  410 712 64 170 -53 -150 normal chunked
  470 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  490 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  490 712 64 170 -31 -139 normal chunked
  471 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  570 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  570 712 64 170 -9 -150 normal chunked
  472 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  650 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  650 712 64 170 -31 -139 normal chunked
  473 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  730 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  730 712 64 170 -53 -150 normal chunked
  474 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  810 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  810 712 64 170 -31 -139 normal chunked
  475 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  890 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  890 712 64 170 -9 -150 normal chunked
  476 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 970 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 970 712 64 170 -31 -139 normal chunked
  477 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1050 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1050 712 64 170 -53 -150 normal chunked
  478 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1130 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1130 712 64 170 -31 -139 normal chunked
  479 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1210 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1210 712 64 170 -9 -150 normal chunked
  480 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1290 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1290 712 64 170 -31 -139 normal chunked
  481 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1370 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1370 712 64 170 -53 -150 normal chunked
  482 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1450 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1450 712 64 170 -31 -139 normal chunked
  483 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1530 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1530 712 64 170 -9 -150 normal chunked
  484 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1610 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1610 712 64 170 -31 -139 normal chunked
  485 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1690 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1690 712 64 170 -53 -150 normal chunked
  486 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1770 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1770 712 64 170 -31 -139 normal chunked
  487 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1850 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1850 712 64 170 -9 -150 normal chunked



// Graphics of row-4

  492 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 10 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 10 1062 64 170 -31 -139 normal chunked
  493 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  90 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  90 1062 64 170 -53 -150 normal chunked
  494 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  170 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  170 1062 64 170 -31 -139 normal chunked
  495 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  250 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  250 1062 64 170 -9 -150 normal chunked
  496 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  330 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  330 1062 64 170 -31 -139 normal chunked
  497 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  410 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  410 1062 64 170 -53 -150 normal chunked
  498 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  490 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  490 1062 64 170 -31 -139 normal chunked
  499 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  570 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  570 1062 64 170 -9 -150 normal chunked
  500 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  650 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  650 1062 64 170 -31 -139 normal chunked
  501 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  730 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  730 1062 64 170 -53 -150 normal chunked
  502 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  810 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  810 1062 64 170 -31 -139 normal chunked
  503 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  890 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  890 1062 64 170 -9 -150 normal chunked
  504 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 970 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 970 1062 64 170 -31 -139 normal chunked
  505 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1050 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1050 1062 64 170 -53 -150 normal chunked
  506 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1130 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1130 1062 64 170 -31 -139 normal chunked
  507 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1210 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1210 1062 64 170 -9 -150 normal chunked
  508 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1290 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1290 1062 64 170 -31 -139 normal chunked
  509 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1370 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1370 1062 64 170 -53 -150 normal chunked
  510 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1450 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1450 1062 64 170 -31 -139 normal chunked
  511 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1530 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1530 1062 64 170 -9 -150 normal chunked
  512 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1610 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1610 1062 64 170 -31 -139 normal chunked
  513 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1690 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1690 1062 64 170 -53 -150 normal chunked
  514 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1770 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1770 1062 64 170 -31 -139 normal chunked
  515 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1850 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1850 1062 64 170 -9 -150 normal chunked


// Graphics of row-5

  520 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 10 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 10 1412 64 170 -31 -139 normal chunked
  521 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  90 1412 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  90 1412 64 170 -53 -150 normal chunked
  522 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  170 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  170 1412 64 170 -31 -139 normal chunked
  523 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  250 1412 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  250 1412 64 170 -9 -150 normal chunked
  524 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  330 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  330 1412 64 170 -31 -139 normal chunked
  525 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  410 1412 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  410 1412 64 170 -53 -150 normal chunked
  526 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  490 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  490 1412 64 170 -31 -139 normal chunked
  527 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  570 1412 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  570 1412 64 170 -9 -150 normal chunked
  528 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  650 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  650 1412 64 170 -31 -139 normal chunked
  529 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  730 1412 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  730 1412 64 170 -53 -150 normal chunked
  530 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  810 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  810 1412 64 170 -31 -139 normal chunked
  531 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  890 1412 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  890 1412 64 170 -9 -150 normal chunked
  532 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 970 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 970 1412 64 170 -31 -139 normal chunked
  533 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1050 1412 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1050 1412 64 170 -53 -150 normal chunked
  534 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1130 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1130 1412 64 170 -31 -139 normal chunked
  535 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1210 1412 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1210 1412 64 170 -9 -150 normal chunked
  536 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1290 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1290 1412 64 170 -31 -139 normal chunked
  537 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1370 1412 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1370 1412 64 170 -53 -150 normal chunked
  538 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1450 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1450 1412 64 170 -31 -139 normal chunked
  539 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1530 1412 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1530 1412 64 170 -9 -150 normal chunked
  540 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1610 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1610 1412 64 170 -31 -139 normal chunked
  541 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1690 1412 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1690 1412 64 170 -53 -150 normal chunked
  542 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1770 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1770 1412 64 170 -31 -139 normal chunked
  543 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1850 1412 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1850 1412 64 170 -9 -150 normal chunked



// Graphics of row-6

  548 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 10 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 10 1762 64 170 -31 -139 normal chunked
  549 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  90 1762 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  90 1762 64 170 -53 -150 normal chunked
  550 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  170 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  170 1762 64 170 -31 -139 normal chunked
  551 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  250 1762 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  250 1762 64 170 -9 -150 normal chunked
  552 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  330 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  330 1762 64 170 -31 -139 normal chunked
  553 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  410 1762 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  410 1762 64 170 -53 -150 normal chunked
  554 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  490 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  490 1762 64 170 -31 -139 normal chunked
  555 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  570 1762 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  570 1762 64 170 -9 -150 normal chunked
  556 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  650 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  650 1762 64 170 -31 -139 normal chunked
  557 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  730 1762 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  730 1762 64 170 -53 -150 normal chunked
  558 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  810 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  810 1762 64 170 -31 -139 normal chunked
  559 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  890 1762 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  890 1762 64 170 -9 -150 normal chunked
  560 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 970 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 970 1762 64 170 -31 -139 normal chunked
  561 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1050 1762 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1050 1762 64 170 -53 -150 normal chunked
  562 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1130 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1130 1762 64 170 -31 -139 normal chunked
  563 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1210 1762 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1210 1762 64 170 -9 -150 normal chunked
  564 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1290 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1290 1762 64 170 -31 -139 normal chunked
  565 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1370 1762 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1370 1762 64 170 -53 -150 normal chunked
  566 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1450 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1450 1762 64 170 -31 -139 normal chunked
  567 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1530 1762 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1530 1762 64 170 -9 -150 normal chunked
  568 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1610 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1610 1762 64 170 -31 -139 normal chunked
  569 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1690 1762 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1690 1762 64 170 -53 -150 normal chunked
  570 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1770 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1770 1762 64 170 -31 -139 normal chunked
  571 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1850 1762 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1850 1762 64 170 -9 -150 normal chunked



// Graphics of row-7

  576 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 10 2112 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 10 2112 64 170 -31 -139 normal chunked
  577 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  90 2112 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  90 2112 64 170 -53 -150 normal chunked
  578 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  170 2112 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  170 2112 64 170 -31 -139 normal chunked
  579 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  250 2112 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  250 2112 64 170 -9 -150 normal chunked
  580 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  330 2112 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  330 2112 64 170 -31 -139 normal chunked
  581 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  410 2112 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  410 2112 64 170 -53 -150 normal chunked
  582 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  490 2112 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  490 2112 64 170 -31 -139 normal chunked
  583 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  570 2112 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  570 2112 64 170 -9 -150 normal chunked
  584 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  650 2112 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  650 2112 64 170 -31 -139 normal chunked
  585 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  730 2112 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  730 2112 64 170 -53 -150 normal chunked
  586 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  810 2112 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  810 2112 64 170 -31 -139 normal chunked
  587 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  890 2112 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  890 2112 64 170 -9 -150 normal chunked
  588 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 970 2112 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 970 2112 64 170 -31 -139 normal chunked
  589 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1050 2112 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1050 2112 64 170 -53 -150 normal chunked
  590 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1130 2112 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1130 2112 64 170 -31 -139 normal chunked
  591 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1210 2112 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1210 2112 64 170 -9 -150 normal chunked
  592 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1290 2112 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1290 2112 64 170 -31 -139 normal chunked
  593 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1370 2112 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1370 2112 64 170 -53 -150 normal chunked
  594 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1450 2112 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1450 2112 64 170 -31 -139 normal chunked
  595 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1530 2112 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1530 2112 64 170 -9 -150 normal chunked
  596 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1610 2112 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1610 2112 64 170 -31 -139 normal chunked
  597 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1690 2112 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1690 2112 64 170 -53 -150 normal chunked
  598 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1770 2112 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1770 2112 64 170 -31 -139 normal chunked
  599 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1850 2112 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1850 2112 64 170 -9 -150 normal chunked



//Menu Graphics

  604 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  2250 12 64 46 -31 -15 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  2250 12 64 46 -31 -15 normal chunked
  605 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  2330 12 64 46 -31 -15 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  2330 12 64 46 -31 -15 normal chunked


Easy ;-) Now we move on 8-)

//Action-0 Block
Change
Code:
  606 * 2484    00 04 08 01 16 08 "AS08" 0B 02 0C BF 0D BF 11 FF 14 00 15 00 09 64

to
Code:
  606 * 2484    00 04 08 01 16 08 "AS08" 0B 02 0C DF 0D BF 11 FF 14 00 15 00 09 56

There are two changes in this line:
606 * 2484 00 04 08 01 16 08 "AS08" 0B 02 0C DF 0D BF 11 FF 14 00 15 00 09 56
Property 0C now has value DF, as the station now is 6 tracks wide (DF in this case stands for 6, I will give all the values in another post for reference)
Property 09 now has value 56. We have 6x7x2 stationtiles + 2 menusprites = 86, which in Hexadecimal is 56

Still sounds logical, moving on:

From this block, delete the 14 last lines, indicated in red (as we have 7x2=14 tiles less than the 7x7):

F4 03 00 00 00 00 00 10 05 03 2D 04 00 00 00 0B 00 10 05 03 2E 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 2F 04 00 00 0B 00 00 05 10 03 30 04 00 00 80
F1 04 00 80 80 //menu graphic
F2 04 00 80 80 //menu graphic
F4 03 00 00 00 00 00 10 05 03 31 04 00 00 00 0B 00 10 05 03 32 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 33 04 00 00 0B 00 00 05 10 03 34 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 35 04 00 00 00 0B 00 10 05 03 36 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 37 04 00 00 0B 00 00 05 10 03 38 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 39 04 00 00 00 0B 00 10 05 03 3A 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 3B 04 00 00 0B 00 00 05 10 03 3C 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 3D 04 00 00 00 0B 00 10 05 03 3E 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 3F 04 00 00 0B 00 00 05 10 03 40 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 41 04 00 00 00 0B 00 10 05 03 42 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 43 04 00 00 0B 00 00 05 10 03 44 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 45 04 00 00 00 0B 00 10 05 03 46 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 47 04 00 00 0B 00 00 05 10 03 48 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 49 04 00 00 00 0B 00 10 05 03 4A 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 4B 04 00 00 0B 00 00 05 10 03 4C 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 4D 04 00 00 00 0B 00 10 05 03 4E 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 4F 04 00 00 0B 00 00 05 10 03 50 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 51 04 00 00 00 0B 00 10 05 03 52 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 53 04 00 00 0B 00 00 05 10 03 54 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 55 04 00 00 00 0B 00 10 05 03 56 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 57 04 00 00 0B 00 00 05 10 03 58 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 59 04 00 00 00 0B 00 10 05 03 5A 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 5B 04 00 00 0B 00 00 05 10 03 5C 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 5D 04 00 00 00 0B 00 10 05 03 5E 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 5F 04 00 00 0B 00 00 05 10 03 60 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 61 04 00 00 00 0B 00 10 05 03 62 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 63 04 00 00 0B 00 00 05 10 03 64 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 65 04 00 00 00 0B 00 10 05 03 66 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 67 04 00 00 0B 00 00 05 10 03 68 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 69 04 00 00 00 0B 00 10 05 03 6A 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 6B 04 00 00 0B 00 00 05 10 03 6C 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 6D 04 00 00 00 0B 00 10 05 03 6E 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 6F 04 00 00 0B 00 00 05 10 03 70 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 71 04 00 00 00 0B 00 10 05 03 72 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 73 04 00 00 0B 00 00 05 10 03 74 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 75 04 00 00 00 0B 00 10 05 03 76 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 77 04 00 00 0B 00 00 05 10 03 78 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 79 04 00 00 00 0B 00 10 05 03 7A 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 7B 04 00 00 0B 00 00 05 10 03 7C 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 7D 04 00 00 00 0B 00 10 05 03 7E 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 7F 04 00 00 0B 00 00 05 10 03 80 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 81 04 00 00 00 0B 00 10 05 03 82 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 83 04 00 00 0B 00 00 05 10 03 84 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 85 04 00 00 00 0B 00 10 05 03 86 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 87 04 00 00 0B 00 00 05 10 03 88 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 89 04 00 00 00 0B 00 10 05 03 8A 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 8B 04 00 00 0B 00 00 05 10 03 8C 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 8D 04 00 00 00 0B 00 10 05 03 8E 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 8F 04 00 00 0B 00 00 05 10 03 90 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 91 04 00 00 00 0B 00 10 05 03 92 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 93 04 00 00 0B 00 00 05 10 03 94 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 95 04 00 00 00 0B 00 10 05 03 96 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 97 04 00 00 0B 00 00 05 10 03 98 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 99 04 00 00 00 0B 00 10 05 03 9A 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 9B 04 00 00 0B 00 00 05 10 03 9C 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 9D 04 00 00 00 0B 00 10 05 03 9E 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 9F 04 00 00 0B 00 00 05 10 03 A0 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 A1 04 00 00 00 0B 00 10 05 03 A2 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 A3 04 00 00 0B 00 00 05 10 03 A4 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 A5 04 00 00 00 0B 00 10 05 03 A6 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 A7 04 00 00 0B 00 00 05 10 03 A8 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 A9 04 00 00 00 0B 00 10 05 03 AA 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 AB 04 00 00 0B 00 00 05 10 03 AC 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 AD 04 00 00 00 0B 00 10 05 03 AE 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 AF 04 00 00 0B 00 00 05 10 03 B0 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 B1 04 00 00 00 0B 00 10 05 03 B2 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 B3 04 00 00 0B 00 00 05 10 03 B4 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 B5 04 00 00 00 0B 00 10 05 03 B6 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 B7 04 00 00 0B 00 00 05 10 03 B8 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 B9 04 00 00 00 0B 00 10 05 03 BA 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 BB 04 00 00 0B 00 00 05 10 03 BC 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 BD 04 00 00 00 0B 00 10 05 03 BE 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 BF 04 00 00 0B 00 00 05 10 03 C0 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 C1 04 00 00 00 0B 00 10 05 03 C2 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 C3 04 00 00 0B 00 00 05 10 03 C4 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 C5 04 00 00 00 0B 00 10 05 03 C6 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 C7 04 00 00 0B 00 00 05 10 03 C8 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 C9 04 00 00 00 0B 00 10 05 03 CA 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 CB 04 00 00 0B 00 00 05 10 03 CC 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 CD 04 00 00 00 0B 00 10 05 03 CE 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 CF 04 00 00 0B 00 00 05 10 03 D0 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 D1 04 00 00 00 0B 00 10 05 03 D2 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 D3 04 00 00 0B 00 00 05 10 03 D4 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 D5 04 00 00 00 0B 00 10 05 03 D6 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 D7 04 00 00 0B 00 00 05 10 03 D8 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 D9 04 00 00 00 0B 00 10 05 03 DA 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 DB 04 00 00 0B 00 00 05 10 03 DC 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 DD 04 00 00 00 0B 00 10 05 03 DE 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 DF 04 00 00 0B 00 00 05 10 03 E0 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 E1 04 00 00 00 0B 00 10 05 03 E2 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 E3 04 00 00 0B 00 00 05 10 03 E4 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 E5 04 00 00 00 0B 00 10 05 03 E6 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 E7 04 00 00 0B 00 00 05 10 03 E8 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 E9 04 00 00 00 0B 00 10 05 03 EA 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 EB 04 00 00 0B 00 00 05 10 03 EC 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 ED 04 00 00 00 0B 00 10 05 03 EE 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 EF 04 00 00 0B 00 00 05 10 03 F0 04 00 00 80


Ok, also easy, but now a tiny important thing, the first 2 digits of the //menu graphic have to change.
We now have this line as last for that code-block:
F3 03 00 00 00 00 00 05 10 03 D3 04 00 00 0B 00 00 05 10 03 D4 04 00 00 80
D4 04 is an important number, as the //menu graphic will get the 2 next numbers, so D5 04 and D6 04 (hexadecimal counting)
So this:
Code:
      F1 04 00 80 80 //menu graphic
      F2 04 00 80 80 //menu graphic

Changes to this:
Code:
      D5 04 00 80 80 //menu graphic
      D6 04 00 80 80 //menu graphic


(this now explains why the original numbers were F1 04 and F2 04, as the last number in the block for the 7x7 was F0 04)

So the entire Action-0 block should now look like this:
Code:
//Action-0 Block

  606 * 2484    00 04 08 01 16 08 "AS08" 0B 02 0C DF 0D BF 11 FF 14 00 15 00 09 56
      F4 03 00 00 00 00 00 10 05 03 2D 04 00 00 00 0B 00 10 05 03 2E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 2F 04 00 00 0B 00 00 05 10 03 30 04 00 00 80
      D5 04 00 80 80 //menu graphic
      D6 04 00 80 80 //menu graphic
      F4 03 00 00 00 00 00 10 05 03 31 04 00 00 00 0B 00 10 05 03 32 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 33 04 00 00 0B 00 00 05 10 03 34 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 35 04 00 00 00 0B 00 10 05 03 36 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 37 04 00 00 0B 00 00 05 10 03 38 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 39 04 00 00 00 0B 00 10 05 03 3A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 3B 04 00 00 0B 00 00 05 10 03 3C 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 3D 04 00 00 00 0B 00 10 05 03 3E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 3F 04 00 00 0B 00 00 05 10 03 40 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 41 04 00 00 00 0B 00 10 05 03 42 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 43 04 00 00 0B 00 00 05 10 03 44 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 45 04 00 00 00 0B 00 10 05 03 46 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 47 04 00 00 0B 00 00 05 10 03 48 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 49 04 00 00 00 0B 00 10 05 03 4A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 4B 04 00 00 0B 00 00 05 10 03 4C 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 4D 04 00 00 00 0B 00 10 05 03 4E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 4F 04 00 00 0B 00 00 05 10 03 50 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 51 04 00 00 00 0B 00 10 05 03 52 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 53 04 00 00 0B 00 00 05 10 03 54 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 55 04 00 00 00 0B 00 10 05 03 56 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 57 04 00 00 0B 00 00 05 10 03 58 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 59 04 00 00 00 0B 00 10 05 03 5A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 5B 04 00 00 0B 00 00 05 10 03 5C 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 5D 04 00 00 00 0B 00 10 05 03 5E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 5F 04 00 00 0B 00 00 05 10 03 60 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 61 04 00 00 00 0B 00 10 05 03 62 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 63 04 00 00 0B 00 00 05 10 03 64 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 65 04 00 00 00 0B 00 10 05 03 66 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 67 04 00 00 0B 00 00 05 10 03 68 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 69 04 00 00 00 0B 00 10 05 03 6A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 6B 04 00 00 0B 00 00 05 10 03 6C 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 6D 04 00 00 00 0B 00 10 05 03 6E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 6F 04 00 00 0B 00 00 05 10 03 70 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 71 04 00 00 00 0B 00 10 05 03 72 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 73 04 00 00 0B 00 00 05 10 03 74 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 75 04 00 00 00 0B 00 10 05 03 76 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 77 04 00 00 0B 00 00 05 10 03 78 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 79 04 00 00 00 0B 00 10 05 03 7A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 7B 04 00 00 0B 00 00 05 10 03 7C 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 7D 04 00 00 00 0B 00 10 05 03 7E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 7F 04 00 00 0B 00 00 05 10 03 80 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 81 04 00 00 00 0B 00 10 05 03 82 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 83 04 00 00 0B 00 00 05 10 03 84 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 85 04 00 00 00 0B 00 10 05 03 86 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 87 04 00 00 0B 00 00 05 10 03 88 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 89 04 00 00 00 0B 00 10 05 03 8A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 8B 04 00 00 0B 00 00 05 10 03 8C 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 8D 04 00 00 00 0B 00 10 05 03 8E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 8F 04 00 00 0B 00 00 05 10 03 90 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 91 04 00 00 00 0B 00 10 05 03 92 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 93 04 00 00 0B 00 00 05 10 03 94 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 95 04 00 00 00 0B 00 10 05 03 96 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 97 04 00 00 0B 00 00 05 10 03 98 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 99 04 00 00 00 0B 00 10 05 03 9A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 9B 04 00 00 0B 00 00 05 10 03 9C 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 9D 04 00 00 00 0B 00 10 05 03 9E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 9F 04 00 00 0B 00 00 05 10 03 A0 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 A1 04 00 00 00 0B 00 10 05 03 A2 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 A3 04 00 00 0B 00 00 05 10 03 A4 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 A5 04 00 00 00 0B 00 10 05 03 A6 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 A7 04 00 00 0B 00 00 05 10 03 A8 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 A9 04 00 00 00 0B 00 10 05 03 AA 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 AB 04 00 00 0B 00 00 05 10 03 AC 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 AD 04 00 00 00 0B 00 10 05 03 AE 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 AF 04 00 00 0B 00 00 05 10 03 B0 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 B1 04 00 00 00 0B 00 10 05 03 B2 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 B3 04 00 00 0B 00 00 05 10 03 B4 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 B5 04 00 00 00 0B 00 10 05 03 B6 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 B7 04 00 00 0B 00 00 05 10 03 B8 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 B9 04 00 00 00 0B 00 10 05 03 BA 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 BB 04 00 00 0B 00 00 05 10 03 BC 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 BD 04 00 00 00 0B 00 10 05 03 BE 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 BF 04 00 00 0B 00 00 05 10 03 C0 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 C1 04 00 00 00 0B 00 10 05 03 C2 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 C3 04 00 00 0B 00 00 05 10 03 C4 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 C5 04 00 00 00 0B 00 10 05 03 C6 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 C7 04 00 00 0B 00 00 05 10 03 C8 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 C9 04 00 00 00 0B 00 10 05 03 CA 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 CB 04 00 00 0B 00 00 05 10 03 CC 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 CD 04 00 00 00 0B 00 10 05 03 CE 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 CF 04 00 00 0B 00 00 05 10 03 D0 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 D1 04 00 00 00 0B 00 10 05 03 D2 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 D3 04 00 00 0B 00 00 05 10 03 D4 04 00 00 80


Next (and in this case final changes, but these are a bit harder, be careful!)

//Action-2 Block

In the action-2 Block we now have to shorten the code-lines that refer to the width of the station, these:
607 * 7 02 04 00 00 01 00 00
608 * 34 02 04 01 81 41 0C 0F 06 04 80 01 01 06 80 02 02 08 80 03 03 0A 80 04 04 0C 80 05 05 0E 80 06 06 00 80 //number of tracks (width)
609 * 16 02 04 02 81 41 80 0F 00 07 01 01 00 00 00 18 80 //number of platforms (length)
610 * 34 02 04 03 81 41 0C 0F 06 12 80 01 01 14 80 02 02 16 80 03 03 18 80 04 04 1A 80 05 05 1C 80 06 06 10 80
611 * 16 02 04 04 81 41 80 0F 00 07 01 03 00 01 01 02 00
612 * 34 02 04 05 81 41 0C 0F 06 20 80 01 01 22 80 02 02 24 80 03 03 26 80 04 04 28 80 05 05 2A 80 06 06 1E 80
613 * 16 02 04 06 81 41 80 0F 00 07 01 05 00 02 02 04 00
614 * 34 02 04 07 81 41 0C 0F 06 2E 80 01 01 30 80 02 02 32 80 03 03 34 80 04 04 36 80 05 05 38 80 06 06 2C 80
615 * 16 02 04 08 81 41 80 0F 00 07 01 07 00 03 03 06 00
616 * 34 02 04 09 81 41 0C 0F 06 3C 80 01 01 3E 80 02 02 40 80 03 03 42 80 04 04 44 80 05 05 46 80 06 06 3A 80
617 * 16 02 04 0A 81 41 80 0F 00 07 01 09 00 04 04 08 00
618 * 34 02 04 0B 81 41 0C 0F 06 4A 80 01 01 4C 80 02 02 4E 80 03 03 50 80 04 04 52 80 05 05 54 80 06 06 48 80
619 * 16 02 04 0C 81 41 80 0F 00 07 01 0B 00 05 05 0A 00
620 * 34 02 04 0D 81 41 0C 0F 06 58 80 01 01 5A 80 02 02 5C 80 03 03 5E 80 04 04 60 80 05 05 62 80 06 06 56 80
621 * 16 02 04 0E 81 41 80 0F 00 07 01 0D 00 06 06 0C 00
622 * 14 02 04 0F 81 0C 00 FF 01 0E 00 14 14 00 00

It has to become this:
Code:
//Action-2 Block

  607 * 7    02 04 00 00 01 00 00
  608 * 34    02 04 01 81 41 0C 0F       05 04 80 01 01 06 80 02 02 08 80 03 03 0A 80 04 04 0C 80 05 05 00 80 //number of tracks (width)
  609 * 16    02 04 02 81 41 80 0F 00 07 01 01 00 00 00 18 80 //number of platforms (length)
  610 * 34    02 04 03 81 41 0C 0F       05 10 80 01 01 12 80 02 02 14 80 03 03 16 80 04 04 18 80 05 05 0E 80
  611 * 16    02 04 04 81 41 80 0F 00 07 01 03 00 01 01 02 00
  612 * 34    02 04 05 81 41 0C 0F       05 1C 80 01 01 1E 80 02 02 20 80 03 03 22 80 04 04 24 80 05 05 1A 80
  613 * 16    02 04 06 81 41 80 0F 00 07 01 05 00 02 02 04 00
  614 * 34    02 04 07 81 41 0C 0F       05 28 80 01 01 2A 80 02 02 2C 80 03 03 2E 80 04 04 30 80 05 05 26 80
  615 * 16    02 04 08 81 41 80 0F 00 07 01 07 00 03 03 06 00
  616 * 34    02 04 09 81 41 0C 0F       05 34 80 01 01 36 80 02 02 38 80 03 03 3A 80 04 04 3C 80 05 05 32 80
  617 * 16    02 04 0A 81 41 80 0F 00 07 01 09 00 04 04 08 00
  618 * 34    02 04 0B 81 41 0C 0F       05 40 80 01 01 42 80 02 02 44 80 03 03 46 80 04 04 48 80 05 05 3E 80
  619 * 16    02 04 0C 81 41 80 0F 00 07 01 0B 00 05 05 0A 00
  620 * 34    02 04 0D 81 41 0C 0F       05 4C 80 01 01 4E 80 02 02 50 80 03 03 52 80 04 04 54 80 05 05 4A 80
  621 * 16    02 04 0E 81 41 80 0F 00 07 01 0D 00 06 06 0C 00
  622 * 14    02 04 0F 81 0C 00 FF 01 0E 00 14 14 00 00


What has changed....

The segments marked in red have been deleted (as we are now 1 track less wide):

607 * 7 02 04 00 00 01 00 00
608 * 34 02 04 01 81 41 0C 0F 06 04 80 01 01 06 80 02 02 08 80 03 03 0A 80 04 04 0C 80 05 05 0E 80 06 06 00 80 //number of tracks (width)
609 * 16 02 04 02 81 41 80 0F 00 07 01 01 00 00 00 18 80 //number of platforms (length)
610 * 34 02 04 03 81 41 0C 0F 06 12 80 01 01 14 80 02 02 16 80 03 03 18 80 04 04 1A 80 05 05 1C 80 06 06 10 80
611 * 16 02 04 04 81 41 80 0F 00 07 01 03 00 01 01 02 00
612 * 34 02 04 05 81 41 0C 0F 06 20 80 01 01 22 80 02 02 24 80 03 03 26 80 04 04 28 80 05 05 2A 80 06 06 1E 80
613 * 16 02 04 06 81 41 80 0F 00 07 01 05 00 02 02 04 00
614 * 34 02 04 07 81 41 0C 0F 06 2E 80 01 01 30 80 02 02 32 80 03 03 34 80 04 04 36 80 05 05 38 80 06 06 2C 80
615 * 16 02 04 08 81 41 80 0F 00 07 01 07 00 03 03 06 00
616 * 34 02 04 09 81 41 0C 0F 06 3C 80 01 01 3E 80 02 02 40 80 03 03 42 80 04 04 44 80 05 05 46 80 06 06 3A 80
617 * 16 02 04 0A 81 41 80 0F 00 07 01 09 00 04 04 08 00
618 * 34 02 04 0B 81 41 0C 0F 06 4A 80 01 01 4C 80 02 02 4E 80 03 03 50 80 04 04 52 80 05 05 54 80 06 06 48 80
619 * 16 02 04 0C 81 41 80 0F 00 07 01 0B 00 05 05 0A 00
620 * 34 02 04 0D 81 41 0C 0F 06 58 80 01 01 5A 80 02 02 5C 80 03 03 5E 80 04 04 60 80 05 05 62 80 06 06 56 80
621 * 16 02 04 0E 81 41 80 0F 00 07 01 0D 00 06 06 0C 00
622 * 14 02 04 0F 81 0C 00 FF 01 0E 00 14 14 00 00

These 06's have to change into 05's (one less wide):

607 * 7 02 04 00 00 01 00 00
608 * 34 02 04 01 81 41 0C 0F 06 04 80 01 01 06 80 02 02 08 80 03 03 0A 80 04 04 0C 80 05 05 0E 80 06 06 00 80 //number of tracks (width)
609 * 16 02 04 02 81 41 80 0F 00 07 01 01 00 00 00 18 80 //number of platforms (length)
610 * 34 02 04 03 81 41 0C 0F 06 12 80 01 01 14 80 02 02 16 80 03 03 18 80 04 04 1A 80 05 05 1C 80 06 06 10 80
611 * 16 02 04 04 81 41 80 0F 00 07 01 03 00 01 01 02 00
612 * 34 02 04 05 81 41 0C 0F 06 20 80 01 01 22 80 02 02 24 80 03 03 26 80 04 04 28 80 05 05 2A 80 06 06 1E 80
613 * 16 02 04 06 81 41 80 0F 00 07 01 05 00 02 02 04 00
614 * 34 02 04 07 81 41 0C 0F 06 2E 80 01 01 30 80 02 02 32 80 03 03 34 80 04 04 36 80 05 05 38 80 06 06 2C 80
615 * 16 02 04 08 81 41 80 0F 00 07 01 07 00 03 03 06 00
616 * 34 02 04 09 81 41 0C 0F 06 3C 80 01 01 3E 80 02 02 40 80 03 03 42 80 04 04 44 80 05 05 46 80 06 06 3A 80
617 * 16 02 04 0A 81 41 80 0F 00 07 01 09 00 04 04 08 00
618 * 34 02 04 0B 81 41 0C 0F 06 4A 80 01 01 4C 80 02 02 4E 80 03 03 50 80 04 04 52 80 05 05 54 80 06 06 48 80
619 * 16 02 04 0C 81 41 80 0F 00 07 01 0B 00 05 05 0A 00
620 * 34 02 04 0D 81 41 0C 0F 06 58 80 01 01 5A 80 02 02 5C 80 03 03 5E 80 04 04 60 80 05 05 62 80 06 06 56 80
621 * 16 02 04 0E 81 41 80 0F 00 07 01 0D 00 06 06 0C 00
622 * 14 02 04 0F 81 0C 00 FF 01 0E 00 14 14 00 00

And now the harder part to understand and explain.... :?: :oops:

These numbers (so the numbers in front of a 80) have to change:

607 * 7 02 04 00 00 01 00 00
608 * 34 02 04 01 81 41 0C 0F 06 04 80 01 01 06 80 02 02 08 80 03 03 0A 80 04 04 0C 80 05 05 0E 80 06 06 00 80 //number of tracks (width)
609 * 16 02 04 02 81 41 80 0F 00 07 01 01 00 00 00 18 80 //number of platforms (length)
610 * 34 02 04 03 81 41 0C 0F 06 12 80 01 01 14 80 02 02 16 80 03 03 18 80 04 04 1A 80 05 05 1C 80 06 06 10 80
611 * 16 02 04 04 81 41 80 0F 00 07 01 03 00 01 01 02 00
612 * 34 02 04 05 81 41 0C 0F 06 20 80 01 01 22 80 02 02 24 80 03 03 26 80 04 04 28 80 05 05 2A 80 06 06 1E 80
613 * 16 02 04 06 81 41 80 0F 00 07 01 05 00 02 02 04 00
614 * 34 02 04 07 81 41 0C 0F 06 2E 80 01 01 30 80 02 02 32 80 03 03 34 80 04 04 36 80 05 05 38 80 06 06 2C 80
615 * 16 02 04 08 81 41 80 0F 00 07 01 07 00 03 03 06 00
616 * 34 02 04 09 81 41 0C 0F 06 3C 80 01 01 3E 80 02 02 40 80 03 03 42 80 04 04 44 80 05 05 46 80 06 06 3A 80
617 * 16 02 04 0A 81 41 80 0F 00 07 01 09 00 04 04 08 00
618 * 34 02 04 0B 81 41 0C 0F 06 4A 80 01 01 4C 80 02 02 4E 80 03 03 50 80 04 04 52 80 05 05 54 80 06 06 48 80
619 * 16 02 04 0C 81 41 80 0F 00 07 01 0B 00 05 05 0A 00
620 * 34 02 04 0D 81 41 0C 0F 06 58 80 01 01 5A 80 02 02 5C 80 03 03 5E 80 04 04 60 80 05 05 62 80 06 06 56 80
621 * 16 02 04 0E 81 41 80 0F 00 07 01 0D 00 06 06 0C 00
622 * 14 02 04 0F 81 0C 00 FF 01 0E 00 14 14 00 00

Ill try to explain...
These numbers referr I believe to the tiles in the build-sprite block at the end of the //Action-0 block.
The sequence of those numbers for a 7x7 station is:
Code:
00 04 06 08 0A 0C 0E 10 12 14 16 18 1A 1C 1E 20 22 24 26 28 2A 2C 2E 30 32 34 36 38 3A 3C 3E 40 42 44 46 48 4A 4C 4E 50 52 54 56 58 5A 5C 5E 60 62

Hexadecimal counting, starting with 00 (skipping 02, because of the menugraphics), next up 04 and then upwards, skipping a number each time.
As we have shaven off the last parts of those lines, we have lost a couple of numbers (7 to be exact, no surprise here ;-) ) in the sequence, we now have:
Code:
00 04 06 08 0A 0C 0E 10 12 14 16 18 1A 1C 1E 20 22 24 26 28 2A 2C 2E 30 32 34 36 38 3A 3C 3E 40 42 44 46 48 4A 4C 4E 50 52 54

The hardest part though is that the sequence is not in that order in the codelines, there is a pattern though :P
In the first line of those codes, the last number in front of the 80 is the 00.
The first number in front of the 80 is the 04, then in the case of a 6x7, it goes up to 0C.
Then we move on to the next line of those codes, the last number in front of the 80 is then 0E.
The first number in front of the 80 is then 10, it goes up then again to 18.
In to the third line of those codes, the last number in front of the 80 is then 1A.
The first number in front of the 80 is then 1C, it goes up then again to 24.
Now you should see a pattern emerging ;-)

So in general, when you have shaven off the segments marked in red (shave off more to make a station less wide. Always shave off towards an 80!!), make sure that the last number in front of the 80 is 00, make sure that the first number in front of the 80 is 04, go up, go to the next line, start out at the last number in front of the 80, go to the first one, etc etc etc etc...

In this case the //action-3 and //action-4 dont have to change (//action-3 will change though when you want to make the station shorter, so 7x6 so to say, that will be the next example)
Now, was that so hard? :twisted:
You should now end up with this code:
Code:
//start of 6x7 multitile station
//Action-1 Block

  407 * 6    01 04 01 FF AA 00


// Graphics of row-1

  408 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 10 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 10 12 64 170 -31 -139 normal chunked
  409 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  90 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  90 12 64 170 -53 -150 normal chunked
  410 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  170 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  170 12 64 170 -31 -139 normal chunked
  411 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  250 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  250 12 64 170 -9 -150 normal chunked
  412 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  330 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  330 12 64 170 -31 -139 normal chunked
  413 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  410 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  410 12 64 170 -53 -150 normal chunked
  414 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  490 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  490 12 64 170 -31 -139 normal chunked
  415 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  570 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  570 12 64 170 -9 -150 normal chunked
  416 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  650 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  650 12 64 170 -31 -139 normal chunked
  417 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  730 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  730 12 64 170 -53 -150 normal chunked
  418 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  810 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  810 12 64 170 -31 -139 normal chunked
  419 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  890 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  890 12 64 170 -9 -150 normal chunked
  420 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 970 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 970 12 64 170 -31 -139 normal chunked
  421 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1050 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1050 12 64 170 -53 -150 normal chunked
  422 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1130 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1130 12 64 170 -31 -139 normal chunked
  423 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1210 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1210 12 64 170 -9 -150 normal chunked
  424 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1290 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1290 12 64 170 -31 -139 normal chunked
  425 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1370 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1370 12 64 170 -53 -150 normal chunked
  426 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1450 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1450 12 64 170 -31 -139 normal chunked
  427 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1530 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1530 12 64 170 -9 -150 normal chunked
  428 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1610 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1610 12 64 170 -31 -139 normal chunked
  429 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1690 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1690 12 64 170 -53 -150 normal chunked
  430 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1770 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1770 12 64 170 -31 -139 normal chunked
  431 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1850 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1850 12 64 170 -9 -150 normal chunked


// Graphics of row-2

  436 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 10 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 10 362 64 170 -31 -139 normal chunked
  437 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  90 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  90 362 64 170 -53 -150 normal chunked
  438 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  170 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  170 362 64 170 -31 -139 normal chunked
  439 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  250 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  250 362 64 170 -9 -150 normal chunked
  440 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  330 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  330 362 64 170 -31 -139 normal chunked
  441 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  410 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  410 362 64 170 -53 -150 normal chunked
  442 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  490 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  490 362 64 170 -31 -139 normal chunked
  443 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  570 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  570 362 64 170 -9 -150 normal chunked
  444 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  650 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  650 362 64 170 -31 -139 normal chunked
  445 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  730 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  730 362 64 170 -53 -150 normal chunked
  446 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  810 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  810 362 64 170 -31 -139 normal chunked
  447 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  890 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  890 362 64 170 -9 -150 normal chunked
  448 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 970 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 970 362 64 170 -31 -139 normal chunked
  449 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1050 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1050 362 64 170 -53 -150 normal chunked
  450 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1130 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1130 362 64 170 -31 -139 normal chunked
  451 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1210 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1210 362 64 170 -9 -150 normal chunked
  452 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1290 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1290 362 64 170 -31 -139 normal chunked
  453 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1370 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1370 362 64 170 -53 -150 normal chunked
  454 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1450 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1450 362 64 170 -31 -139 normal chunked
  455 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1530 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1530 362 64 170 -9 -150 normal chunked
  456 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1610 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1610 362 64 170 -31 -139 normal chunked
  457 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1690 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1690 362 64 170 -53 -150 normal chunked
  458 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1770 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1770 362 64 170 -31 -139 normal chunked
  459 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1850 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1850 362 64 170 -9 -150 normal chunked



// Graphics of row-3

  464 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 10 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 10 712 64 170 -31 -139 normal chunked
  465 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  90 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  90 712 64 170 -53 -150 normal chunked
  466 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  170 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  170 712 64 170 -31 -139 normal chunked
  467 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  250 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  250 712 64 170 -9 -150 normal chunked
  468 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  330 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  330 712 64 170 -31 -139 normal chunked
  469 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  410 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  410 712 64 170 -53 -150 normal chunked
  470 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  490 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  490 712 64 170 -31 -139 normal chunked
  471 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  570 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  570 712 64 170 -9 -150 normal chunked
  472 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  650 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  650 712 64 170 -31 -139 normal chunked
  473 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  730 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  730 712 64 170 -53 -150 normal chunked
  474 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  810 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  810 712 64 170 -31 -139 normal chunked
  475 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  890 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  890 712 64 170 -9 -150 normal chunked
  476 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 970 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 970 712 64 170 -31 -139 normal chunked
  477 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1050 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1050 712 64 170 -53 -150 normal chunked
  478 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1130 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1130 712 64 170 -31 -139 normal chunked
  479 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1210 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1210 712 64 170 -9 -150 normal chunked
  480 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1290 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1290 712 64 170 -31 -139 normal chunked
  481 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1370 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1370 712 64 170 -53 -150 normal chunked
  482 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1450 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1450 712 64 170 -31 -139 normal chunked
  483 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1530 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1530 712 64 170 -9 -150 normal chunked
  484 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1610 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1610 712 64 170 -31 -139 normal chunked
  485 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1690 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1690 712 64 170 -53 -150 normal chunked
  486 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1770 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1770 712 64 170 -31 -139 normal chunked
  487 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1850 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1850 712 64 170 -9 -150 normal chunked



// Graphics of row-4

  492 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 10 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 10 1062 64 170 -31 -139 normal chunked
  493 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  90 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  90 1062 64 170 -53 -150 normal chunked
  494 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  170 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  170 1062 64 170 -31 -139 normal chunked
  495 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  250 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  250 1062 64 170 -9 -150 normal chunked
  496 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  330 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  330 1062 64 170 -31 -139 normal chunked
  497 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  410 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  410 1062 64 170 -53 -150 normal chunked
  498 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  490 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  490 1062 64 170 -31 -139 normal chunked
  499 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  570 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  570 1062 64 170 -9 -150 normal chunked
  500 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  650 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  650 1062 64 170 -31 -139 normal chunked
  501 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  730 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  730 1062 64 170 -53 -150 normal chunked
  502 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  810 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  810 1062 64 170 -31 -139 normal chunked
  503 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  890 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  890 1062 64 170 -9 -150 normal chunked
  504 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 970 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 970 1062 64 170 -31 -139 normal chunked
  505 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1050 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1050 1062 64 170 -53 -150 normal chunked
  506 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1130 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1130 1062 64 170 -31 -139 normal chunked
  507 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1210 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1210 1062 64 170 -9 -150 normal chunked
  508 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1290 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1290 1062 64 170 -31 -139 normal chunked
  509 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1370 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1370 1062 64 170 -53 -150 normal chunked
  510 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1450 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1450 1062 64 170 -31 -139 normal chunked
  511 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1530 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1530 1062 64 170 -9 -150 normal chunked
  512 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1610 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1610 1062 64 170 -31 -139 normal chunked
  513 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1690 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1690 1062 64 170 -53 -150 normal chunked
  514 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1770 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1770 1062 64 170 -31 -139 normal chunked
  515 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1850 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1850 1062 64 170 -9 -150 normal chunked


// Graphics of row-5

  520 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 10 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 10 1412 64 170 -31 -139 normal chunked
  521 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  90 1412 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  90 1412 64 170 -53 -150 normal chunked
  522 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  170 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  170 1412 64 170 -31 -139 normal chunked
  523 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  250 1412 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  250 1412 64 170 -9 -150 normal chunked
  524 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  330 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  330 1412 64 170 -31 -139 normal chunked
  525 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  410 1412 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  410 1412 64 170 -53 -150 normal chunked
  526 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  490 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  490 1412 64 170 -31 -139 normal chunked
  527 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  570 1412 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  570 1412 64 170 -9 -150 normal chunked
  528 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  650 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  650 1412 64 170 -31 -139 normal chunked
  529 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  730 1412 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  730 1412 64 170 -53 -150 normal chunked
  530 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  810 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  810 1412 64 170 -31 -139 normal chunked
  531 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  890 1412 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  890 1412 64 170 -9 -150 normal chunked
  532 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 970 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 970 1412 64 170 -31 -139 normal chunked
  533 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1050 1412 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1050 1412 64 170 -53 -150 normal chunked
  534 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1130 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1130 1412 64 170 -31 -139 normal chunked
  535 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1210 1412 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1210 1412 64 170 -9 -150 normal chunked
  536 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1290 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1290 1412 64 170 -31 -139 normal chunked
  537 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1370 1412 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1370 1412 64 170 -53 -150 normal chunked
  538 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1450 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1450 1412 64 170 -31 -139 normal chunked
  539 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1530 1412 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1530 1412 64 170 -9 -150 normal chunked
  540 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1610 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1610 1412 64 170 -31 -139 normal chunked
  541 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1690 1412 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1690 1412 64 170 -53 -150 normal chunked
  542 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1770 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1770 1412 64 170 -31 -139 normal chunked
  543 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1850 1412 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1850 1412 64 170 -9 -150 normal chunked



// Graphics of row-6

  548 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 10 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 10 1762 64 170 -31 -139 normal chunked
  549 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  90 1762 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  90 1762 64 170 -53 -150 normal chunked
  550 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  170 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  170 1762 64 170 -31 -139 normal chunked
  551 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  250 1762 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  250 1762 64 170 -9 -150 normal chunked
  552 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  330 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  330 1762 64 170 -31 -139 normal chunked
  553 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  410 1762 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  410 1762 64 170 -53 -150 normal chunked
  554 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  490 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  490 1762 64 170 -31 -139 normal chunked
  555 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  570 1762 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  570 1762 64 170 -9 -150 normal chunked
  556 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  650 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  650 1762 64 170 -31 -139 normal chunked
  557 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  730 1762 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  730 1762 64 170 -53 -150 normal chunked
  558 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  810 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  810 1762 64 170 -31 -139 normal chunked
  559 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  890 1762 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  890 1762 64 170 -9 -150 normal chunked
  560 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 970 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 970 1762 64 170 -31 -139 normal chunked
  561 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1050 1762 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1050 1762 64 170 -53 -150 normal chunked
  562 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1130 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1130 1762 64 170 -31 -139 normal chunked
  563 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1210 1762 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1210 1762 64 170 -9 -150 normal chunked
  564 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1290 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1290 1762 64 170 -31 -139 normal chunked
  565 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1370 1762 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1370 1762 64 170 -53 -150 normal chunked
  566 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1450 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1450 1762 64 170 -31 -139 normal chunked
  567 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1530 1762 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1530 1762 64 170 -9 -150 normal chunked
  568 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1610 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1610 1762 64 170 -31 -139 normal chunked
  569 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1690 1762 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1690 1762 64 170 -53 -150 normal chunked
  570 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1770 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1770 1762 64 170 -31 -139 normal chunked
  571 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1850 1762 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1850 1762 64 170 -9 -150 normal chunked



// Graphics of row-7

  576 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 10 2112 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 10 2112 64 170 -31 -139 normal chunked
  577 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  90 2112 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  90 2112 64 170 -53 -150 normal chunked
  578 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  170 2112 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  170 2112 64 170 -31 -139 normal chunked
  579 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  250 2112 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  250 2112 64 170 -9 -150 normal chunked
  580 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  330 2112 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  330 2112 64 170 -31 -139 normal chunked
  581 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  410 2112 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  410 2112 64 170 -53 -150 normal chunked
  582 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  490 2112 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  490 2112 64 170 -31 -139 normal chunked
  583 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  570 2112 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  570 2112 64 170 -9 -150 normal chunked
  584 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  650 2112 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  650 2112 64 170 -31 -139 normal chunked
  585 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  730 2112 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  730 2112 64 170 -53 -150 normal chunked
  586 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  810 2112 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  810 2112 64 170 -31 -139 normal chunked
  587 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  890 2112 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  890 2112 64 170 -9 -150 normal chunked
  588 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp 970 2112 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp 970 2112 64 170 -31 -139 normal chunked
  589 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1050 2112 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1050 2112 64 170 -53 -150 normal chunked
  590 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1130 2112 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1130 2112 64 170 -31 -139 normal chunked
  591 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1210 2112 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1210 2112 64 170 -9 -150 normal chunked
  592 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1290 2112 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1290 2112 64 170 -31 -139 normal chunked
  593 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1370 2112 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1370 2112 64 170 -53 -150 normal chunked
  594 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1450 2112 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1450 2112 64 170 -31 -139 normal chunked
  595 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1530 2112 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1530 2112 64 170 -9 -150 normal chunked
  596 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1610 2112 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1610 2112 64 170 -31 -139 normal chunked
  597 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1690 2112 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1690 2112 64 170 -53 -150 normal chunked
  598 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1770 2112 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1770 2112 64 170 -31 -139 normal chunked
  599 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  1850 2112 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  1850 2112 64 170 -9 -150 normal chunked



//Menu Graphics

  604 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  2250 12 64 46 -31 -15 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  2250 12 64 46 -31 -15 normal chunked
  605 c:/grfcodec603/auzstations/gfx/template_6x7_8bpp_EMPTY.png 8bpp  2330 12 64 46 -31 -15 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_6x7_32bpp.png 32bpp  2330 12 64 46 -31 -15 normal chunked


//Action-0 Block

  606 * 2484    00 04 08 01 16 08 "AS08" 0B 02 0C DF 0D BF 11 FF 14 00 15 00 09 56
      F4 03 00 00 00 00 00 10 05 03 2D 04 00 00 00 0B 00 10 05 03 2E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 2F 04 00 00 0B 00 00 05 10 03 30 04 00 00 80
      D5 04 00 80 80 //menu graphic
      D6 04 00 80 80 //menu graphic
      F4 03 00 00 00 00 00 10 05 03 31 04 00 00 00 0B 00 10 05 03 32 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 33 04 00 00 0B 00 00 05 10 03 34 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 35 04 00 00 00 0B 00 10 05 03 36 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 37 04 00 00 0B 00 00 05 10 03 38 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 39 04 00 00 00 0B 00 10 05 03 3A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 3B 04 00 00 0B 00 00 05 10 03 3C 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 3D 04 00 00 00 0B 00 10 05 03 3E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 3F 04 00 00 0B 00 00 05 10 03 40 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 41 04 00 00 00 0B 00 10 05 03 42 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 43 04 00 00 0B 00 00 05 10 03 44 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 45 04 00 00 00 0B 00 10 05 03 46 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 47 04 00 00 0B 00 00 05 10 03 48 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 49 04 00 00 00 0B 00 10 05 03 4A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 4B 04 00 00 0B 00 00 05 10 03 4C 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 4D 04 00 00 00 0B 00 10 05 03 4E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 4F 04 00 00 0B 00 00 05 10 03 50 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 51 04 00 00 00 0B 00 10 05 03 52 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 53 04 00 00 0B 00 00 05 10 03 54 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 55 04 00 00 00 0B 00 10 05 03 56 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 57 04 00 00 0B 00 00 05 10 03 58 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 59 04 00 00 00 0B 00 10 05 03 5A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 5B 04 00 00 0B 00 00 05 10 03 5C 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 5D 04 00 00 00 0B 00 10 05 03 5E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 5F 04 00 00 0B 00 00 05 10 03 60 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 61 04 00 00 00 0B 00 10 05 03 62 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 63 04 00 00 0B 00 00 05 10 03 64 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 65 04 00 00 00 0B 00 10 05 03 66 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 67 04 00 00 0B 00 00 05 10 03 68 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 69 04 00 00 00 0B 00 10 05 03 6A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 6B 04 00 00 0B 00 00 05 10 03 6C 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 6D 04 00 00 00 0B 00 10 05 03 6E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 6F 04 00 00 0B 00 00 05 10 03 70 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 71 04 00 00 00 0B 00 10 05 03 72 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 73 04 00 00 0B 00 00 05 10 03 74 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 75 04 00 00 00 0B 00 10 05 03 76 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 77 04 00 00 0B 00 00 05 10 03 78 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 79 04 00 00 00 0B 00 10 05 03 7A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 7B 04 00 00 0B 00 00 05 10 03 7C 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 7D 04 00 00 00 0B 00 10 05 03 7E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 7F 04 00 00 0B 00 00 05 10 03 80 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 81 04 00 00 00 0B 00 10 05 03 82 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 83 04 00 00 0B 00 00 05 10 03 84 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 85 04 00 00 00 0B 00 10 05 03 86 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 87 04 00 00 0B 00 00 05 10 03 88 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 89 04 00 00 00 0B 00 10 05 03 8A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 8B 04 00 00 0B 00 00 05 10 03 8C 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 8D 04 00 00 00 0B 00 10 05 03 8E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 8F 04 00 00 0B 00 00 05 10 03 90 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 91 04 00 00 00 0B 00 10 05 03 92 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 93 04 00 00 0B 00 00 05 10 03 94 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 95 04 00 00 00 0B 00 10 05 03 96 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 97 04 00 00 0B 00 00 05 10 03 98 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 99 04 00 00 00 0B 00 10 05 03 9A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 9B 04 00 00 0B 00 00 05 10 03 9C 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 9D 04 00 00 00 0B 00 10 05 03 9E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 9F 04 00 00 0B 00 00 05 10 03 A0 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 A1 04 00 00 00 0B 00 10 05 03 A2 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 A3 04 00 00 0B 00 00 05 10 03 A4 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 A5 04 00 00 00 0B 00 10 05 03 A6 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 A7 04 00 00 0B 00 00 05 10 03 A8 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 A9 04 00 00 00 0B 00 10 05 03 AA 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 AB 04 00 00 0B 00 00 05 10 03 AC 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 AD 04 00 00 00 0B 00 10 05 03 AE 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 AF 04 00 00 0B 00 00 05 10 03 B0 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 B1 04 00 00 00 0B 00 10 05 03 B2 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 B3 04 00 00 0B 00 00 05 10 03 B4 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 B5 04 00 00 00 0B 00 10 05 03 B6 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 B7 04 00 00 0B 00 00 05 10 03 B8 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 B9 04 00 00 00 0B 00 10 05 03 BA 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 BB 04 00 00 0B 00 00 05 10 03 BC 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 BD 04 00 00 00 0B 00 10 05 03 BE 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 BF 04 00 00 0B 00 00 05 10 03 C0 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 C1 04 00 00 00 0B 00 10 05 03 C2 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 C3 04 00 00 0B 00 00 05 10 03 C4 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 C5 04 00 00 00 0B 00 10 05 03 C6 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 C7 04 00 00 0B 00 00 05 10 03 C8 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 C9 04 00 00 00 0B 00 10 05 03 CA 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 CB 04 00 00 0B 00 00 05 10 03 CC 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 CD 04 00 00 00 0B 00 10 05 03 CE 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 CF 04 00 00 0B 00 00 05 10 03 D0 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 D1 04 00 00 00 0B 00 10 05 03 D2 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 D3 04 00 00 0B 00 00 05 10 03 D4 04 00 00 80





//Action-2 Block

  607 * 7    02 04 00 00 01 00 00
  608 * 34    02 04 01 81 41 0C 0F       05 04 80 01 01 06 80 02 02 08 80 03 03 0A 80 04 04 0C 80 05 05 00 80 //number of tracks (width)
  609 * 16    02 04 02 81 41 80 0F 00 07 01 01 00 00 00 18 80 //number of platforms (length)
  610 * 34    02 04 03 81 41 0C 0F       05 10 80 01 01 12 80 02 02 14 80 03 03 16 80 04 04 18 80 05 05 0E 80
  611 * 16    02 04 04 81 41 80 0F 00 07 01 03 00 01 01 02 00
  612 * 34    02 04 05 81 41 0C 0F       05 1C 80 01 01 1E 80 02 02 20 80 03 03 22 80 04 04 24 80 05 05 1A 80
  613 * 16    02 04 06 81 41 80 0F 00 07 01 05 00 02 02 04 00
  614 * 34    02 04 07 81 41 0C 0F       05 28 80 01 01 2A 80 02 02 2C 80 03 03 2E 80 04 04 30 80 05 05 26 80
  615 * 16    02 04 08 81 41 80 0F 00 07 01 07 00 03 03 06 00
  616 * 34    02 04 09 81 41 0C 0F       05 34 80 01 01 36 80 02 02 38 80 03 03 3A 80 04 04 3C 80 05 05 32 80
  617 * 16    02 04 0A 81 41 80 0F 00 07 01 09 00 04 04 08 00
  618 * 34    02 04 0B 81 41 0C 0F       05 40 80 01 01 42 80 02 02 44 80 03 03 46 80 04 04 48 80 05 05 3E 80
  619 * 16    02 04 0C 81 41 80 0F 00 07 01 0B 00 05 05 0A 00
  620 * 34    02 04 0D 81 41 0C 0F       05 4C 80 01 01 4E 80 02 02 50 80 03 03 52 80 04 04 54 80 05 05 4A 80
  621 * 16    02 04 0E 81 41 80 0F 00 07 01 0D 00 06 06 0C 00
  622 * 14    02 04 0F 81 0C 00 FF 01 0E 00 14 14 00 00


//Action-3 Block

  623 * 10    03 04 01 16 01 FE 0F 00 00 00


//Action-4 Block

  624 * 19    04 48 FF 01 16 "ÅTEMPLATE 6x7" 00
  625 * 38    04 48 FF 01 16 "ÄAuzStations: Multitile Stations" 00


//end of 6x7 multitile station

Run the code through NFO-renum so that it gets the right codelinenumbers and values for the number of bits used in the lines, compile it to a GRF and you should get a station like the one at the top of this post!! 8-)

Want to make it fully non-track?
Then alter the graphicstemplate of the 7x7 non-track (so delete the last 4 graphics on each row, rename, etc).
Make sure your graphicsblock code refers to the path of those templates now ;-)
And make the changes to the first codeline in the //Action-0 block (like I explained in the previous post) to remove pylons (property 11) and wires (property 14) and to disallow trains to enter the station (property 15).

To be honest, I even screwed up with the code while writing this. :sorry: It was untill the end when I coded it myself that I spotted the mistake, as the order of the tiles of the 6x7 was not the same as that of the 7x7 (as they should be the same, just one trackrow less, a good way though to check if everything is done correctly).
So.... Good luck my friend!! Dont worry if you have difficulty getting this right!! THIS IS HARD!! :lol:


Last edited by Quast65 on 19 Sep 2017, 20:13, edited 3 times in total.

Top
 Offline Profile  
 
 Post subject: Re: GarryG Does Stations
PostPosted: 19 Sep 2017, 07:08 
Expert
Expert
User avatar

Joined: 03 May 2015, 03:27
Posts: 1716
Location: Newcastle, Australia
Usually when you add something to this post I get a email to tell me .. but not this time for this lesson?

Only reason I open this and find, is I want to download all the lessons you made and save all onto a DVD. All the ones I downloaded during the lessons I been using and made the odd change too as I make each new item.

Going to have a break from the coal loader for a few days and see if I can start some of these new lessons. The Custom Foundations should be good to try with subway entrance for the different platform.

Cheers pal

Addition:

Going back through the lessons I see you added a few new notes .. you might have told me before .. but then I forgot to check.

So I recheck some with you here:

Line:
1 * 24 14 "C" "INFO" "B" "PALS" \w1 "W" "B" "BLTR" \w1 "3" 00 00

The "W" should be a "D" in all my files.


35 * 32 04 48 FF 01 00 "ÅTEMPLATE REGULAR PLATFORM" 00
36 * 44 04 48 FF 01 00 "ÄAuzStations: Normal OpenTTD Platforms" 00

The ÅTEMPLATE REGULAR PLATFORM should be C5 "TEMPLATE REGULAR PLATFORM" and

"ÄAuzStations: Normal OpenTTD Platforms" should be C4 "AuzStations: Normal OpenTTD Platforms"

_________________
All my projects are GPLv2 License.
Soot Happens.
Projects: viewtopic.php?f=179&t=811


Top
 Offline Profile  
 
 Post subject: Re: GarryG Does Stations
PostPosted: 19 Sep 2017, 13:54 
Player
Player
User avatar

Joined: 06 Mar 2012, 21:55
Posts: 480
Location: The Netherlands
Quote:
Usually when you add something to this post I get a email to tell me .. but not this time for this lesson?

I think that is because it was not a normal reply, I edited my last post to now include the lesson, to avoid double-posting.
Good to know this though, when there is something important, I will post it as a new reply, so you will get notified!

Quote:
Only reason I open this and find, is I want to download all the lessons you made and save all onto a DVD. All the ones I downloaded during the lessons I been using and made the odd change too as I make each new item.

Handy for those times when the internetconnection fails you ;-)

Quote:
see if I can start some of these new lessons.

No need to rush into them. Like I said I have some spare time at the moment to do this, so I would like to get them done so the thread can go public.
Just read it when you have time and feel like learning something new, dont do them all at once, its a lot to take in.
I will edit the first post everytime I do something new with a link to it, so you can easily find it again.

Quote:
Line:
1 * 24 14 "C" "INFO" "B" "PALS" \w1 "W" "B" "BLTR" \w1 "3" 00 00
The "W" should be a "D" in all my files.

Yes, otherwise the MASK-graphicsfile (to get animated colors in) will probably not work.
At least not when you use my 8bpp templates, as those are Dos-paletted.

Quote:
35 * 32 04 48 FF 01 00 "ÅTEMPLATE REGULAR PLATFORM" 00
36 * 44 04 48 FF 01 00 "ÄAuzStations: Normal OpenTTD Platforms" 00
The ÅTEMPLATE REGULAR PLATFORM should be C5 "TEMPLATE REGULAR PLATFORM" and
"ÄAuzStations: Normal OpenTTD Platforms" should be C4 "AuzStations: Normal OpenTTD Platforms"

Yes, both works, but using C5 and C4 is the way it should be done.
I have not yet tried that out personally, so let me know if that indeed works.


Top
 Offline Profile  
 
 Post subject: Re: GarryG Does Stations
PostPosted: 19 Sep 2017, 14:07 
Expert
Expert
User avatar

Joined: 03 May 2015, 03:27
Posts: 1716
Location: Newcastle, Australia
Hello friend,

Been reading through the 7x7 instructions and then had a go at turning it into a 6x7 .. haven't tested it yet as my fiancée came on line so chatted with her. (She more important then you :lol: )

Hope to practice changing it down a size at a time see how I go.

Then see if can figure out how make platforms shorter :cucko: . Don't tell me yet see if I can work it out.

Those stopping posts I made for stopping a long train at a short platform will be very handy now .. hope to try making some actual stations with platforms if possible to scale and then have those stopping posts so can handle long trains still.

See can't win with coal stages with some of the ideas all the fellas have .. some want new look, some want old look, and last one seems to want new with old look .. :lol:

Cheers pal

Forgot to mention: At the beginning of this course .. please add a warning that doing this course can become Addictive :lol:

A bit more to add:

Changing these works .. I test with the 6x7 tiles and they work too.
Code:
35 * 32 04 48 FF 01 00 "ÅTEMPLATE REGULAR PLATFORM" 00
 36 * 44 04 48 FF 01 00 "ÄAuzStations: Normal OpenTTD Platforms" 00
The ÅTEMPLATE REGULAR PLATFORM should be C5 "TEMPLATE REGULAR PLATFORM" and
"ÄAuzStations: Normal OpenTTD Platforms" should be C4 "AuzStations: Normal OpenTTD Platforms"

_________________
All my projects are GPLv2 License.
Soot Happens.
Projects: viewtopic.php?f=179&t=811


Top
 Offline Profile  
 
 Post subject: Re: GarryG Does Stations
PostPosted: 19 Sep 2017, 14:51 
Player
Player
User avatar

Joined: 06 Mar 2012, 21:55
Posts: 480
Location: The Netherlands
Quote:
haven't tested it yet as my fiancée came on line so chatted with her. (She more important then you :lol: )

That hurt my feelings.... :sorry: :cry:

Quote:
Hope to practice changing it down a size at a time see how I go.

You cant just yet... You need some extra information regarding feature 0C and 0D in the first line of the Action-0. (you need the values for the various widths/lengths) I will give a handy oversight of those values after the next two lessons.

Quote:
Then see if can figure out how make platforms shorter :cucko: . Don't tell me yet see if I can work it out.

You wont... As something completely different has to change in the graphics (that you can probably figure out) but also in the code (that you cant figure out yet ;-) ) That will be my next "lesson".
After that I will give you an example to combine both (so less tracks, less length).

Quote:
See can't win with coal stages with some of the ideas all the fellas have .. some want new look, some want old look, and last one seems to want new with old look ..

Yeah, like I said over at the OpenTTD-forums, I like all of those options, your drawings are too good to choose ;-)

Quote:
Changing these works

Good to know!! :bowing:

Quote:
Forgot to mention: At the beginning of this course .. please add a warning that doing this course can become Addictive :lol:

:twisted:


Top
 Offline Profile  
 
 Post subject: Re: GarryG Does Stations
PostPosted: 19 Sep 2017, 17:01 
Player
Player
User avatar

Joined: 06 Mar 2012, 21:55
Posts: 480
Location: The Netherlands
Ok, time to shorten the station.
This is a tad easier then making it less wide, but it has a catch (mainly in the Action-2 block, but now also in the Action-3 block!!).

Here we go:

7x6 Fully Tracked Station
Attachment:
Example366.png
Example366.png [ 86.4 KiB | Viewed 13800 times ]


I start out again by using the 7x7 graphics & code.

First the Graphics:
Rather simple, shortening the station means losing one row of graphics. 8-)
So in this case delete the last row of graphics (and adjust the menu-graphics, so they say 7x6), giving you a BASE-template that looks like this:
Attachment:
Template_7x6_32bpp_BASE.png
Template_7x6_32bpp_BASE.png [ 117.08 KiB | Viewed 13800 times ]

Delete the white and blue and you will get your 32bpp graphics that will be coded.
Do the same for the 8bpp EMPTY template.

Now the code....

First, make all the usual changes:
- Paths/names to graphicsfiles
- Station-IDs
- Purchasemenu-ID
- The hight of the boundingboxes (not really necessary right now, that can also be done after creating the station)
- Name you want to give to the station
- Name of Purchase Submenu
That way you wont forget to do that afterwards and it is something you have done often times before, so you should be comfortable with making those changes ;-)

Now the harder part.... I will start again from top to bottom:

//Action-1 Block
Code:
407 * 6    01 04 01 FF C6 00

needs to be changed to
Code:
407 * 6    01 04 01 FF AA 00

As we now have 7x6x4 stationgraphics + 2 menugraphics = 170, which is AA in Hexadecimal.
(Again, the link to the very handy online hexadecimal conversiontool: http://www.statman.info/conversions/hexadecimal.html )

Now the graphicsblock...
This is rather simple, just delete the entire block that refers to the last row (row-7).
DO NOT DELETE THE LAST BLOCK THAT REFERS TO THE MENUGRAPHICS!!
You should then end up with this:
Code:
//Action-1 Block

  407 * 6    01 04 01 FF AA 00


// Graphics of row-1

  408 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp 10 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp 10 12 64 170 -31 -139 normal chunked
  409 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  90 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  90 12 64 170 -53 -150 normal chunked
  410 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  170 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  170 12 64 170 -31 -139 normal chunked
  411 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  250 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  250 12 64 170 -9 -150 normal chunked
  412 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  330 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  330 12 64 170 -31 -139 normal chunked
  413 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  410 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  410 12 64 170 -53 -150 normal chunked
  414 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  490 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  490 12 64 170 -31 -139 normal chunked
  415 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  570 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  570 12 64 170 -9 -150 normal chunked
  416 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  650 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  650 12 64 170 -31 -139 normal chunked
  417 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  730 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  730 12 64 170 -53 -150 normal chunked
  418 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  810 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  810 12 64 170 -31 -139 normal chunked
  419 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  890 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  890 12 64 170 -9 -150 normal chunked
  420 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp 970 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp 970 12 64 170 -31 -139 normal chunked
  421 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1050 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1050 12 64 170 -53 -150 normal chunked
  422 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1130 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1130 12 64 170 -31 -139 normal chunked
  423 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1210 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1210 12 64 170 -9 -150 normal chunked
  424 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1290 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1290 12 64 170 -31 -139 normal chunked
  425 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1370 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1370 12 64 170 -53 -150 normal chunked
  426 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1450 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1450 12 64 170 -31 -139 normal chunked
  427 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1530 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1530 12 64 170 -9 -150 normal chunked
  428 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1610 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1610 12 64 170 -31 -139 normal chunked
  429 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1690 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1690 12 64 170 -53 -150 normal chunked
  430 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1770 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1770 12 64 170 -31 -139 normal chunked
  431 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1850 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1850 12 64 170 -9 -150 normal chunked
  432 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1930 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1930 12 64 170 -31 -139 normal chunked
  433 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2010 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2010 12 64 170 -53 -150 normal chunked
  434 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2090 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2090 12 64 170 -31 -139 normal chunked
  435 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2170 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2170 12 64 170 -9 -150 normal chunked

// Graphics of row-2

  436 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp 10 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp 10 362 64 170 -31 -139 normal chunked
  437 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  90 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  90 362 64 170 -53 -150 normal chunked
  438 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  170 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  170 362 64 170 -31 -139 normal chunked
  439 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  250 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  250 362 64 170 -9 -150 normal chunked
  440 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  330 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  330 362 64 170 -31 -139 normal chunked
  441 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  410 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  410 362 64 170 -53 -150 normal chunked
  442 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  490 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  490 362 64 170 -31 -139 normal chunked
  443 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  570 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  570 362 64 170 -9 -150 normal chunked
  444 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  650 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  650 362 64 170 -31 -139 normal chunked
  445 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  730 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  730 362 64 170 -53 -150 normal chunked
  446 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  810 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  810 362 64 170 -31 -139 normal chunked
  447 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  890 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  890 362 64 170 -9 -150 normal chunked
  448 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp 970 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp 970 362 64 170 -31 -139 normal chunked
  449 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1050 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1050 362 64 170 -53 -150 normal chunked
  450 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1130 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1130 362 64 170 -31 -139 normal chunked
  451 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1210 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1210 362 64 170 -9 -150 normal chunked
  452 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1290 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1290 362 64 170 -31 -139 normal chunked
  453 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1370 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1370 362 64 170 -53 -150 normal chunked
  454 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1450 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1450 362 64 170 -31 -139 normal chunked
  455 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1530 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1530 362 64 170 -9 -150 normal chunked
  456 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1610 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1610 362 64 170 -31 -139 normal chunked
  457 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1690 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1690 362 64 170 -53 -150 normal chunked
  458 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1770 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1770 362 64 170 -31 -139 normal chunked
  459 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1850 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1850 362 64 170 -9 -150 normal chunked
  460 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1930 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1930 362 64 170 -31 -139 normal chunked
  461 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2010 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2010 362 64 170 -53 -150 normal chunked
  462 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2090 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2090 362 64 170 -31 -139 normal chunked
  463 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2170 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2170 362 64 170 -9 -150 normal chunked


// Graphics of row-3

  464 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp 10 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp 10 712 64 170 -31 -139 normal chunked
  465 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  90 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  90 712 64 170 -53 -150 normal chunked
  466 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  170 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  170 712 64 170 -31 -139 normal chunked
  467 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  250 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  250 712 64 170 -9 -150 normal chunked
  468 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  330 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  330 712 64 170 -31 -139 normal chunked
  469 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  410 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  410 712 64 170 -53 -150 normal chunked
  470 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  490 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  490 712 64 170 -31 -139 normal chunked
  471 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  570 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  570 712 64 170 -9 -150 normal chunked
  472 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  650 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  650 712 64 170 -31 -139 normal chunked
  473 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  730 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  730 712 64 170 -53 -150 normal chunked
  474 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  810 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  810 712 64 170 -31 -139 normal chunked
  475 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  890 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  890 712 64 170 -9 -150 normal chunked
  476 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp 970 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp 970 712 64 170 -31 -139 normal chunked
  477 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1050 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1050 712 64 170 -53 -150 normal chunked
  478 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1130 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1130 712 64 170 -31 -139 normal chunked
  479 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1210 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1210 712 64 170 -9 -150 normal chunked
  480 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1290 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1290 712 64 170 -31 -139 normal chunked
  481 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1370 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1370 712 64 170 -53 -150 normal chunked
  482 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1450 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1450 712 64 170 -31 -139 normal chunked
  483 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1530 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1530 712 64 170 -9 -150 normal chunked
  484 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1610 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1610 712 64 170 -31 -139 normal chunked
  485 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1690 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1690 712 64 170 -53 -150 normal chunked
  486 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1770 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1770 712 64 170 -31 -139 normal chunked
  487 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1850 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1850 712 64 170 -9 -150 normal chunked
  488 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1930 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1930 712 64 170 -31 -139 normal chunked
  489 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2010 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2010 712 64 170 -53 -150 normal chunked
  490 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2090 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2090 712 64 170 -31 -139 normal chunked
  491 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2170 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2170 712 64 170 -9 -150 normal chunked


// Graphics of row-4

  492 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp 10 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp 10 1062 64 170 -31 -139 normal chunked
  493 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  90 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  90 1062 64 170 -53 -150 normal chunked
  494 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  170 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  170 1062 64 170 -31 -139 normal chunked
  495 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  250 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  250 1062 64 170 -9 -150 normal chunked
  496 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  330 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  330 1062 64 170 -31 -139 normal chunked
  497 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  410 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  410 1062 64 170 -53 -150 normal chunked
  498 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  490 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  490 1062 64 170 -31 -139 normal chunked
  499 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  570 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  570 1062 64 170 -9 -150 normal chunked
  500 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  650 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  650 1062 64 170 -31 -139 normal chunked
  501 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  730 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  730 1062 64 170 -53 -150 normal chunked
  502 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  810 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  810 1062 64 170 -31 -139 normal chunked
  503 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  890 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  890 1062 64 170 -9 -150 normal chunked
  504 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp 970 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp 970 1062 64 170 -31 -139 normal chunked
  505 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1050 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1050 1062 64 170 -53 -150 normal chunked
  506 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1130 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1130 1062 64 170 -31 -139 normal chunked
  507 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1210 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1210 1062 64 170 -9 -150 normal chunked
  508 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1290 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1290 1062 64 170 -31 -139 normal chunked
  509 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1370 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1370 1062 64 170 -53 -150 normal chunked
  510 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1450 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1450 1062 64 170 -31 -139 normal chunked
  511 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1530 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1530 1062 64 170 -9 -150 normal chunked
  512 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1610 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1610 1062 64 170 -31 -139 normal chunked
  513 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1690 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1690 1062 64 170 -53 -150 normal chunked
  514 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1770 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1770 1062 64 170 -31 -139 normal chunked
  515 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1850 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1850 1062 64 170 -9 -150 normal chunked
  516 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1930 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1930 1062 64 170 -31 -139 normal chunked
  517 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2010 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2010 1062 64 170 -53 -150 normal chunked
  518 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2090 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2090 1062 64 170 -31 -139 normal chunked
  519 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2170 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2170 1062 64 170 -9 -150 normal chunked


// Graphics of row-5

  520 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp 10 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp 10 1412 64 170 -31 -139 normal chunked
  521 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  90 1412 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  90 1412 64 170 -53 -150 normal chunked
  522 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  170 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  170 1412 64 170 -31 -139 normal chunked
  523 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  250 1412 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  250 1412 64 170 -9 -150 normal chunked
  524 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  330 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  330 1412 64 170 -31 -139 normal chunked
  525 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  410 1412 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  410 1412 64 170 -53 -150 normal chunked
  526 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  490 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  490 1412 64 170 -31 -139 normal chunked
  527 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  570 1412 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  570 1412 64 170 -9 -150 normal chunked
  528 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  650 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  650 1412 64 170 -31 -139 normal chunked
  529 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  730 1412 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  730 1412 64 170 -53 -150 normal chunked
  530 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  810 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  810 1412 64 170 -31 -139 normal chunked
  531 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  890 1412 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  890 1412 64 170 -9 -150 normal chunked
  532 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp 970 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp 970 1412 64 170 -31 -139 normal chunked
  533 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1050 1412 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1050 1412 64 170 -53 -150 normal chunked
  534 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1130 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1130 1412 64 170 -31 -139 normal chunked
  535 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1210 1412 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1210 1412 64 170 -9 -150 normal chunked
  536 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1290 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1290 1412 64 170 -31 -139 normal chunked
  537 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1370 1412 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1370 1412 64 170 -53 -150 normal chunked
  538 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1450 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1450 1412 64 170 -31 -139 normal chunked
  539 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1530 1412 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1530 1412 64 170 -9 -150 normal chunked
  540 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1610 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1610 1412 64 170 -31 -139 normal chunked
  541 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1690 1412 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1690 1412 64 170 -53 -150 normal chunked
  542 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1770 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1770 1412 64 170 -31 -139 normal chunked
  543 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1850 1412 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1850 1412 64 170 -9 -150 normal chunked
  544 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1930 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1930 1412 64 170 -31 -139 normal chunked
  545 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2010 1412 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2010 1412 64 170 -53 -150 normal chunked
  546 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2090 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2090 1412 64 170 -31 -139 normal chunked
  547 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2170 1412 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2170 1412 64 170 -9 -150 normal chunked


// Graphics of row-6

  548 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp 10 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp 10 1762 64 170 -31 -139 normal chunked
  549 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  90 1762 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  90 1762 64 170 -53 -150 normal chunked
  550 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  170 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  170 1762 64 170 -31 -139 normal chunked
  551 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  250 1762 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  250 1762 64 170 -9 -150 normal chunked
  552 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  330 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  330 1762 64 170 -31 -139 normal chunked
  553 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  410 1762 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  410 1762 64 170 -53 -150 normal chunked
  554 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  490 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  490 1762 64 170 -31 -139 normal chunked
  555 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  570 1762 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  570 1762 64 170 -9 -150 normal chunked
  556 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  650 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  650 1762 64 170 -31 -139 normal chunked
  557 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  730 1762 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  730 1762 64 170 -53 -150 normal chunked
  558 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  810 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  810 1762 64 170 -31 -139 normal chunked
  559 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  890 1762 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  890 1762 64 170 -9 -150 normal chunked
  560 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp 970 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp 970 1762 64 170 -31 -139 normal chunked
  561 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1050 1762 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1050 1762 64 170 -53 -150 normal chunked
  562 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1130 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1130 1762 64 170 -31 -139 normal chunked
  563 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1210 1762 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1210 1762 64 170 -9 -150 normal chunked
  564 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1290 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1290 1762 64 170 -31 -139 normal chunked
  565 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1370 1762 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1370 1762 64 170 -53 -150 normal chunked
  566 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1450 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1450 1762 64 170 -31 -139 normal chunked
  567 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1530 1762 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1530 1762 64 170 -9 -150 normal chunked
  568 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1610 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1610 1762 64 170 -31 -139 normal chunked
  569 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1690 1762 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1690 1762 64 170 -53 -150 normal chunked
  570 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1770 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1770 1762 64 170 -31 -139 normal chunked
  571 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1850 1762 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1850 1762 64 170 -9 -150 normal chunked
  572 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1930 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1930 1762 64 170 -31 -139 normal chunked
  573 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2010 1762 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2010 1762 64 170 -53 -150 normal chunked
  574 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2090 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2090 1762 64 170 -31 -139 normal chunked
  575 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2170 1762 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2170 1762 64 170 -9 -150 normal chunked



//Menu Graphics

  604 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2250 12 64 46 -31 -15 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2250 12 64 46 -31 -15 normal chunked
  605 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2330 12 64 46 -31 -15 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2330 12 64 46 -31 -15 normal chunked


Easy ;-) Now we move on 8-)

//Action-0 Block
Change
Code:
  606 * 2484    00 04 08 01 17 08 "AS08" 0B 02 0C BF 0D BF 11 FF 14 00 15 00 09 64

to
Code:
  606 * 2484    00 04 08 01 17 08 "AS08" 0B 02 0C BF 0D DF 11 FF 14 00 15 00 09 56

There are two changes in this line:
606 * 2484 00 04 08 01 17 08 "AS08" 0B 02 0C BF 0D DF 11 FF 14 00 15 00 09 56
Property 0D now has value DF, as the station now is 6 platforms long (DF in this case stands for 6, I will give all the values in another post for reference)
Property 09 now has value 56. We have 7x6x2 stationtiles + 2 menusprites = 86, which in Hexadecimal is 56

Still sounds logical, moving on:

From this block, delete the 14 last lines, indicated in red (as we have 7x2=14 tiles less than the 7x7):

F4 03 00 00 00 00 00 10 05 03 2D 04 00 00 00 0B 00 10 05 03 2E 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 2F 04 00 00 0B 00 00 05 10 03 30 04 00 00 80
F1 04 00 80 80 //menu graphic
F2 04 00 80 80 //menu graphic
F4 03 00 00 00 00 00 10 05 03 31 04 00 00 00 0B 00 10 05 03 32 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 33 04 00 00 0B 00 00 05 10 03 34 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 35 04 00 00 00 0B 00 10 05 03 36 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 37 04 00 00 0B 00 00 05 10 03 38 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 39 04 00 00 00 0B 00 10 05 03 3A 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 3B 04 00 00 0B 00 00 05 10 03 3C 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 3D 04 00 00 00 0B 00 10 05 03 3E 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 3F 04 00 00 0B 00 00 05 10 03 40 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 41 04 00 00 00 0B 00 10 05 03 42 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 43 04 00 00 0B 00 00 05 10 03 44 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 45 04 00 00 00 0B 00 10 05 03 46 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 47 04 00 00 0B 00 00 05 10 03 48 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 49 04 00 00 00 0B 00 10 05 03 4A 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 4B 04 00 00 0B 00 00 05 10 03 4C 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 4D 04 00 00 00 0B 00 10 05 03 4E 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 4F 04 00 00 0B 00 00 05 10 03 50 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 51 04 00 00 00 0B 00 10 05 03 52 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 53 04 00 00 0B 00 00 05 10 03 54 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 55 04 00 00 00 0B 00 10 05 03 56 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 57 04 00 00 0B 00 00 05 10 03 58 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 59 04 00 00 00 0B 00 10 05 03 5A 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 5B 04 00 00 0B 00 00 05 10 03 5C 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 5D 04 00 00 00 0B 00 10 05 03 5E 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 5F 04 00 00 0B 00 00 05 10 03 60 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 61 04 00 00 00 0B 00 10 05 03 62 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 63 04 00 00 0B 00 00 05 10 03 64 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 65 04 00 00 00 0B 00 10 05 03 66 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 67 04 00 00 0B 00 00 05 10 03 68 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 69 04 00 00 00 0B 00 10 05 03 6A 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 6B 04 00 00 0B 00 00 05 10 03 6C 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 6D 04 00 00 00 0B 00 10 05 03 6E 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 6F 04 00 00 0B 00 00 05 10 03 70 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 71 04 00 00 00 0B 00 10 05 03 72 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 73 04 00 00 0B 00 00 05 10 03 74 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 75 04 00 00 00 0B 00 10 05 03 76 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 77 04 00 00 0B 00 00 05 10 03 78 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 79 04 00 00 00 0B 00 10 05 03 7A 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 7B 04 00 00 0B 00 00 05 10 03 7C 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 7D 04 00 00 00 0B 00 10 05 03 7E 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 7F 04 00 00 0B 00 00 05 10 03 80 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 81 04 00 00 00 0B 00 10 05 03 82 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 83 04 00 00 0B 00 00 05 10 03 84 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 85 04 00 00 00 0B 00 10 05 03 86 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 87 04 00 00 0B 00 00 05 10 03 88 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 89 04 00 00 00 0B 00 10 05 03 8A 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 8B 04 00 00 0B 00 00 05 10 03 8C 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 8D 04 00 00 00 0B 00 10 05 03 8E 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 8F 04 00 00 0B 00 00 05 10 03 90 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 91 04 00 00 00 0B 00 10 05 03 92 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 93 04 00 00 0B 00 00 05 10 03 94 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 95 04 00 00 00 0B 00 10 05 03 96 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 97 04 00 00 0B 00 00 05 10 03 98 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 99 04 00 00 00 0B 00 10 05 03 9A 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 9B 04 00 00 0B 00 00 05 10 03 9C 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 9D 04 00 00 00 0B 00 10 05 03 9E 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 9F 04 00 00 0B 00 00 05 10 03 A0 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 A1 04 00 00 00 0B 00 10 05 03 A2 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 A3 04 00 00 0B 00 00 05 10 03 A4 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 A5 04 00 00 00 0B 00 10 05 03 A6 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 A7 04 00 00 0B 00 00 05 10 03 A8 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 A9 04 00 00 00 0B 00 10 05 03 AA 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 AB 04 00 00 0B 00 00 05 10 03 AC 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 AD 04 00 00 00 0B 00 10 05 03 AE 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 AF 04 00 00 0B 00 00 05 10 03 B0 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 B1 04 00 00 00 0B 00 10 05 03 B2 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 B3 04 00 00 0B 00 00 05 10 03 B4 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 B5 04 00 00 00 0B 00 10 05 03 B6 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 B7 04 00 00 0B 00 00 05 10 03 B8 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 B9 04 00 00 00 0B 00 10 05 03 BA 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 BB 04 00 00 0B 00 00 05 10 03 BC 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 BD 04 00 00 00 0B 00 10 05 03 BE 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 BF 04 00 00 0B 00 00 05 10 03 C0 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 C1 04 00 00 00 0B 00 10 05 03 C2 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 C3 04 00 00 0B 00 00 05 10 03 C4 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 C5 04 00 00 00 0B 00 10 05 03 C6 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 C7 04 00 00 0B 00 00 05 10 03 C8 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 C9 04 00 00 00 0B 00 10 05 03 CA 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 CB 04 00 00 0B 00 00 05 10 03 CC 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 CD 04 00 00 00 0B 00 10 05 03 CE 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 CF 04 00 00 0B 00 00 05 10 03 D0 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 D1 04 00 00 00 0B 00 10 05 03 D2 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 D3 04 00 00 0B 00 00 05 10 03 D4 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 D5 04 00 00 00 0B 00 10 05 03 D6 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 D7 04 00 00 0B 00 00 05 10 03 D8 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 D9 04 00 00 00 0B 00 10 05 03 DA 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 DB 04 00 00 0B 00 00 05 10 03 DC 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 DD 04 00 00 00 0B 00 10 05 03 DE 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 DF 04 00 00 0B 00 00 05 10 03 E0 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 E1 04 00 00 00 0B 00 10 05 03 E2 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 E3 04 00 00 0B 00 00 05 10 03 E4 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 E5 04 00 00 00 0B 00 10 05 03 E6 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 E7 04 00 00 0B 00 00 05 10 03 E8 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 E9 04 00 00 00 0B 00 10 05 03 EA 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 EB 04 00 00 0B 00 00 05 10 03 EC 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 ED 04 00 00 00 0B 00 10 05 03 EE 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 EF 04 00 00 0B 00 00 05 10 03 F0 04 00 00 80


Ok, also easy, but now a tiny important thing, the first 2 digits of the //menu graphic have to change.
We now have this line as last for that code-block:
F3 03 00 00 00 00 00 05 10 03 D3 04 00 00 0B 00 00 05 10 03 D4 04 00 00 80
D4 04 is an important number, as the //menu graphic will get the 2 next numbers, so D5 04 and D6 04 (hexadecimal counting)
So this:
Code:
      F1 04 00 80 80 //menu graphic
      F2 04 00 80 80 //menu graphic

Changes to this:
Code:
      D5 04 00 80 80 //menu graphic
      D6 04 00 80 80 //menu graphic



This all is not that different from making the station less wide, but now there is a difference coming up! :twisted:

//Action-2 Block

In the action-2 Block we now have to delete the code-lines that refer to the last row of platforms of the station, indicated in red:

607 * 7 02 04 00 00 01 00 00
608 * 34 02 04 01 81 41 0C 0F 06 04 80 01 01 06 80 02 02 08 80 03 03 0A 80 04 04 0C 80 05 05 0E 80 06 06 00 80
609 * 16 02 04 02 81 41 80 0F 00 07 01 01 00 00 00 18 80
610 * 34 02 04 03 81 41 0C 0F 06 12 80 01 01 14 80 02 02 16 80 03 03 18 80 04 04 1A 80 05 05 1C 80 06 06 10 80
611 * 16 02 04 04 81 41 80 0F 00 07 01 03 00 01 01 02 00
612 * 34 02 04 05 81 41 0C 0F 06 20 80 01 01 22 80 02 02 24 80 03 03 26 80 04 04 28 80 05 05 2A 80 06 06 1E 80
613 * 16 02 04 06 81 41 80 0F 00 07 01 05 00 02 02 04 00
614 * 34 02 04 07 81 41 0C 0F 06 2E 80 01 01 30 80 02 02 32 80 03 03 34 80 04 04 36 80 05 05 38 80 06 06 2C 80
615 * 16 02 04 08 81 41 80 0F 00 07 01 07 00 03 03 06 00
616 * 34 02 04 09 81 41 0C 0F 06 3C 80 01 01 3E 80 02 02 40 80 03 03 42 80 04 04 44 80 05 05 46 80 06 06 3A 80
617 * 16 02 04 0A 81 41 80 0F 00 07 01 09 00 04 04 08 00
618 * 34 02 04 0B 81 41 0C 0F 06 4A 80 01 01 4C 80 02 02 4E 80 03 03 50 80 04 04 52 80 05 05 54 80 06 06 48 80
619 * 16 02 04 0C 81 41 80 0F 00 07 01 0B 00 05 05 0A 00
620 * 34 02 04 0D 81 41 0C 0F 06 58 80 01 01 5A 80 02 02 5C 80 03 03 5E 80 04 04 60 80 05 05 62 80 06 06 56 80
621 * 16 02 04 0E 81 41 80 0F 00 07 01 0D 00 06 06 0C 00

622 * 14 02 04 0F 81 0C 00 FF 01 0E 00 14 14 00 00

So, two lines of codes refer to one row of platforms!
As you can see in the code for the 7x7, there are 7 of those combinations.
If you want to make the station shorter, then delete more of those combinations (delete them from the bottom upwards).
BE CAREFUL NOT TO DELETE THE LAST LINE OF THE ACTION-2 BLOCK!!!

After that, you need to change the in yellow indicated 07's to 06's (as the station becomes 1 row of platforms less long):

608 * 34 02 04 01 81 41 0C 0F 06 04 80 01 01 06 80 02 02 08 80 03 03 0A 80 04 04 0C 80 05 05 0E 80 06 06 00 80
609 * 16 02 04 02 81 41 80 0F 00 07 01 01 00 00 00 18 80
610 * 34 02 04 03 81 41 0C 0F 06 12 80 01 01 14 80 02 02 16 80 03 03 18 80 04 04 1A 80 05 05 1C 80 06 06 10 80
611 * 16 02 04 04 81 41 80 0F 00 07 01 03 00 01 01 02 00
612 * 34 02 04 05 81 41 0C 0F 06 20 80 01 01 22 80 02 02 24 80 03 03 26 80 04 04 28 80 05 05 2A 80 06 06 1E 80
613 * 16 02 04 06 81 41 80 0F 00 07 01 05 00 02 02 04 00
614 * 34 02 04 07 81 41 0C 0F 06 2E 80 01 01 30 80 02 02 32 80 03 03 34 80 04 04 36 80 05 05 38 80 06 06 2C 80
615 * 16 02 04 08 81 41 80 0F 00 07 01 07 00 03 03 06 00
616 * 34 02 04 09 81 41 0C 0F 06 3C 80 01 01 3E 80 02 02 40 80 03 03 42 80 04 04 44 80 05 05 46 80 06 06 3A 80
617 * 16 02 04 0A 81 41 80 0F 00 07 01 09 00 04 04 08 00
618 * 34 02 04 0B 81 41 0C 0F 06 4A 80 01 01 4C 80 02 02 4E 80 03 03 50 80 04 04 52 80 05 05 54 80 06 06 48 80
619 * 16 02 04 0C 81 41 80 0F 00 07 01 0B 00 05 05 0A 00

But now comes the catch!!!!!!!
The lines of code in the Action-2 block have ID-numbers!!
These (indicated in green):
607 * 7 02 04 00 00 01 00 00
608 * 34 02 04 01 81 41 0C 0F 06 04 80 01 01 06 80 02 02 08 80 03 03 0A 80 04 04 0C 80 05 05 0E 80 06 06 00 80
609 * 16 02 04 02 81 41 80 0F 00 07 01 01 00 00 00 18 80
610 * 34 02 04 03 81 41 0C 0F 06 12 80 01 01 14 80 02 02 16 80 03 03 18 80 04 04 1A 80 05 05 1C 80 06 06 10 80
611 * 16 02 04 04 81 41 80 0F 00 07 01 03 00 01 01 02 00
612 * 34 02 04 05 81 41 0C 0F 06 20 80 01 01 22 80 02 02 24 80 03 03 26 80 04 04 28 80 05 05 2A 80 06 06 1E 80
613 * 16 02 04 06 81 41 80 0F 00 07 01 05 00 02 02 04 00
614 * 34 02 04 07 81 41 0C 0F 06 2E 80 01 01 30 80 02 02 32 80 03 03 34 80 04 04 36 80 05 05 38 80 06 06 2C 80
615 * 16 02 04 08 81 41 80 0F 00 07 01 07 00 03 03 06 00
616 * 34 02 04 09 81 41 0C 0F 06 3C 80 01 01 3E 80 02 02 40 80 03 03 42 80 04 04 44 80 05 05 46 80 06 06 3A 80
617 * 16 02 04 0A 81 41 80 0F 00 07 01 09 00 04 04 08 00
618 * 34 02 04 0B 81 41 0C 0F 06 4A 80 01 01 4C 80 02 02 4E 80 03 03 50 80 04 04 52 80 05 05 54 80 06 06 48 80
619 * 16 02 04 0C 81 41 80 0F 00 07 01 0B 00 05 05 0A 00
620 * 34 02 04 0D 81 41 0C 0F 06 58 80 01 01 5A 80 02 02 5C 80 03 03 5E 80 04 04 60 80 05 05 62 80 06 06 56 80
621 * 16 02 04 0E 81 41 80 0F 00 07 01 0D 00 06 06 0C 00
622 * 14 02 04 0F 81 0C 00 FF 01 0E 00 14 14 00 00

And to one of these numbers is referred to in the last line of the Action-2 block (indicated in blue) AND in the Action-3 block (will get to that)!!!
But we have just deleted two of those lines, meaning we have screwed up the sequence, so what to do?

First, we fix the sequence.
After deleting those two lines, the ID-number before the last line now is 0C, meaning we have to change the ID-number of the last line to 0D (0C+1 in Hexadecimal counting).

Furthermore we have to change the reference (blue 0E).
That has to become the ID-number of the line before the last (so in this case 0C)

After that is all done you should end up with this:
Code:
//Action-2 Block

  607 * 7    02 04 00 00 01 00 00
  608 * 34    02 04 01 81 41 0C 0F       06 04 80 01 01 06 80 02 02 08 80 03 03 0A 80 04 04 0C 80 05 05 0E 80 06 06 00 80
  609 * 16    02 04 02 81 41 80 0F 00 06 01 01 00 00 00 18 80
  610 * 34    02 04 03 81 41 0C 0F       06 12 80 01 01 14 80 02 02 16 80 03 03 18 80 04 04 1A 80 05 05 1C 80 06 06 10 80
  611 * 16    02 04 04 81 41 80 0F 00 06 01 03 00 01 01 02 00
  612 * 34    02 04 05 81 41 0C 0F       06 20 80 01 01 22 80 02 02 24 80 03 03 26 80 04 04 28 80 05 05 2A 80 06 06 1E 80
  613 * 16    02 04 06 81 41 80 0F 00 06 01 05 00 02 02 04 00
  614 * 34    02 04 07 81 41 0C 0F       06 2E 80 01 01 30 80 02 02 32 80 03 03 34 80 04 04 36 80 05 05 38 80 06 06 2C 80
  615 * 16    02 04 08 81 41 80 0F 00 06 01 07 00 03 03 06 00
  616 * 34    02 04 09 81 41 0C 0F       06 3C 80 01 01 3E 80 02 02 40 80 03 03 42 80 04 04 44 80 05 05 46 80 06 06 3A 80
  617 * 16    02 04 0A 81 41 80 0F 00 06 01 09 00 04 04 08 00
  618 * 34    02 04 0B 81 41 0C 0F       06 4A 80 01 01 4C 80 02 02 4E 80 03 03 50 80 04 04 52 80 05 05 54 80 06 06 48 80
  619 * 16    02 04 0C 81 41 80 0F 00 06 01 0B 00 05 05 0A 00
  622 * 14    02 04 0D 81 0C 00 FF 01 0C 00 14 14 00 00


Now we move on to the Action-3.
That looked like this in the 7x7 example code:

623 * 10 03 04 01 15 01 FE 0F 00 00 00

The 0F referred to the ID-number of the last codeline in the Action-2 block.
That now in this case has to change to 0D (or to the ID-number that the last line gets if you make the station even less long).
Be careful, do not just blindly copypaste this line from here, as it also has a station-ID number (in this case the 15)!!
That station-ID number has to be the same ofcourse as the other ones for this station.

The above changes have no effect on the Action-4 block (the names of the station and purchasemenu), so now you should end up with this code:
Code:
//start of 7x6 multitile station

//Action-1 Block

  407 * 6    01 04 01 FF AA 00


// Graphics of row-1

  408 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp 10 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp 10 12 64 170 -31 -139 normal chunked
  409 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  90 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  90 12 64 170 -53 -150 normal chunked
  410 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  170 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  170 12 64 170 -31 -139 normal chunked
  411 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  250 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  250 12 64 170 -9 -150 normal chunked
  412 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  330 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  330 12 64 170 -31 -139 normal chunked
  413 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  410 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  410 12 64 170 -53 -150 normal chunked
  414 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  490 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  490 12 64 170 -31 -139 normal chunked
  415 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  570 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  570 12 64 170 -9 -150 normal chunked
  416 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  650 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  650 12 64 170 -31 -139 normal chunked
  417 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  730 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  730 12 64 170 -53 -150 normal chunked
  418 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  810 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  810 12 64 170 -31 -139 normal chunked
  419 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  890 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  890 12 64 170 -9 -150 normal chunked
  420 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp 970 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp 970 12 64 170 -31 -139 normal chunked
  421 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1050 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1050 12 64 170 -53 -150 normal chunked
  422 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1130 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1130 12 64 170 -31 -139 normal chunked
  423 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1210 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1210 12 64 170 -9 -150 normal chunked
  424 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1290 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1290 12 64 170 -31 -139 normal chunked
  425 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1370 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1370 12 64 170 -53 -150 normal chunked
  426 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1450 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1450 12 64 170 -31 -139 normal chunked
  427 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1530 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1530 12 64 170 -9 -150 normal chunked
  428 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1610 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1610 12 64 170 -31 -139 normal chunked
  429 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1690 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1690 12 64 170 -53 -150 normal chunked
  430 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1770 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1770 12 64 170 -31 -139 normal chunked
  431 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1850 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1850 12 64 170 -9 -150 normal chunked
  432 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1930 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1930 12 64 170 -31 -139 normal chunked
  433 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2010 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2010 12 64 170 -53 -150 normal chunked
  434 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2090 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2090 12 64 170 -31 -139 normal chunked
  435 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2170 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2170 12 64 170 -9 -150 normal chunked

// Graphics of row-2

  436 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp 10 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp 10 362 64 170 -31 -139 normal chunked
  437 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  90 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  90 362 64 170 -53 -150 normal chunked
  438 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  170 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  170 362 64 170 -31 -139 normal chunked
  439 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  250 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  250 362 64 170 -9 -150 normal chunked
  440 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  330 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  330 362 64 170 -31 -139 normal chunked
  441 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  410 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  410 362 64 170 -53 -150 normal chunked
  442 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  490 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  490 362 64 170 -31 -139 normal chunked
  443 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  570 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  570 362 64 170 -9 -150 normal chunked
  444 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  650 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  650 362 64 170 -31 -139 normal chunked
  445 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  730 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  730 362 64 170 -53 -150 normal chunked
  446 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  810 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  810 362 64 170 -31 -139 normal chunked
  447 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  890 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  890 362 64 170 -9 -150 normal chunked
  448 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp 970 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp 970 362 64 170 -31 -139 normal chunked
  449 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1050 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1050 362 64 170 -53 -150 normal chunked
  450 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1130 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1130 362 64 170 -31 -139 normal chunked
  451 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1210 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1210 362 64 170 -9 -150 normal chunked
  452 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1290 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1290 362 64 170 -31 -139 normal chunked
  453 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1370 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1370 362 64 170 -53 -150 normal chunked
  454 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1450 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1450 362 64 170 -31 -139 normal chunked
  455 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1530 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1530 362 64 170 -9 -150 normal chunked
  456 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1610 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1610 362 64 170 -31 -139 normal chunked
  457 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1690 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1690 362 64 170 -53 -150 normal chunked
  458 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1770 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1770 362 64 170 -31 -139 normal chunked
  459 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1850 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1850 362 64 170 -9 -150 normal chunked
  460 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1930 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1930 362 64 170 -31 -139 normal chunked
  461 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2010 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2010 362 64 170 -53 -150 normal chunked
  462 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2090 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2090 362 64 170 -31 -139 normal chunked
  463 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2170 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2170 362 64 170 -9 -150 normal chunked


// Graphics of row-3

  464 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp 10 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp 10 712 64 170 -31 -139 normal chunked
  465 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  90 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  90 712 64 170 -53 -150 normal chunked
  466 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  170 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  170 712 64 170 -31 -139 normal chunked
  467 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  250 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  250 712 64 170 -9 -150 normal chunked
  468 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  330 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  330 712 64 170 -31 -139 normal chunked
  469 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  410 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  410 712 64 170 -53 -150 normal chunked
  470 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  490 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  490 712 64 170 -31 -139 normal chunked
  471 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  570 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  570 712 64 170 -9 -150 normal chunked
  472 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  650 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  650 712 64 170 -31 -139 normal chunked
  473 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  730 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  730 712 64 170 -53 -150 normal chunked
  474 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  810 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  810 712 64 170 -31 -139 normal chunked
  475 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  890 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  890 712 64 170 -9 -150 normal chunked
  476 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp 970 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp 970 712 64 170 -31 -139 normal chunked
  477 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1050 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1050 712 64 170 -53 -150 normal chunked
  478 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1130 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1130 712 64 170 -31 -139 normal chunked
  479 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1210 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1210 712 64 170 -9 -150 normal chunked
  480 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1290 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1290 712 64 170 -31 -139 normal chunked
  481 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1370 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1370 712 64 170 -53 -150 normal chunked
  482 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1450 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1450 712 64 170 -31 -139 normal chunked
  483 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1530 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1530 712 64 170 -9 -150 normal chunked
  484 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1610 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1610 712 64 170 -31 -139 normal chunked
  485 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1690 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1690 712 64 170 -53 -150 normal chunked
  486 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1770 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1770 712 64 170 -31 -139 normal chunked
  487 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1850 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1850 712 64 170 -9 -150 normal chunked
  488 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1930 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1930 712 64 170 -31 -139 normal chunked
  489 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2010 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2010 712 64 170 -53 -150 normal chunked
  490 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2090 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2090 712 64 170 -31 -139 normal chunked
  491 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2170 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2170 712 64 170 -9 -150 normal chunked


// Graphics of row-4

  492 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp 10 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp 10 1062 64 170 -31 -139 normal chunked
  493 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  90 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  90 1062 64 170 -53 -150 normal chunked
  494 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  170 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  170 1062 64 170 -31 -139 normal chunked
  495 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  250 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  250 1062 64 170 -9 -150 normal chunked
  496 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  330 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  330 1062 64 170 -31 -139 normal chunked
  497 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  410 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  410 1062 64 170 -53 -150 normal chunked
  498 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  490 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  490 1062 64 170 -31 -139 normal chunked
  499 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  570 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  570 1062 64 170 -9 -150 normal chunked
  500 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  650 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  650 1062 64 170 -31 -139 normal chunked
  501 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  730 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  730 1062 64 170 -53 -150 normal chunked
  502 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  810 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  810 1062 64 170 -31 -139 normal chunked
  503 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  890 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  890 1062 64 170 -9 -150 normal chunked
  504 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp 970 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp 970 1062 64 170 -31 -139 normal chunked
  505 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1050 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1050 1062 64 170 -53 -150 normal chunked
  506 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1130 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1130 1062 64 170 -31 -139 normal chunked
  507 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1210 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1210 1062 64 170 -9 -150 normal chunked
  508 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1290 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1290 1062 64 170 -31 -139 normal chunked
  509 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1370 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1370 1062 64 170 -53 -150 normal chunked
  510 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1450 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1450 1062 64 170 -31 -139 normal chunked
  511 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1530 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1530 1062 64 170 -9 -150 normal chunked
  512 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1610 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1610 1062 64 170 -31 -139 normal chunked
  513 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1690 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1690 1062 64 170 -53 -150 normal chunked
  514 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1770 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1770 1062 64 170 -31 -139 normal chunked
  515 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1850 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1850 1062 64 170 -9 -150 normal chunked
  516 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1930 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1930 1062 64 170 -31 -139 normal chunked
  517 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2010 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2010 1062 64 170 -53 -150 normal chunked
  518 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2090 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2090 1062 64 170 -31 -139 normal chunked
  519 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2170 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2170 1062 64 170 -9 -150 normal chunked


// Graphics of row-5

  520 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp 10 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp 10 1412 64 170 -31 -139 normal chunked
  521 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  90 1412 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  90 1412 64 170 -53 -150 normal chunked
  522 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  170 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  170 1412 64 170 -31 -139 normal chunked
  523 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  250 1412 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  250 1412 64 170 -9 -150 normal chunked
  524 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  330 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  330 1412 64 170 -31 -139 normal chunked
  525 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  410 1412 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  410 1412 64 170 -53 -150 normal chunked
  526 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  490 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  490 1412 64 170 -31 -139 normal chunked
  527 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  570 1412 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  570 1412 64 170 -9 -150 normal chunked
  528 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  650 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  650 1412 64 170 -31 -139 normal chunked
  529 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  730 1412 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  730 1412 64 170 -53 -150 normal chunked
  530 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  810 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  810 1412 64 170 -31 -139 normal chunked
  531 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  890 1412 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  890 1412 64 170 -9 -150 normal chunked
  532 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp 970 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp 970 1412 64 170 -31 -139 normal chunked
  533 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1050 1412 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1050 1412 64 170 -53 -150 normal chunked
  534 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1130 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1130 1412 64 170 -31 -139 normal chunked
  535 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1210 1412 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1210 1412 64 170 -9 -150 normal chunked
  536 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1290 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1290 1412 64 170 -31 -139 normal chunked
  537 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1370 1412 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1370 1412 64 170 -53 -150 normal chunked
  538 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1450 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1450 1412 64 170 -31 -139 normal chunked
  539 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1530 1412 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1530 1412 64 170 -9 -150 normal chunked
  540 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1610 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1610 1412 64 170 -31 -139 normal chunked
  541 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1690 1412 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1690 1412 64 170 -53 -150 normal chunked
  542 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1770 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1770 1412 64 170 -31 -139 normal chunked
  543 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1850 1412 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1850 1412 64 170 -9 -150 normal chunked
  544 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1930 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1930 1412 64 170 -31 -139 normal chunked
  545 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2010 1412 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2010 1412 64 170 -53 -150 normal chunked
  546 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2090 1412 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2090 1412 64 170 -31 -139 normal chunked
  547 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2170 1412 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2170 1412 64 170 -9 -150 normal chunked


// Graphics of row-6

  548 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp 10 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp 10 1762 64 170 -31 -139 normal chunked
  549 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  90 1762 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  90 1762 64 170 -53 -150 normal chunked
  550 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  170 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  170 1762 64 170 -31 -139 normal chunked
  551 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  250 1762 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  250 1762 64 170 -9 -150 normal chunked
  552 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  330 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  330 1762 64 170 -31 -139 normal chunked
  553 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  410 1762 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  410 1762 64 170 -53 -150 normal chunked
  554 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  490 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  490 1762 64 170 -31 -139 normal chunked
  555 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  570 1762 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  570 1762 64 170 -9 -150 normal chunked
  556 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  650 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  650 1762 64 170 -31 -139 normal chunked
  557 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  730 1762 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  730 1762 64 170 -53 -150 normal chunked
  558 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  810 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  810 1762 64 170 -31 -139 normal chunked
  559 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  890 1762 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  890 1762 64 170 -9 -150 normal chunked
  560 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp 970 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp 970 1762 64 170 -31 -139 normal chunked
  561 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1050 1762 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1050 1762 64 170 -53 -150 normal chunked
  562 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1130 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1130 1762 64 170 -31 -139 normal chunked
  563 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1210 1762 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1210 1762 64 170 -9 -150 normal chunked
  564 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1290 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1290 1762 64 170 -31 -139 normal chunked
  565 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1370 1762 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1370 1762 64 170 -53 -150 normal chunked
  566 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1450 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1450 1762 64 170 -31 -139 normal chunked
  567 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1530 1762 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1530 1762 64 170 -9 -150 normal chunked
  568 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1610 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1610 1762 64 170 -31 -139 normal chunked
  569 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1690 1762 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1690 1762 64 170 -53 -150 normal chunked
  570 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1770 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1770 1762 64 170 -31 -139 normal chunked
  571 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1850 1762 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1850 1762 64 170 -9 -150 normal chunked
  572 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  1930 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  1930 1762 64 170 -31 -139 normal chunked
  573 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2010 1762 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2010 1762 64 170 -53 -150 normal chunked
  574 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2090 1762 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2090 1762 64 170 -31 -139 normal chunked
  575 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2170 1762 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2170 1762 64 170 -9 -150 normal chunked



//Menu Graphics

  604 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2250 12 64 46 -31 -15 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2250 12 64 46 -31 -15 normal chunked
  605 c:/grfcodec603/auzstations/gfx/template_7x6_8bpp_EMPTY.png 8bpp  2330 12 64 46 -31 -15 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_7x6_32bpp.png 32bpp  2330 12 64 46 -31 -15 normal chunked


//Action-0 Block

  606 * 2484    00 04 08 01 17 08 "AS08" 0B 02 0C BF 0D DF 11 FF 14 00 15 00 09 56
      F4 03 00 00 00 00 00 10 05 03 2D 04 00 00 00 0B 00 10 05 03 2E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 2F 04 00 00 0B 00 00 05 10 03 30 04 00 00 80
      D5 04 00 80 80 //menu graphic
      D6 04 00 80 80 //menu graphic
      F4 03 00 00 00 00 00 10 05 03 31 04 00 00 00 0B 00 10 05 03 32 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 33 04 00 00 0B 00 00 05 10 03 34 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 35 04 00 00 00 0B 00 10 05 03 36 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 37 04 00 00 0B 00 00 05 10 03 38 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 39 04 00 00 00 0B 00 10 05 03 3A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 3B 04 00 00 0B 00 00 05 10 03 3C 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 3D 04 00 00 00 0B 00 10 05 03 3E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 3F 04 00 00 0B 00 00 05 10 03 40 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 41 04 00 00 00 0B 00 10 05 03 42 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 43 04 00 00 0B 00 00 05 10 03 44 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 45 04 00 00 00 0B 00 10 05 03 46 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 47 04 00 00 0B 00 00 05 10 03 48 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 49 04 00 00 00 0B 00 10 05 03 4A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 4B 04 00 00 0B 00 00 05 10 03 4C 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 4D 04 00 00 00 0B 00 10 05 03 4E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 4F 04 00 00 0B 00 00 05 10 03 50 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 51 04 00 00 00 0B 00 10 05 03 52 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 53 04 00 00 0B 00 00 05 10 03 54 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 55 04 00 00 00 0B 00 10 05 03 56 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 57 04 00 00 0B 00 00 05 10 03 58 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 59 04 00 00 00 0B 00 10 05 03 5A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 5B 04 00 00 0B 00 00 05 10 03 5C 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 5D 04 00 00 00 0B 00 10 05 03 5E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 5F 04 00 00 0B 00 00 05 10 03 60 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 61 04 00 00 00 0B 00 10 05 03 62 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 63 04 00 00 0B 00 00 05 10 03 64 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 65 04 00 00 00 0B 00 10 05 03 66 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 67 04 00 00 0B 00 00 05 10 03 68 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 69 04 00 00 00 0B 00 10 05 03 6A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 6B 04 00 00 0B 00 00 05 10 03 6C 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 6D 04 00 00 00 0B 00 10 05 03 6E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 6F 04 00 00 0B 00 00 05 10 03 70 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 71 04 00 00 00 0B 00 10 05 03 72 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 73 04 00 00 0B 00 00 05 10 03 74 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 75 04 00 00 00 0B 00 10 05 03 76 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 77 04 00 00 0B 00 00 05 10 03 78 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 79 04 00 00 00 0B 00 10 05 03 7A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 7B 04 00 00 0B 00 00 05 10 03 7C 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 7D 04 00 00 00 0B 00 10 05 03 7E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 7F 04 00 00 0B 00 00 05 10 03 80 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 81 04 00 00 00 0B 00 10 05 03 82 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 83 04 00 00 0B 00 00 05 10 03 84 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 85 04 00 00 00 0B 00 10 05 03 86 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 87 04 00 00 0B 00 00 05 10 03 88 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 89 04 00 00 00 0B 00 10 05 03 8A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 8B 04 00 00 0B 00 00 05 10 03 8C 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 8D 04 00 00 00 0B 00 10 05 03 8E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 8F 04 00 00 0B 00 00 05 10 03 90 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 91 04 00 00 00 0B 00 10 05 03 92 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 93 04 00 00 0B 00 00 05 10 03 94 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 95 04 00 00 00 0B 00 10 05 03 96 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 97 04 00 00 0B 00 00 05 10 03 98 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 99 04 00 00 00 0B 00 10 05 03 9A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 9B 04 00 00 0B 00 00 05 10 03 9C 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 9D 04 00 00 00 0B 00 10 05 03 9E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 9F 04 00 00 0B 00 00 05 10 03 A0 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 A1 04 00 00 00 0B 00 10 05 03 A2 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 A3 04 00 00 0B 00 00 05 10 03 A4 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 A5 04 00 00 00 0B 00 10 05 03 A6 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 A7 04 00 00 0B 00 00 05 10 03 A8 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 A9 04 00 00 00 0B 00 10 05 03 AA 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 AB 04 00 00 0B 00 00 05 10 03 AC 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 AD 04 00 00 00 0B 00 10 05 03 AE 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 AF 04 00 00 0B 00 00 05 10 03 B0 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 B1 04 00 00 00 0B 00 10 05 03 B2 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 B3 04 00 00 0B 00 00 05 10 03 B4 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 B5 04 00 00 00 0B 00 10 05 03 B6 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 B7 04 00 00 0B 00 00 05 10 03 B8 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 B9 04 00 00 00 0B 00 10 05 03 BA 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 BB 04 00 00 0B 00 00 05 10 03 BC 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 BD 04 00 00 00 0B 00 10 05 03 BE 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 BF 04 00 00 0B 00 00 05 10 03 C0 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 C1 04 00 00 00 0B 00 10 05 03 C2 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 C3 04 00 00 0B 00 00 05 10 03 C4 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 C5 04 00 00 00 0B 00 10 05 03 C6 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 C7 04 00 00 0B 00 00 05 10 03 C8 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 C9 04 00 00 00 0B 00 10 05 03 CA 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 CB 04 00 00 0B 00 00 05 10 03 CC 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 CD 04 00 00 00 0B 00 10 05 03 CE 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 CF 04 00 00 0B 00 00 05 10 03 D0 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 D1 04 00 00 00 0B 00 10 05 03 D2 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 D3 04 00 00 0B 00 00 05 10 03 D4 04 00 00 80





//Action-2 Block

  607 * 7    02 04 00 00 01 00 00
  608 * 34    02 04 01 81 41 0C 0F       06 04 80 01 01 06 80 02 02 08 80 03 03 0A 80 04 04 0C 80 05 05 0E 80 06 06 00 80 //number of tracks (width)
  609 * 16    02 04 02 81 41 80 0F 00 06 01 01 00 00 00 18 80 //number of platforms (length)
  610 * 34    02 04 03 81 41 0C 0F       06 12 80 01 01 14 80 02 02 16 80 03 03 18 80 04 04 1A 80 05 05 1C 80 06 06 10 80
  611 * 16    02 04 04 81 41 80 0F 00 06 01 03 00 01 01 02 00
  612 * 34    02 04 05 81 41 0C 0F       06 20 80 01 01 22 80 02 02 24 80 03 03 26 80 04 04 28 80 05 05 2A 80 06 06 1E 80
  613 * 16    02 04 06 81 41 80 0F 00 06 01 05 00 02 02 04 00
  614 * 34    02 04 07 81 41 0C 0F       06 2E 80 01 01 30 80 02 02 32 80 03 03 34 80 04 04 36 80 05 05 38 80 06 06 2C 80
  615 * 16    02 04 08 81 41 80 0F 00 06 01 07 00 03 03 06 00
  616 * 34    02 04 09 81 41 0C 0F       06 3C 80 01 01 3E 80 02 02 40 80 03 03 42 80 04 04 44 80 05 05 46 80 06 06 3A 80
  617 * 16    02 04 0A 81 41 80 0F 00 06 01 09 00 04 04 08 00
  618 * 34    02 04 0B 81 41 0C 0F       06 4A 80 01 01 4C 80 02 02 4E 80 03 03 50 80 04 04 52 80 05 05 54 80 06 06 48 80
  619 * 16    02 04 0C 81 41 80 0F 00 06 01 0B 00 05 05 0A 00

  622 * 14    02 04 0D 81 0C 00 FF 01 0C 00 14 14 00 00


//Action-3 Block

  623 * 10    03 04 01 17 01 FE 0D 00 00 00


//Action-4 Block

  624 * 19    04 48 FF 01 17 C5 "TEMPLATE 7x6" 00
  625 * 38    04 48 FF 01 17 C4 "AuzStations: Multitile Stations" 00


//end of 7x6 multitile station


Run the code through NFO-renum so that it gets the right codelinenumbers and values for the number of bits used in the lines, compile it to a GRF and you should get a station like the one at the top of this post!! 8-)

Want to make it fully non-track?
Then alter the graphicstemplate of the 7x7 non-track (so delete the last row, rename, etc).
Make sure your graphicsblock code refers to the path of those templates now ;-)
And make the changes to the first codeline in the //Action-0 block (like I explained in a previous post) to remove pylons (property 11) and wires (property 14) and to disallow trains to enter the station (property 15).

Good luck!! :W


Last edited by Quast65 on 19 Sep 2017, 20:12, edited 2 times in total.

Top
 Offline Profile  
 
 Post subject: Re: GarryG Does Stations
PostPosted: 19 Sep 2017, 17:44 
Player
Player
User avatar

Joined: 06 Mar 2012, 21:55
Posts: 480
Location: The Netherlands
Before giving you an example of a shorter AND less wide station, I would like to explain something about the values that property 0C (number of tracks) and 0D (number of platforms) can have in the first line of the Action-0:

Explaining values of property 0C and 0D

Those values have more into them than you would think...
We now focus on stations that can just have one certain size, however it is possible to allow multiple sizes for a station and disallow others, an example of that is Tokyo Station in the JapanSet-station set:
Attachment:
Example367.png
Example367.png [ 99.08 KiB | Viewed 13799 times ]

Only 2x5, 2x6 and 2x7 is allowed, all other combinations are disallowed.

Having multiple sizes, also can mean a different appearance (as you can see in the picture).
That is too advanced for me :cucko: I focus only on allowing one certain size (and providing graphics and further code) per station. :oops:

So the values not only mean allowing a certain size, but also disallowing others.
Thats why the values are a bit strange ;-)

It took me a while (by almost running through all the values, and there are loads of them!!) to figure out what values are needed to allow just one certain width (or length). There actually is some sort of logic to them, but that is too hard for me to explain (and I probably have also forgotten it ;-) ).

Here they are:

FE = 1
FD = 2
FB = 3
F7 = 4
EF = 5
DF = 6
BF = 7


So, lets say we want a station 5 tracks wide and 3 platforms long, then OC and OD get these values:
0C EF 0D FB

Or the other way around, so 3 tracks wide, 5 platforms long:
0C FB 0D EF

Or a 4x6
0C F7 0D DF
Etc etc


With this information and the information about how to make a station less wide and long, we should now be able to do all the size combinations possible.


Last edited by Quast65 on 19 Sep 2017, 20:07, edited 1 time in total.

Top
 Offline Profile  
 
 Post subject: Re: GarryG Does Stations
PostPosted: 19 Sep 2017, 19:57 
Player
Player
User avatar

Joined: 06 Mar 2012, 21:55
Posts: 480
Location: The Netherlands
So, ok, lets do one, hmmmmm, a 5x4!!

Example of a 5x4 Station
Attachment:
Example368.png
Example368.png [ 52.36 KiB | Viewed 13796 times ]


So, the graphics:

First delete the last 3 rows (as the station is 3 platforms less long), then delete 8 graphics of the remaining rows (as the station is 2 tracks less wide, 4x2=8), alter the menu-graphics (so it shows 5x4) and name/save the files accordingly.
This is how the BASE template will then look like:
Attachment:
Template_5x4_32bpp_BASE.png
Template_5x4_32bpp_BASE.png [ 104.99 KiB | Viewed 13796 times ]


The code:

//Action-1 Block

Code:
  407 * 6    01 04 01 FF C6 00

becomes
Code:
  407 * 6    01 04 01 FF 52 00

As we now have 5x4x4+2=82 graphics, which is 52 in Hexadecimal.

Then, delete the graphicsblocks of row 5, 6 and 7.

Finally, delete the last 16 lines of code in each remaining row, again DONT delete the last lines for the menugraphics!!
These 16 lines refer to the last 8 graphics from the 32bpp file and the 8bpp file on each row that we deleted.
You will then end up with this:
Code:
//Action-1 Block

  407 * 6    01 04 01 FF 52 00


// Graphics of row-1

  408 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp 10 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp 10 12 64 170 -31 -139 normal chunked
  409 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  90 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  90 12 64 170 -53 -150 normal chunked
  410 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  170 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  170 12 64 170 -31 -139 normal chunked
  411 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  250 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  250 12 64 170 -9 -150 normal chunked
  412 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  330 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  330 12 64 170 -31 -139 normal chunked
  413 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  410 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  410 12 64 170 -53 -150 normal chunked
  414 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  490 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  490 12 64 170 -31 -139 normal chunked
  415 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  570 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  570 12 64 170 -9 -150 normal chunked
  416 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  650 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  650 12 64 170 -31 -139 normal chunked
  417 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  730 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  730 12 64 170 -53 -150 normal chunked
  418 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  810 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  810 12 64 170 -31 -139 normal chunked
  419 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  890 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  890 12 64 170 -9 -150 normal chunked
  420 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp 970 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp 970 12 64 170 -31 -139 normal chunked
  421 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1050 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1050 12 64 170 -53 -150 normal chunked
  422 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1130 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1130 12 64 170 -31 -139 normal chunked
  423 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1210 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1210 12 64 170 -9 -150 normal chunked
  424 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1290 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1290 12 64 170 -31 -139 normal chunked
  425 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1370 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1370 12 64 170 -53 -150 normal chunked
  426 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1450 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1450 12 64 170 -31 -139 normal chunked
  427 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1530 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1530 12 64 170 -9 -150 normal chunked


// Graphics of row-2

  436 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp 10 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp 10 362 64 170 -31 -139 normal chunked
  437 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  90 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  90 362 64 170 -53 -150 normal chunked
  438 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  170 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  170 362 64 170 -31 -139 normal chunked
  439 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  250 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  250 362 64 170 -9 -150 normal chunked
  440 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  330 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  330 362 64 170 -31 -139 normal chunked
  441 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  410 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  410 362 64 170 -53 -150 normal chunked
  442 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  490 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  490 362 64 170 -31 -139 normal chunked
  443 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  570 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  570 362 64 170 -9 -150 normal chunked
  444 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  650 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  650 362 64 170 -31 -139 normal chunked
  445 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  730 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  730 362 64 170 -53 -150 normal chunked
  446 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  810 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  810 362 64 170 -31 -139 normal chunked
  447 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  890 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  890 362 64 170 -9 -150 normal chunked
  448 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp 970 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp 970 362 64 170 -31 -139 normal chunked
  449 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1050 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1050 362 64 170 -53 -150 normal chunked
  450 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1130 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1130 362 64 170 -31 -139 normal chunked
  451 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1210 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1210 362 64 170 -9 -150 normal chunked
  452 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1290 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1290 362 64 170 -31 -139 normal chunked
  453 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1370 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1370 362 64 170 -53 -150 normal chunked
  454 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1450 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1450 362 64 170 -31 -139 normal chunked
  455 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1530 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1530 362 64 170 -9 -150 normal chunked



// Graphics of row-3

  464 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp 10 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp 10 712 64 170 -31 -139 normal chunked
  465 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  90 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  90 712 64 170 -53 -150 normal chunked
  466 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  170 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  170 712 64 170 -31 -139 normal chunked
  467 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  250 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  250 712 64 170 -9 -150 normal chunked
  468 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  330 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  330 712 64 170 -31 -139 normal chunked
  469 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  410 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  410 712 64 170 -53 -150 normal chunked
  470 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  490 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  490 712 64 170 -31 -139 normal chunked
  471 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  570 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  570 712 64 170 -9 -150 normal chunked
  472 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  650 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  650 712 64 170 -31 -139 normal chunked
  473 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  730 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  730 712 64 170 -53 -150 normal chunked
  474 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  810 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  810 712 64 170 -31 -139 normal chunked
  475 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  890 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  890 712 64 170 -9 -150 normal chunked
  476 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp 970 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp 970 712 64 170 -31 -139 normal chunked
  477 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1050 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1050 712 64 170 -53 -150 normal chunked
  478 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1130 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1130 712 64 170 -31 -139 normal chunked
  479 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1210 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1210 712 64 170 -9 -150 normal chunked
  480 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1290 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1290 712 64 170 -31 -139 normal chunked
  481 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1370 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1370 712 64 170 -53 -150 normal chunked
  482 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1450 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1450 712 64 170 -31 -139 normal chunked
  483 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1530 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1530 712 64 170 -9 -150 normal chunked



// Graphics of row-4

  492 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp 10 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp 10 1062 64 170 -31 -139 normal chunked
  493 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  90 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  90 1062 64 170 -53 -150 normal chunked
  494 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  170 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  170 1062 64 170 -31 -139 normal chunked
  495 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  250 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  250 1062 64 170 -9 -150 normal chunked
  496 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  330 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  330 1062 64 170 -31 -139 normal chunked
  497 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  410 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  410 1062 64 170 -53 -150 normal chunked
  498 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  490 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  490 1062 64 170 -31 -139 normal chunked
  499 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  570 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  570 1062 64 170 -9 -150 normal chunked
  500 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  650 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  650 1062 64 170 -31 -139 normal chunked
  501 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  730 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  730 1062 64 170 -53 -150 normal chunked
  502 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  810 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  810 1062 64 170 -31 -139 normal chunked
  503 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  890 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  890 1062 64 170 -9 -150 normal chunked
  504 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp 970 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp 970 1062 64 170 -31 -139 normal chunked
  505 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1050 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1050 1062 64 170 -53 -150 normal chunked
  506 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1130 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1130 1062 64 170 -31 -139 normal chunked
  507 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1210 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1210 1062 64 170 -9 -150 normal chunked
  508 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1290 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1290 1062 64 170 -31 -139 normal chunked
  509 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1370 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1370 1062 64 170 -53 -150 normal chunked
  510 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1450 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1450 1062 64 170 -31 -139 normal chunked
  511 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1530 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1530 1062 64 170 -9 -150 normal chunked




//Menu Graphics

  604 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  2250 12 64 46 -31 -15 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  2250 12 64 46 -31 -15 normal chunked
  605 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  2330 12 64 46 -31 -15 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  2330 12 64 46 -31 -15 normal chunked


//Action-0 Block

Code:
  606 * 2484    00 04 08 01 15 08 "AS08" 0B 02 0C BF 0D BF 11 FF 14 00 15 00 09 64

Becomes
Code:
  606 * 2484    00 04 08 01 18 08 "AS08" 0B 02 0C EF 0D F7 11 FF 14 00 15 00 09 2A

0C BF (7) becomes 0C EF (5)
0D BF (7) becomes 0D F7 (4)
09 64 (7x7x2 tiles +2 menugraphics = 100 = 64 Hexadecimal) becomes 09 2A (5x4x2 tiles + 2 menugraphics = 42 = 2A Hexadecimal)

From the following codeblock delete the last 58 lines (as the station is 29x2 tiles less large than a 7x7).
You should end up with this line as last of that block:

F3 03 00 00 00 00 00 05 10 03 7B 04 00 00 0B 00 00 05 10 03 7C 04 00 00 80

7C 04 is an important number, as the //menu graphic will get the 2 next numbers, so 7D 04 and 7E 04 (hexadecimal counting)
So this:
Code:
      F1 04 00 80 80 //menu graphic
      F2 04 00 80 80 //menu graphic

Becomes
Code:
      7D 04 00 80 80 //menu graphic
      7E 04 00 80 80 //menu graphic


The entire Action-0 block will then look like this:
//Action-0 Block

606 * 2484 00 04 08 01 18 08 "AS08" 0B 02 0C EF 0D F7 11 FF 14 00 15 00 09 2A
F4 03 00 00 00 00 00 10 05 03 2D 04 00 00 00 0B 00 10 05 03 2E 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 2F 04 00 00 0B 00 00 05 10 03 30 04 00 00 80
7D 04 00 80 80 //menu graphic
7E 04 00 80 80 //menu graphic
F4 03 00 00 00 00 00 10 05 03 31 04 00 00 00 0B 00 10 05 03 32 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 33 04 00 00 0B 00 00 05 10 03 34 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 35 04 00 00 00 0B 00 10 05 03 36 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 37 04 00 00 0B 00 00 05 10 03 38 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 39 04 00 00 00 0B 00 10 05 03 3A 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 3B 04 00 00 0B 00 00 05 10 03 3C 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 3D 04 00 00 00 0B 00 10 05 03 3E 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 3F 04 00 00 0B 00 00 05 10 03 40 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 41 04 00 00 00 0B 00 10 05 03 42 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 43 04 00 00 0B 00 00 05 10 03 44 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 45 04 00 00 00 0B 00 10 05 03 46 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 47 04 00 00 0B 00 00 05 10 03 48 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 49 04 00 00 00 0B 00 10 05 03 4A 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 4B 04 00 00 0B 00 00 05 10 03 4C 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 4D 04 00 00 00 0B 00 10 05 03 4E 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 4F 04 00 00 0B 00 00 05 10 03 50 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 51 04 00 00 00 0B 00 10 05 03 52 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 53 04 00 00 0B 00 00 05 10 03 54 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 55 04 00 00 00 0B 00 10 05 03 56 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 57 04 00 00 0B 00 00 05 10 03 58 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 59 04 00 00 00 0B 00 10 05 03 5A 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 5B 04 00 00 0B 00 00 05 10 03 5C 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 5D 04 00 00 00 0B 00 10 05 03 5E 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 5F 04 00 00 0B 00 00 05 10 03 60 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 61 04 00 00 00 0B 00 10 05 03 62 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 63 04 00 00 0B 00 00 05 10 03 64 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 65 04 00 00 00 0B 00 10 05 03 66 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 67 04 00 00 0B 00 00 05 10 03 68 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 69 04 00 00 00 0B 00 10 05 03 6A 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 6B 04 00 00 0B 00 00 05 10 03 6C 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 6D 04 00 00 00 0B 00 10 05 03 6E 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 6F 04 00 00 0B 00 00 05 10 03 70 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 71 04 00 00 00 0B 00 10 05 03 72 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 73 04 00 00 0B 00 00 05 10 03 74 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 75 04 00 00 00 0B 00 10 05 03 76 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 77 04 00 00 0B 00 00 05 10 03 78 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 79 04 00 00 00 0B 00 10 05 03 7A 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 7B 04 00 00 0B 00 00 05 10 03 7C 04 00 00 80
Code:




//Action-2 Block
A lot of changes here!!! Ill try to go through them, step by step.

* First, start out by deleting the 6 lines before the last one, indicated in red (as the station is 3 platforms shorter than the 7x7):

607 * 7 02 04 00 00 01 00 00
608 * 34 02 04 01 81 41 0C 0F 06 04 80 01 01 06 80 02 02 08 80 03 03 0A 80 04 04 0C 80 05 05 0E 80 06 06 00 80 //number of tracks (width)
609 * 16 02 04 02 81 41 80 0F 00 07 01 01 00 00 00 18 80 //number of platforms (length)
610 * 34 02 04 03 81 41 0C 0F 06 12 80 01 01 14 80 02 02 16 80 03 03 18 80 04 04 1A 80 05 05 1C 80 06 06 10 80
611 * 16 02 04 04 81 41 80 0F 00 07 01 03 00 01 01 02 00
612 * 34 02 04 05 81 41 0C 0F 06 20 80 01 01 22 80 02 02 24 80 03 03 26 80 04 04 28 80 05 05 2A 80 06 06 1E 80
613 * 16 02 04 06 81 41 80 0F 00 07 01 05 00 02 02 04 00
614 * 34 02 04 07 81 41 0C 0F 06 2E 80 01 01 30 80 02 02 32 80 03 03 34 80 04 04 36 80 05 05 38 80 06 06 2C 80
615 * 16 02 04 08 81 41 80 0F 00 07 01 07 00 03 03 06 00
616 * 34 02 04 09 81 41 0C 0F 06 3C 80 01 01 3E 80 02 02 40 80 03 03 42 80 04 04 44 80 05 05 46 80 06 06 3A 80
617 * 16 02 04 0A 81 41 80 0F 00 07 01 09 00 04 04 08 00
618 * 34 02 04 0B 81 41 0C 0F 06 4A 80 01 01 4C 80 02 02 4E 80 03 03 50 80 04 04 52 80 05 05 54 80 06 06 48 80
619 * 16 02 04 0C 81 41 80 0F 00 07 01 0B 00 05 05 0A 00
620 * 34 02 04 0D 81 41 0C 0F 06 58 80 01 01 5A 80 02 02 5C 80 03 03 5E 80 04 04 60 80 05 05 62 80 06 06 56 80
621 * 16 02 04 0E 81 41 80 0F 00 07 01 0D 00 06 06 0C 00

622 * 14 02 04 0F 81 0C 00 FF 01 0E 00 14 14 00 00

* now we fix the sequence.
After deleting those six lines, the ID-number before the last line now is 08, meaning we have to change the ID-number of the last line 0F to 09 (08+1 in Hexadecimal counting).

Furthermore we have to change the reference (blue 0E).
That has to become the ID-number of the line before the last (so in this case 08)

* So we now have this:

607 * 7 02 04 00 00 01 00 00
608 * 34 02 04 01 81 41 0C 0F 06 04 80 01 01 06 80 02 02 08 80 03 03 0A 80 04 04 0C 80 05 05 0E 80 06 06 00 80
609 * 16 02 04 02 81 41 80 0F 00 07 01 01 00 00 00 18 80
610 * 34 02 04 03 81 41 0C 0F 06 12 80 01 01 14 80 02 02 16 80 03 03 18 80 04 04 1A 80 05 05 1C 80 06 06 10 80
611 * 16 02 04 04 81 41 80 0F 00 07 01 03 00 01 01 02 00
612 * 34 02 04 05 81 41 0C 0F 06 20 80 01 01 22 80 02 02 24 80 03 03 26 80 04 04 28 80 05 05 2A 80 06 06 1E 80
613 * 16 02 04 06 81 41 80 0F 00 07 01 05 00 02 02 04 00
614 * 34 02 04 07 81 41 0C 0F 06 2E 80 01 01 30 80 02 02 32 80 03 03 34 80 04 04 36 80 05 05 38 80 06 06 2C 80
615 * 16 02 04 08 81 41 80 0F 00 07 01 07 00 03 03 06 00
622 * 14 02 04 09 81 0C 00 FF 01 08 00 14 14 00 00

- Change the 06 (indicated in green) to 04 (2 tracks less wide)
- Change the 07 (indicated in yellow) to 04 (3 platforms less long)
- Shave off the segments marked in red, in this case 2 segments as the station is 2 tracks less wide (Always shave off towards an 80!!)

* We now have this:

607 * 7 02 04 00 00 01 00 00
608 * 34 02 04 01 81 41 0C 0F 04 04 80 01 01 06 80 02 02 08 80 03 03 0A 80 04 04 0C 80
609 * 16 02 04 02 81 41 80 0F 00 05 01 01 00 00 00 18 80
610 * 34 02 04 03 81 41 0C 0F 04 12 80 01 01 14 80 02 02 16 80 03 03 18 80 04 04 1A 80
611 * 16 02 04 04 81 41 80 0F 00 05 01 03 00 01 01 02 00
612 * 34 02 04 05 81 41 0C 0F 04 20 80 01 01 22 80 02 02 24 80 03 03 26 80 04 04 28 80
613 * 16 02 04 06 81 41 80 0F 00 05 01 05 00 02 02 04 00
614 * 34 02 04 07 81 41 0C 0F 04 2E 80 01 01 30 80 02 02 32 80 03 03 34 80 04 04 36 80
615 * 16 02 04 08 81 41 80 0F 00 05 01 07 00 03 03 06 00
622 * 14 02 04 09 81 0C 00 FF 01 08 00 14 14 00 00

- we have to change the colored numbers:
The sequence for a 7x7 is:
Code:
00 04 06 08 0A 0C 0E 10 12 14 16 18 1A 1C 1E 20 22 24 26 28 2A 2C 2E 30 32 34 36 38 3A 3C 3E 40 42 44 46 48 4A 4C 4E 50 52 54 56 58 5A 5C 5E 60 62

But we now have 29 tiles less in a single direction, so loose the last 29 numbers:
Code:
00 04 06 08 0A 0C 0E 10 12 14 16 18 1A 1C 1E 20 22 24 26 28

This sequence you have to use for the colored numbers.
-Start out with the green number on the first of those lines (the last number before the last 80), that has to be 00.
-Then go to the first yellow number, that has to be 04, then 06, 08, 0A
- Then go to the next of those lines and change the orange number (the last number before the last 80 in that line) to 0C
- Then go to the first yellow number, that has to be 0E, then 10, etc
- Go to the next of those lines, the orange number should become 16
- The first yellow number on that line is 18
- etc etc etc

You will then end up with this:
Code:
//Action-2 Block

  607 * 7    02 04 00 00 01 00 00
  608 * 34    02 04 01 81 41 0C 0F       04 04 80 01 01 06 80 02 02 08 80 03 03 0A 80 04 04 00 80
  609 * 16    02 04 02 81 41 80 0F 00 04 01 01 00 00 00 18 80
  610 * 34    02 04 03 81 41 0C 0F       04 0E 80 01 01 10 80 02 02 12 80 03 03 14 80 04 04 0C 80
  611 * 16    02 04 04 81 41 80 0F 00 04 01 03 00 01 01 02 00
  612 * 34    02 04 05 81 41 0C 0F       04 18 80 01 01 1A 80 02 02 1C 80 03 03 1E 80 04 04 16 80
  613 * 16    02 04 06 81 41 80 0F 00 04 01 05 00 02 02 04 00
  614 * 34    02 04 07 81 41 0C 0F       04 22 80 01 01 24 80 02 02 26 80 03 03 28 80 04 04 20 80
  615 * 16    02 04 08 81 41 80 0F 00 04 01 07 00 03 03 06 00
  622 * 14    02 04 09 81 0C 00 FF 01 08 00 14 14 00 00


//Action-3

The final change:

623 * 10 03 04 01 15 01 FE 0F 00 00 00
becomes
623 * 10 03 04 01 18 01 FE 09 00 00 00

So 0F becomes 09, as 09 is now the last ID-number of the Action-2 block

//Action-4 is not affected.

So the entire code looks like this:
Code:
//start of 5x4 multitile station
//Action-1 Block

  407 * 6    01 04 01 FF 52 00


// Graphics of row-1

  408 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp 10 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp 10 12 64 170 -31 -139 normal chunked
  409 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  90 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  90 12 64 170 -53 -150 normal chunked
  410 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  170 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  170 12 64 170 -31 -139 normal chunked
  411 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  250 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  250 12 64 170 -9 -150 normal chunked
  412 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  330 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  330 12 64 170 -31 -139 normal chunked
  413 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  410 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  410 12 64 170 -53 -150 normal chunked
  414 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  490 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  490 12 64 170 -31 -139 normal chunked
  415 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  570 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  570 12 64 170 -9 -150 normal chunked
  416 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  650 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  650 12 64 170 -31 -139 normal chunked
  417 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  730 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  730 12 64 170 -53 -150 normal chunked
  418 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  810 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  810 12 64 170 -31 -139 normal chunked
  419 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  890 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  890 12 64 170 -9 -150 normal chunked
  420 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp 970 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp 970 12 64 170 -31 -139 normal chunked
  421 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1050 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1050 12 64 170 -53 -150 normal chunked
  422 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1130 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1130 12 64 170 -31 -139 normal chunked
  423 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1210 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1210 12 64 170 -9 -150 normal chunked
  424 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1290 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1290 12 64 170 -31 -139 normal chunked
  425 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1370 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1370 12 64 170 -53 -150 normal chunked
  426 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1450 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1450 12 64 170 -31 -139 normal chunked
  427 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1530 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1530 12 64 170 -9 -150 normal chunked


// Graphics of row-2

  436 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp 10 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp 10 362 64 170 -31 -139 normal chunked
  437 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  90 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  90 362 64 170 -53 -150 normal chunked
  438 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  170 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  170 362 64 170 -31 -139 normal chunked
  439 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  250 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  250 362 64 170 -9 -150 normal chunked
  440 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  330 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  330 362 64 170 -31 -139 normal chunked
  441 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  410 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  410 362 64 170 -53 -150 normal chunked
  442 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  490 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  490 362 64 170 -31 -139 normal chunked
  443 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  570 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  570 362 64 170 -9 -150 normal chunked
  444 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  650 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  650 362 64 170 -31 -139 normal chunked
  445 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  730 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  730 362 64 170 -53 -150 normal chunked
  446 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  810 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  810 362 64 170 -31 -139 normal chunked
  447 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  890 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  890 362 64 170 -9 -150 normal chunked
  448 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp 970 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp 970 362 64 170 -31 -139 normal chunked
  449 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1050 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1050 362 64 170 -53 -150 normal chunked
  450 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1130 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1130 362 64 170 -31 -139 normal chunked
  451 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1210 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1210 362 64 170 -9 -150 normal chunked
  452 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1290 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1290 362 64 170 -31 -139 normal chunked
  453 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1370 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1370 362 64 170 -53 -150 normal chunked
  454 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1450 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1450 362 64 170 -31 -139 normal chunked
  455 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1530 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1530 362 64 170 -9 -150 normal chunked



// Graphics of row-3

  464 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp 10 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp 10 712 64 170 -31 -139 normal chunked
  465 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  90 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  90 712 64 170 -53 -150 normal chunked
  466 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  170 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  170 712 64 170 -31 -139 normal chunked
  467 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  250 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  250 712 64 170 -9 -150 normal chunked
  468 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  330 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  330 712 64 170 -31 -139 normal chunked
  469 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  410 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  410 712 64 170 -53 -150 normal chunked
  470 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  490 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  490 712 64 170 -31 -139 normal chunked
  471 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  570 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  570 712 64 170 -9 -150 normal chunked
  472 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  650 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  650 712 64 170 -31 -139 normal chunked
  473 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  730 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  730 712 64 170 -53 -150 normal chunked
  474 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  810 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  810 712 64 170 -31 -139 normal chunked
  475 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  890 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  890 712 64 170 -9 -150 normal chunked
  476 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp 970 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp 970 712 64 170 -31 -139 normal chunked
  477 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1050 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1050 712 64 170 -53 -150 normal chunked
  478 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1130 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1130 712 64 170 -31 -139 normal chunked
  479 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1210 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1210 712 64 170 -9 -150 normal chunked
  480 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1290 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1290 712 64 170 -31 -139 normal chunked
  481 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1370 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1370 712 64 170 -53 -150 normal chunked
  482 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1450 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1450 712 64 170 -31 -139 normal chunked
  483 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1530 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1530 712 64 170 -9 -150 normal chunked



// Graphics of row-4

  492 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp 10 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp 10 1062 64 170 -31 -139 normal chunked
  493 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  90 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  90 1062 64 170 -53 -150 normal chunked
  494 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  170 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  170 1062 64 170 -31 -139 normal chunked
  495 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  250 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  250 1062 64 170 -9 -150 normal chunked
  496 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  330 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  330 1062 64 170 -31 -139 normal chunked
  497 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  410 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  410 1062 64 170 -53 -150 normal chunked
  498 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  490 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  490 1062 64 170 -31 -139 normal chunked
  499 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  570 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  570 1062 64 170 -9 -150 normal chunked
  500 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  650 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  650 1062 64 170 -31 -139 normal chunked
  501 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  730 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  730 1062 64 170 -53 -150 normal chunked
  502 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  810 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  810 1062 64 170 -31 -139 normal chunked
  503 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  890 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  890 1062 64 170 -9 -150 normal chunked
  504 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp 970 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp 970 1062 64 170 -31 -139 normal chunked
  505 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1050 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1050 1062 64 170 -53 -150 normal chunked
  506 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1130 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1130 1062 64 170 -31 -139 normal chunked
  507 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1210 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1210 1062 64 170 -9 -150 normal chunked
  508 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1290 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1290 1062 64 170 -31 -139 normal chunked
  509 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1370 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1370 1062 64 170 -53 -150 normal chunked
  510 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1450 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1450 1062 64 170 -31 -139 normal chunked
  511 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  1530 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  1530 1062 64 170 -9 -150 normal chunked




//Menu Graphics

  604 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  2250 12 64 46 -31 -15 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  2250 12 64 46 -31 -15 normal chunked
  605 c:/grfcodec603/auzstations/gfx/template_5x4_8bpp_EMPTY.png 8bpp  2330 12 64 46 -31 -15 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4_32bpp.png 32bpp  2330 12 64 46 -31 -15 normal chunked


//Action-0 Block

  606 * 2484    00 04 08 01 18 08 "AS08" 0B 02 0C EF 0D F7 11 FF 14 00 15 00 09 2A
      F4 03 00 00 00 00 00 10 05 03 2D 04 00 00 00 0B 00 10 05 03 2E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 2F 04 00 00 0B 00 00 05 10 03 30 04 00 00 80
      7D 04 00 80 80 //menu graphic
      7E 04 00 80 80 //menu graphic
      F4 03 00 00 00 00 00 10 05 03 31 04 00 00 00 0B 00 10 05 03 32 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 33 04 00 00 0B 00 00 05 10 03 34 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 35 04 00 00 00 0B 00 10 05 03 36 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 37 04 00 00 0B 00 00 05 10 03 38 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 39 04 00 00 00 0B 00 10 05 03 3A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 3B 04 00 00 0B 00 00 05 10 03 3C 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 3D 04 00 00 00 0B 00 10 05 03 3E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 3F 04 00 00 0B 00 00 05 10 03 40 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 41 04 00 00 00 0B 00 10 05 03 42 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 43 04 00 00 0B 00 00 05 10 03 44 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 45 04 00 00 00 0B 00 10 05 03 46 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 47 04 00 00 0B 00 00 05 10 03 48 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 49 04 00 00 00 0B 00 10 05 03 4A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 4B 04 00 00 0B 00 00 05 10 03 4C 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 4D 04 00 00 00 0B 00 10 05 03 4E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 4F 04 00 00 0B 00 00 05 10 03 50 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 51 04 00 00 00 0B 00 10 05 03 52 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 53 04 00 00 0B 00 00 05 10 03 54 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 55 04 00 00 00 0B 00 10 05 03 56 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 57 04 00 00 0B 00 00 05 10 03 58 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 59 04 00 00 00 0B 00 10 05 03 5A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 5B 04 00 00 0B 00 00 05 10 03 5C 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 5D 04 00 00 00 0B 00 10 05 03 5E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 5F 04 00 00 0B 00 00 05 10 03 60 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 61 04 00 00 00 0B 00 10 05 03 62 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 63 04 00 00 0B 00 00 05 10 03 64 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 65 04 00 00 00 0B 00 10 05 03 66 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 67 04 00 00 0B 00 00 05 10 03 68 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 69 04 00 00 00 0B 00 10 05 03 6A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 6B 04 00 00 0B 00 00 05 10 03 6C 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 6D 04 00 00 00 0B 00 10 05 03 6E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 6F 04 00 00 0B 00 00 05 10 03 70 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 71 04 00 00 00 0B 00 10 05 03 72 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 73 04 00 00 0B 00 00 05 10 03 74 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 75 04 00 00 00 0B 00 10 05 03 76 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 77 04 00 00 0B 00 00 05 10 03 78 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 79 04 00 00 00 0B 00 10 05 03 7A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 7B 04 00 00 0B 00 00 05 10 03 7C 04 00 00 80






//Action-2 Block

  607 * 7    02 04 00 00 01 00 00
  608 * 34    02 04 01 81 41 0C 0F       04 04 80 01 01 06 80 02 02 08 80 03 03 0A 80 04 04 00 80
  609 * 16    02 04 02 81 41 80 0F 00 04 01 01 00 00 00 18 80
  610 * 34    02 04 03 81 41 0C 0F       04 0E 80 01 01 10 80 02 02 12 80 03 03 14 80 04 04 0C 80
  611 * 16    02 04 04 81 41 80 0F 00 04 01 03 00 01 01 02 00
  612 * 34    02 04 05 81 41 0C 0F       04 18 80 01 01 1A 80 02 02 1C 80 03 03 1E 80 04 04 16 80
  613 * 16    02 04 06 81 41 80 0F 00 04 01 05 00 02 02 04 00
  614 * 34    02 04 07 81 41 0C 0F       04 22 80 01 01 24 80 02 02 26 80 03 03 28 80 04 04 20 80
  615 * 16    02 04 08 81 41 80 0F 00 04 01 07 00 03 03 06 00
  622 * 14    02 04 09 81 0C 00 FF 01 08 00 14 14 00 00


//Action-3 Block

  623 * 10    03 04 01 18 01 FE 09 00 00 00


//Action-4 Block

  624 * 19    04 48 FF 01 18 C5 "TEMPLATE 5x4" 00
  625 * 38    04 48 FF 01 18 C4 "AuzStations: Multitile Stations" 00


//end of 5x4 multitile station


Run the code through NFO-renum so that it gets the right codelinenumbers and values for the number of bits used in the lines, compile it to a GRF and you should get a station like the one at the top of this post!! 8-)

NOTE: After running it through NFO-renum, this warning may appear in the Action-2 block:
Code:
//!!Warning (172): Offset 5: A shift-and var-adjust would suffice here.

That can be ignored... :P

Want to make it fully non-track?
Then alter the graphicstemplate of the 7x7 non-track (delete, rename, etc).
Make sure your graphicsblock code refers to the path of those templates now ;-)
And make the changes to the first codeline in the //Action-0 block (like I explained in a previous post) to remove pylons (property 11) and wires (property 14) and to disallow trains to enter the station (property 15).

Have fun!! :yawn:


Top
 Offline Profile  
 
 Post subject: Re: GarryG Does Stations
PostPosted: 19 Sep 2017, 23:12 
Expert
Expert
User avatar

Joined: 03 May 2015, 03:27
Posts: 1716
Location: Newcastle, Australia
I just woke up .. my nature alarm called me.

I am going to have some fun ain't I with these lessons :)

The 2 you sent me before these larger stations, I want tio go for a train ride to Sydney hope next Tuesday to get some photos of stations that will use those ideas .. easier to practice with when I have some pics of it.

Not get any done just yet as got medical appointments this morning and better do some shopping too.

Have a look at these later this afternoon or tomorrow.

Cheers pal

_________________
All my projects are GPLv2 License.
Soot Happens.
Projects: viewtopic.php?f=179&t=811


Top
 Offline Profile  
 
 Post subject: Re: GarryG Does Stations
PostPosted: 20 Sep 2017, 00:53 
Player
Player
User avatar

Joined: 06 Mar 2012, 21:55
Posts: 480
Location: The Netherlands
So, now we know how to make multi-tile stations.
We also know how to make them fully tracked or fully non-tracked.
But what if we want certain tiles to be tracked and certain tiles non-tracked, within the same multi-tile station?

Well, here is the answer! :twisted:

A combination of Tracked and Non-tracked tiles within a single multi-tile station

Attachment:
Example369.png
Example369.png [ 56.92 KiB | Viewed 13792 times ]


I am going to use the code and graphics of the 5x4 station as an example.
In this case I want the middle row of tracks to be non-tracked (and thus non-passable by trains).

First, the graphics:
Replace the graphics that you want to be non-tracked with graphics that show that.
So, by replacing platform sized graphics by the full tile ones. (also alter the menu-graphics to something accordingly).
This is how I altered the 5x4:
Attachment:
Template_5x4TrackedNonTracked_32bpp_BASE.png
Template_5x4TrackedNonTracked_32bpp_BASE.png [ 106.05 KiB | Viewed 13792 times ]

The tiles I want to be non-tracked now will also show that graphically.

Now the code:
You can use the code for the 5x4 also for that, be sure though to first make the standard changes:
- Paths/names to graphicsfiles
- Station-IDs
- Purchasemenu-ID
- The hight of the boundingboxes (not really necessary right now, that can also be done after creating the station)
- Name you want to give to the station
- Name of Purchase Submenu (I usually put these kind of stations in a separate purchasemenu, to show that there is something "special" with these stations. You dont have to do that ofcourse ;-) )


Ok, done! Now what? :help:

Well, the magic happens in the Action-0 block. It looks like this when finished:
Code:
//Action-0 Block

 1186 * 1059    00 04 09 01 19 08 "AS09" 0B 02 0C EF 0D F7 0E
                                                            04 05
                                                            02 02 02 02
                                                            02 02 02 02
                                                            00 00 00 00
                                                            02 02 02 02
                                                            02 02 02 02
                                                            00 00
                                                            11 00 14 03 15 03 09 2A
      F4 03 00 00 00 00 00 10 05 03 2D 04 00 00 00 0B 00 10 05 03 2E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 2F 04 00 00 0B 00 00 05 10 03 30 04 00 00 80
      7D 04 00 80 80 //menu graphic
      7E 04 00 80 80 //menu graphic
      F4 03 00 00 00 00 00 10 05 03 31 04 00 00 00 0B 00 10 05 03 32 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 33 04 00 00 0B 00 00 05 10 03 34 04 00 00 80
      8D 0F 00 00 00 00 00 10 05 03 35 04 00 00 00 0B 00 10 05 03 36 04 00 00 80
      8D 0F 00 00 00 00 00 05 10 03 37 04 00 00 0B 00 00 05 10 03 38 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 39 04 00 00 00 0B 00 10 05 03 3A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 3B 04 00 00 0B 00 00 05 10 03 3C 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 3D 04 00 00 00 0B 00 10 05 03 3E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 3F 04 00 00 0B 00 00 05 10 03 40 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 41 04 00 00 00 0B 00 10 05 03 42 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 43 04 00 00 0B 00 00 05 10 03 44 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 45 04 00 00 00 0B 00 10 05 03 46 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 47 04 00 00 0B 00 00 05 10 03 48 04 00 00 80
      8D 0F 00 00 00 00 00 10 05 03 49 04 00 00 00 0B 00 10 05 03 4A 04 00 00 80
      8D 0F 00 00 00 00 00 05 10 03 4B 04 00 00 0B 00 00 05 10 03 4C 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 4D 04 00 00 00 0B 00 10 05 03 4E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 4F 04 00 00 0B 00 00 05 10 03 50 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 51 04 00 00 00 0B 00 10 05 03 52 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 53 04 00 00 0B 00 00 05 10 03 54 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 55 04 00 00 00 0B 00 10 05 03 56 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 57 04 00 00 0B 00 00 05 10 03 58 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 59 04 00 00 00 0B 00 10 05 03 5A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 5B 04 00 00 0B 00 00 05 10 03 5C 04 00 00 80
      8D 0F 00 00 00 00 00 10 05 03 5D 04 00 00 00 0B 00 10 05 03 5E 04 00 00 80
      8D 0F 00 00 00 00 00 05 10 03 5F 04 00 00 0B 00 00 05 10 03 60 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 61 04 00 00 00 0B 00 10 05 03 62 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 63 04 00 00 0B 00 00 05 10 03 64 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 65 04 00 00 00 0B 00 10 05 03 66 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 67 04 00 00 0B 00 00 05 10 03 68 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 69 04 00 00 00 0B 00 10 05 03 6A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 6B 04 00 00 0B 00 00 05 10 03 6C 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 6D 04 00 00 00 0B 00 10 05 03 6E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 6F 04 00 00 0B 00 00 05 10 03 70 04 00 00 80
      8D 0F 00 00 00 00 00 10 05 03 71 04 00 00 00 0B 00 10 05 03 72 04 00 00 80
      8D 0F 00 00 00 00 00 05 10 03 73 04 00 00 0B 00 00 05 10 03 74 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 75 04 00 00 00 0B 00 10 05 03 76 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 77 04 00 00 0B 00 00 05 10 03 78 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 79 04 00 00 00 0B 00 10 05 03 7A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 7B 04 00 00 0B 00 00 05 10 03 7C 04 00 00 80


What we are going to do is add another property (property 0E), that will enable us to split up the station-tiles into two types.
These types will then get different behaviours (like wires or no wires and passable by trains or not).
Finally, we will alter the ground-graphics of the tiles we have made unpassable, so that they are a full grass tile and not a tracked tile (it doesnt have to be a grass tile, other groundtiles from the OpenGFX can be used, like roads or even water, for example, if that fits in better with the graphics you make).

Ok, here we go!

Firstly we have to let the code know that we have added an extra property.
This is done by raising the value of the number of properties (from in this case 08 to 09).
In the "normal" 5x4 (and other stations too by the way) that value is located here:

1089 * 1034 00 04 08 01 18 08 "AS08" 0B 02 0C EF 0D F7 11 FF 14 00 15 00 09 2A
It now becomes:
1089 * 1034 00 04 09 01 18 08 "AS08" 0B 02 0C EF 0D F7 11 FF 14 00 15 00 09 2A


Now we need to add property 0E.
Lets make that property first, before we place it.
In this case it looks like this:
Code:
0E
04 05
02 02 02 02
02 02 02 02
00 00 00 00
02 02 02 02
02 02 02 02
00 00

0E // property 0E
04 05 // Size of the station (length x width), note that this is the other way around than usual! (this makes it a bit confusing...)
02 02 02 02 // the furthest row of tiles (the red ones)
02 02 02 02 // the next row of tiles (the greenish ones)
00 00 00 00 // the non-track row
02 02 02 02 // the blue/purple row
02 02 02 02 // the beige/brown row
00 00 // two 00's to let the code know that property OE ends.

Place this between property 0D (so in this case after its value of F7) and property 11.
And thats that done!! 8-)


It doesnt have to be a matrix, it can also be one long line of values, but this way you can spot what tile gets what value. ;-)
To explain it a bit, the first value is for the top reddish tile (in both directions), the next value is for the next tile along that track. We then go along that track untill the end, then we go to the next track and to the top again (so the brightest green/yellow tile), then downwards again, etc etc.

If you have a larger or smaller station, you need to change the values for length x width accordingly and make a matrix that has the same number of values.
So, for example a 3 tracks wide and 6 platforms long station (so what we would call a 3x6) would look like this in property 0E (in this example I only use type 02):
Code:
0E
06 03
02 02 02 02 02 02
02 02 02 02 02 02
02 02 02 02 02 02
00 00

The first 02 is then for the top-tile of the furthest row of tracks, goes down then along that track, then goes to the top of the next row of tracks, etc etc.
I think you will get what I am on about :shock: :mrgreen:

You also dont always have to give an entire row another type, it can be any tile(s) you want.
It all depends on the stationdesign, but now you will know how and where to find the tiles you want to make unpassable for trains.



OK, lets move on.
Now we have made two types of station-tiles, we need to change the behaviours of those types.

That is done via:
Property 11 (pylons, yes or no)
Property 14 (wires, yes or no)
Property 15 (passable by trains, yes or no)

- Property 15 is set to 03, this means trains can only pass through type 02 (yeah, weird and confusing, but thats the way it is :? )
- Property 14 is set to 03, this means that only type 02 tiles will get wires (as you probably dont want wires on the non-track tiles)
- Property 11 is set to 00, so no pylons anywhere.
It should be possible to have a value that pylons will also only be on type 02, but I have not found that value... To be honest, I think its a bug in OpenTTD... I will ask if that is so in the other forum.
So for now, just disable pylons everywhere ;-)


OK, now our types have different behaviours, so basically we are done!

However, like I said at the start, it is tidy to give non-track tiles a non-tracked groundtile.
That is done in the rest of the Action-0 codeblock.
So, here (marked in green):

F4 03 00 00 00 00 00 10 05 03 2D 04 00 00 00 0B 00 10 05 03 2E 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 2F 04 00 00 0B 00 00 05 10 03 30 04 00 00 80
7D 04 00 80 80 //menu graphic
7E 04 00 80 80 //menu graphic
F4 03 00 00 00 00 00 10 05 03 31 04 00 00 00 0B 00 10 05 03 32 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 33 04 00 00 0B 00 00 05 10 03 34 04 00 00 80
8D 0F 00 00 00 00 00 10 05 03 35 04 00 00 00 0B 00 10 05 03 36 04 00 00 80
8D 0F 00 00 00 00 00 05 10 03 37 04 00 00 0B 00 00 05 10 03 38 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 39 04 00 00 00 0B 00 10 05 03 3A 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 3B 04 00 00 0B 00 00 05 10 03 3C 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 3D 04 00 00 00 0B 00 10 05 03 3E 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 3F 04 00 00 0B 00 00 05 10 03 40 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 41 04 00 00 00 0B 00 10 05 03 42 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 43 04 00 00 0B 00 00 05 10 03 44 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 45 04 00 00 00 0B 00 10 05 03 46 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 47 04 00 00 0B 00 00 05 10 03 48 04 00 00 80
8D 0F 00 00 00 00 00 10 05 03 49 04 00 00 00 0B 00 10 05 03 4A 04 00 00 80
8D 0F 00 00 00 00 00 05 10 03 4B 04 00 00 0B 00 00 05 10 03 4C 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 4D 04 00 00 00 0B 00 10 05 03 4E 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 4F 04 00 00 0B 00 00 05 10 03 50 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 51 04 00 00 00 0B 00 10 05 03 52 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 53 04 00 00 0B 00 00 05 10 03 54 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 55 04 00 00 00 0B 00 10 05 03 56 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 57 04 00 00 0B 00 00 05 10 03 58 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 59 04 00 00 00 0B 00 10 05 03 5A 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 5B 04 00 00 0B 00 00 05 10 03 5C 04 00 00 80
8D 0F 00 00 00 00 00 10 05 03 5D 04 00 00 00 0B 00 10 05 03 5E 04 00 00 80
8D 0F 00 00 00 00 00 05 10 03 5F 04 00 00 0B 00 00 05 10 03 60 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 61 04 00 00 00 0B 00 10 05 03 62 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 63 04 00 00 0B 00 00 05 10 03 64 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 65 04 00 00 00 0B 00 10 05 03 66 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 67 04 00 00 0B 00 00 05 10 03 68 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 69 04 00 00 00 0B 00 10 05 03 6A 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 6B 04 00 00 0B 00 00 05 10 03 6C 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 6D 04 00 00 00 0B 00 10 05 03 6E 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 6F 04 00 00 0B 00 00 05 10 03 70 04 00 00 80
8D 0F 00 00 00 00 00 10 05 03 71 04 00 00 00 0B 00 10 05 03 72 04 00 00 80
8D 0F 00 00 00 00 00 05 10 03 73 04 00 00 0B 00 00 05 10 03 74 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 75 04 00 00 00 0B 00 10 05 03 76 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 77 04 00 00 0B 00 00 05 10 03 78 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 79 04 00 00 00 0B 00 10 05 03 7A 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 7B 04 00 00 0B 00 00 05 10 03 7C 04 00 00 80

How did I know what tile is what?
Well, Ill show you ;-)
The first line (so the first one that starts with F4 03) is the uttermost right tile in direction-1.
The second line (so the first one that starts with F3 03) is the uttermost left tile in direction-2.
Line 3 and 4 are for the menu-graphics, DONT TOUCH THOSE!! ;-)
Line 5 (so the next one that starts with F4 03) is the tile just left of the uttermost right one in direction-1.
Line 6 (so the next one that starts with F3 03) is the tile just right of the uttermost left one in direction-2.
Etc etc, until you get to the end of that row, then you jump back to the front again in the next row, etc etc etc.
Pictures always help:
Attachment:
Example370.png
Example370.png [ 104.43 KiB | Viewed 13792 times ]

I hope this helps you with finding for what tile(s) you need to change the ground-tile value(s).

So thats how you do that! ;-)
Here is the complete code for a 5x4 station where the middle tracks are made non-track:
Code:
//start of 5x4 Tracked & Non-tracked station
//Action-1 Block

 1103 * 6    01 04 01 FF 52 00


// Graphics of row-1

 1104 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp 10 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp 10 12 64 170 -31 -139 normal chunked
 1105 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  90 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  90 12 64 170 -53 -150 normal chunked
 1106 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  170 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  170 12 64 170 -31 -139 normal chunked
 1107 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  250 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  250 12 64 170 -9 -150 normal chunked
 1108 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  330 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  330 12 64 170 -31 -139 normal chunked
 1109 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  410 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  410 12 64 170 -53 -150 normal chunked
 1110 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  490 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  490 12 64 170 -31 -139 normal chunked
 1111 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  570 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  570 12 64 170 -9 -150 normal chunked
 1112 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  650 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  650 12 64 170 -31 -139 normal chunked
 1113 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  730 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  730 12 64 170 -53 -150 normal chunked
 1114 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  810 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  810 12 64 170 -31 -139 normal chunked
 1115 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  890 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  890 12 64 170 -9 -150 normal chunked
 1116 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp 970 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp 970 12 64 170 -31 -139 normal chunked
 1117 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  1050 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  1050 12 64 170 -53 -150 normal chunked
 1118 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  1130 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  1130 12 64 170 -31 -139 normal chunked
 1119 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  1210 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  1210 12 64 170 -9 -150 normal chunked
 1120 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  1290 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  1290 12 64 170 -31 -139 normal chunked
 1121 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  1370 12 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  1370 12 64 170 -53 -150 normal chunked
 1122 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  1450 12 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  1450 12 64 170 -31 -139 normal chunked
 1123 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  1530 12 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  1530 12 64 170 -9 -150 normal chunked


// Graphics of row-2

 1124 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp 10 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp 10 362 64 170 -31 -139 normal chunked
 1125 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  90 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  90 362 64 170 -53 -150 normal chunked
 1126 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  170 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  170 362 64 170 -31 -139 normal chunked
 1127 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  250 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  250 362 64 170 -9 -150 normal chunked
 1128 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  330 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  330 362 64 170 -31 -139 normal chunked
 1129 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  410 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  410 362 64 170 -53 -150 normal chunked
 1130 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  490 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  490 362 64 170 -31 -139 normal chunked
 1131 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  570 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  570 362 64 170 -9 -150 normal chunked
 1132 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  650 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  650 362 64 170 -31 -139 normal chunked
 1133 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  730 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  730 362 64 170 -53 -150 normal chunked
 1134 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  810 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  810 362 64 170 -31 -139 normal chunked
 1135 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  890 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  890 362 64 170 -9 -150 normal chunked
 1136 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp 970 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp 970 362 64 170 -31 -139 normal chunked
 1137 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  1050 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  1050 362 64 170 -53 -150 normal chunked
 1138 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  1130 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  1130 362 64 170 -31 -139 normal chunked
 1139 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  1210 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  1210 362 64 170 -9 -150 normal chunked
 1140 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  1290 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  1290 362 64 170 -31 -139 normal chunked
 1141 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  1370 362 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  1370 362 64 170 -53 -150 normal chunked
 1142 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  1450 362 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  1450 362 64 170 -31 -139 normal chunked
 1143 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  1530 362 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  1530 362 64 170 -9 -150 normal chunked



// Graphics of row-3

 1144 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp 10 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp 10 712 64 170 -31 -139 normal chunked
 1145 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  90 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  90 712 64 170 -53 -150 normal chunked
 1146 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  170 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  170 712 64 170 -31 -139 normal chunked
 1147 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  250 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  250 712 64 170 -9 -150 normal chunked
 1148 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  330 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  330 712 64 170 -31 -139 normal chunked
 1149 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  410 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  410 712 64 170 -53 -150 normal chunked
 1150 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  490 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  490 712 64 170 -31 -139 normal chunked
 1151 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  570 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  570 712 64 170 -9 -150 normal chunked
 1152 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  650 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  650 712 64 170 -31 -139 normal chunked
 1153 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  730 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  730 712 64 170 -53 -150 normal chunked
 1154 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  810 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  810 712 64 170 -31 -139 normal chunked
 1155 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  890 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  890 712 64 170 -9 -150 normal chunked
 1156 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp 970 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp 970 712 64 170 -31 -139 normal chunked
 1157 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  1050 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  1050 712 64 170 -53 -150 normal chunked
 1158 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  1130 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  1130 712 64 170 -31 -139 normal chunked
 1159 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  1210 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  1210 712 64 170 -9 -150 normal chunked
 1160 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  1290 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  1290 712 64 170 -31 -139 normal chunked
 1161 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  1370 712 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  1370 712 64 170 -53 -150 normal chunked
 1162 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  1450 712 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  1450 712 64 170 -31 -139 normal chunked
 1163 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  1530 712 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  1530 712 64 170 -9 -150 normal chunked



// Graphics of row-4

 1164 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp 10 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp 10 1062 64 170 -31 -139 normal chunked
 1165 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  90 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  90 1062 64 170 -53 -150 normal chunked
 1166 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  170 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  170 1062 64 170 -31 -139 normal chunked
 1167 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  250 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  250 1062 64 170 -9 -150 normal chunked
 1168 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  330 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  330 1062 64 170 -31 -139 normal chunked
 1169 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  410 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  410 1062 64 170 -53 -150 normal chunked
 1170 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  490 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  490 1062 64 170 -31 -139 normal chunked
 1171 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  570 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  570 1062 64 170 -9 -150 normal chunked
 1172 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  650 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  650 1062 64 170 -31 -139 normal chunked
 1173 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  730 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  730 1062 64 170 -53 -150 normal chunked
 1174 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  810 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  810 1062 64 170 -31 -139 normal chunked
 1175 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  890 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  890 1062 64 170 -9 -150 normal chunked
 1176 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp 970 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp 970 1062 64 170 -31 -139 normal chunked
 1177 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  1050 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  1050 1062 64 170 -53 -150 normal chunked
 1178 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  1130 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  1130 1062 64 170 -31 -139 normal chunked
 1179 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  1210 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  1210 1062 64 170 -9 -150 normal chunked
 1180 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  1290 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  1290 1062 64 170 -31 -139 normal chunked
 1181 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  1370 1062 64 170 -53 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  1370 1062 64 170 -53 -150 normal chunked
 1182 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  1450 1062 64 170 -31 -139 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  1450 1062 64 170 -31 -139 normal chunked
 1183 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  1530 1062 64 170 -9 -150 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  1530 1062 64 170 -9 -150 normal chunked




//Menu Graphics

 1184 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  2250 12 64 46 -31 -15 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  2250 12 64 46 -31 -15 normal chunked
 1185 c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_8bpp_EMPTY.png 8bpp  2330 12 64 46 -31 -15 normal chunked
    | c:/grfcodec603/auzstations/gfx/template_5x4trackednontracked_32bpp.png 32bpp  2330 12 64 46 -31 -15 normal chunked


//Action-0 Block

 1186 * 1059    00 04 09 01 19 08 "AS09" 0B 02 0C EF 0D F7 0E
                                                            04 05
                                                            02 02 02 02
                                                            02 02 02 02
                                                            00 00 00 00
                                                            02 02 02 02
                                                            02 02 02 02
                                                            00 00
                                                            11 00 14 03 15 03 09 2A
      F4 03 00 00 00 00 00 10 05 03 2D 04 00 00 00 0B 00 10 05 03 2E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 2F 04 00 00 0B 00 00 05 10 03 30 04 00 00 80
      7D 04 00 80 80 //menu graphic
      7E 04 00 80 80 //menu graphic
      F4 03 00 00 00 00 00 10 05 03 31 04 00 00 00 0B 00 10 05 03 32 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 33 04 00 00 0B 00 00 05 10 03 34 04 00 00 80
      8D 0F 00 00 00 00 00 10 05 03 35 04 00 00 00 0B 00 10 05 03 36 04 00 00 80
      8D 0F 00 00 00 00 00 05 10 03 37 04 00 00 0B 00 00 05 10 03 38 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 39 04 00 00 00 0B 00 10 05 03 3A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 3B 04 00 00 0B 00 00 05 10 03 3C 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 3D 04 00 00 00 0B 00 10 05 03 3E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 3F 04 00 00 0B 00 00 05 10 03 40 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 41 04 00 00 00 0B 00 10 05 03 42 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 43 04 00 00 0B 00 00 05 10 03 44 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 45 04 00 00 00 0B 00 10 05 03 46 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 47 04 00 00 0B 00 00 05 10 03 48 04 00 00 80
      8D 0F 00 00 00 00 00 10 05 03 49 04 00 00 00 0B 00 10 05 03 4A 04 00 00 80
      8D 0F 00 00 00 00 00 05 10 03 4B 04 00 00 0B 00 00 05 10 03 4C 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 4D 04 00 00 00 0B 00 10 05 03 4E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 4F 04 00 00 0B 00 00 05 10 03 50 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 51 04 00 00 00 0B 00 10 05 03 52 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 53 04 00 00 0B 00 00 05 10 03 54 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 55 04 00 00 00 0B 00 10 05 03 56 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 57 04 00 00 0B 00 00 05 10 03 58 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 59 04 00 00 00 0B 00 10 05 03 5A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 5B 04 00 00 0B 00 00 05 10 03 5C 04 00 00 80
      8D 0F 00 00 00 00 00 10 05 03 5D 04 00 00 00 0B 00 10 05 03 5E 04 00 00 80
      8D 0F 00 00 00 00 00 05 10 03 5F 04 00 00 0B 00 00 05 10 03 60 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 61 04 00 00 00 0B 00 10 05 03 62 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 63 04 00 00 0B 00 00 05 10 03 64 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 65 04 00 00 00 0B 00 10 05 03 66 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 67 04 00 00 0B 00 00 05 10 03 68 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 69 04 00 00 00 0B 00 10 05 03 6A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 6B 04 00 00 0B 00 00 05 10 03 6C 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 6D 04 00 00 00 0B 00 10 05 03 6E 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 6F 04 00 00 0B 00 00 05 10 03 70 04 00 00 80
      8D 0F 00 00 00 00 00 10 05 03 71 04 00 00 00 0B 00 10 05 03 72 04 00 00 80
      8D 0F 00 00 00 00 00 05 10 03 73 04 00 00 0B 00 00 05 10 03 74 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 75 04 00 00 00 0B 00 10 05 03 76 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 77 04 00 00 0B 00 00 05 10 03 78 04 00 00 80
      F4 03 00 00 00 00 00 10 05 03 79 04 00 00 00 0B 00 10 05 03 7A 04 00 00 80
      F3 03 00 00 00 00 00 05 10 03 7B 04 00 00 0B 00 00 05 10 03 7C 04 00 00 80






//Action-2 Block

 1187 * 7    02 04 00 00 01 00 00
 1188 * 26    02 04 01 81 41 0C 0F       04 04 80 01 01 06 80 02 02 08 80 03 03 0A 80 04 04 00 80
//!!Warning (172): Offset 5: A shift-and var-adjust would suffice here.
 1189 * 16    02 04 02 81 41 80 0F 00 04 01 01 00 00 00 18 80
 1190 * 26    02 04 03 81 41 0C 0F       04 0E 80 01 01 10 80 02 02 12 80 03 03 14 80 04 04 0C 80
//!!Warning (172): Offset 5: A shift-and var-adjust would suffice here.
 1191 * 16    02 04 04 81 41 80 0F 00 04 01 03 00 01 01 02 00
 1192 * 26    02 04 05 81 41 0C 0F       04 18 80 01 01 1A 80 02 02 1C 80 03 03 1E 80 04 04 16 80
//!!Warning (172): Offset 5: A shift-and var-adjust would suffice here.
 1193 * 16    02 04 06 81 41 80 0F 00 04 01 05 00 02 02 04 00
 1194 * 26    02 04 07 81 41 0C 0F       04 22 80 01 01 24 80 02 02 26 80 03 03 28 80 04 04 20 80
//!!Warning (172): Offset 5: A shift-and var-adjust would suffice here.
 1195 * 16    02 04 08 81 41 80 0F 00 04 01 07 00 03 03 06 00
 1196 * 14    02 04 09 81 0C 00 FF 01 08 00 14 14 00 00


//Action-3 Block

 1197 * 10    03 04 01 19 01 FE 09 00 00 00


//Action-4 Block

 1198 * 39    04 48 FF 01 19 C5 "TEMPLATE 5x4 tracked non-tracked" 00
 1199 * 50    04 48 FF 01 19 C4 "AuzStations: Tracked & Non-tracked Stations" 00


//end of 5x4 Tracked & Non-tracked station


ONE FINAL IMPORTANT THING ABOUT THESE STATIONS!!

Most of the times, you can fiddle around with graphics and code and test it out ingame after compiling it to a GRF, fiddle around some more, compile again and see what changes, without too much danger of crashing the game.

However, be very careful with property 0E!!!!

By changing values in this property you can change passable tiles into non-passable ones. That suddenly affects the pathfinders of trains!! Confuses those and thus can result in a crash of the game!!
This is one of the reasons why it is not advised to change GRFs in a running game.

The safest way to go, to avoid crashes when fiddeling about, is to test it out in a new/fresh game and to place the stations from the electrified track menu.
Then you can see what tiles have been made unpassable (as they wont show wires if you use this code-example), check if those are the right tiles, if not, DESTROY THE STATION. Fiddle around some more, build the station again and check if the wires are gone from the right tiles, if not DESTROY AND REBUILD THE STATION AGAIN AND AGAIN UNTIL IT IS OK.
Only after you think it is ok, test it out then with sending some trains into the various tracks and check if the trains actually wont go into the tiles you want to be unpassable.

This way you will probably avoid frustrating crashes and starting up the game again and again while testing ;-)
After the code is ok, you should be able to fiddle around with graphics safely again.

Basically, for all large stations, start out with the templates, see if the footprint is how you want it and if the behaviour of the tiles is how you want it to be, then replace the graphics with your artwork.


Ok, my brain hurts again and I am hungry again, Quast65 signing off!
*drops microphone*
:W 8-)


Top
 Offline Profile  
 
 Post subject: Re: GarryG Does Stations
PostPosted: 20 Sep 2017, 04:01 
Expert
Expert
User avatar

Joined: 03 May 2015, 03:27
Posts: 1716
Location: Newcastle, Australia
Just got home from town and had quick look at next lesson. This one very interesting to combine them together.

Have to read through it and see if can put non-track tiles either side of the rails (have rails in middle of the non-track tiles) or different locations.

So what do I do next finish the Coal Loader ort start the lessons as I like both ideas :?: :?

You playing the Hunger Games .. letting yourself get hungrier and then decide what to munch on.

Cheers pal

_________________
All my projects are GPLv2 License.
Soot Happens.
Projects: viewtopic.php?f=179&t=811


Top
 Offline Profile  
 
 Post subject: Re: GarryG Does Stations
PostPosted: 20 Sep 2017, 12:22 
Player
Player
User avatar

Joined: 06 Mar 2012, 21:55
Posts: 480
Location: The Netherlands
Quote:
So what do I do next finish the Coal Loader ort start the lessons

I just provide the tools...
When you use them, in what order you use them, how you use them, is totally up to you! ;)


Top
 Offline Profile  
 
 Post subject: Re: GarryG Does Stations
PostPosted: 20 Sep 2017, 12:57 
Expert
Expert
User avatar

Joined: 03 May 2015, 03:27
Posts: 1716
Location: Newcastle, Australia
:lol:

Some times want to do more then one project at same time as enjoying what your teaching .. want to do things what you already taught me and want to do things your teaching me now. :mrgreen:

More medical tests tomorrow so not be able do much till maybe Friday.

Cheers pal

_________________
All my projects are GPLv2 License.
Soot Happens.
Projects: viewtopic.php?f=179&t=811


Top
 Offline Profile  
 
 Post subject: Re: GarryG Does Stations
PostPosted: 21 Sep 2017, 19:04 
Player
Player
User avatar

Joined: 06 Mar 2012, 21:55
Posts: 480
Location: The Netherlands
Quote:
More medical tests tomorrow

Good luck with those buddy!! :W




I want to tick off one more thing of my to-do list ;-)

Removing references to the kinda "old-fashioned" way of see-thru glass-effect

At the time I started out with giving you graphics- and code-examples I was not yet aware that the 32bpp graphics could have transparency/translucency.

(see here: http://www.simuscape.net/simutalk/viewtopic.php?f=45&t=859&start=320#p12535 and here: http://www.simuscape.net/simutalk/viewtopic.php?f=45&t=859&start=340#p12580 for more info about that)

In this post I would like to explain how to remove the references to the now kinda obsolete and "old-fashioned" way of getting a see-thru glass effect.
Note, that this is not something you HAVE to do! (especially not in the case of the GRFs you have already filled and finished)
But for new readers of this thread and for new projects this may be handy ;-)
I have also placed a link to this in the post where I first talk about the "old-fashioned" way of getting a see-thru glass effect.


Ok, what to do...

Graphics:

Rather easy, just delete all the boxes/graphics (also in the 8bpp EMPTY templates) that had the yellow text in them, that showed the glass-effect.
So for example, this:
Attachment:
Template_RegularPlatform_32bpp_BASE.png
Template_RegularPlatform_32bpp_BASE.png [ 26.18 KiB | Viewed 13783 times ]

Becomes this:
Attachment:
Template_RegularPlatform_32bpp_BASE_NOGLASS.png
Template_RegularPlatform_32bpp_BASE_NOGLASS.png [ 25.68 KiB | Viewed 13783 times ]


Now the code...

There are a couple of changes...

* In the Action-1:
You need to delete the lines of code that have the paths to those now deleted graphics (basically the ones with the -0 -0 relative position values).
For example, these (indicated in red):

10 * 6 01 04 01 FF 10 00
11 c:/grfcodec603/auzstations/gfx/template_regularplatform_8bpp_EMPTY.png 8bpp 10 40 64 122 -31 -91 normal chunked
| c:/grfcodec603/auzstations/gfx/template_regularplatform_32bpp.png 32bpp 10 40 64 122 -31 -91 normal chunked
12 c:/grfcodec603/auzstations/gfx/template_regularplatform_8bpp_EMPTY.png 8bpp 90 40 64 122 -53 -102 normal chunked
| c:/grfcodec603/auzstations/gfx/template_regularplatform_32bpp.png 32bpp 90 40 64 122 -53 -102 normal chunked
13 c:/grfcodec603/auzstations/gfx/template_regularplatform_8bpp_EMPTY.png 8bpp 170 40 64 122 -31 -91 normal chunked
| c:/grfcodec603/auzstations/gfx/template_regularplatform_32bpp.png 32bpp 170 40 64 122 -31 -91 normal chunked
14 c:/grfcodec603/auzstations/gfx/template_regularplatform_8bpp_EMPTY.png 8bpp 250 40 64 122 -9 -102 normal chunked
| c:/grfcodec603/auzstations/gfx/template_regularplatform_32bpp.png 32bpp 250 40 64 122 -9 -102 normal chunked
15 c:/grfcodec603/auzstations/gfx/template_regularplatform_8bpp_EMPTY.png 8bpp 330 40 64 122 -31 -91 normal chunked
| c:/grfcodec603/auzstations/gfx/template_regularplatform_32bpp.png 32bpp 330 40 64 122 -31 -91 normal chunked
16 c:/grfcodec603/auzstations/gfx/template_regularplatform_8bpp_EMPTY.png 8bpp 410 40 64 122 -53 -102 normal chunked
| c:/grfcodec603/auzstations/gfx/template_regularplatform_32bpp.png 32bpp 410 40 64 122 -53 -102 normal chunked
17 c:/grfcodec603/auzstations/gfx/template_regularplatform_8bpp_EMPTY.png 8bpp 490 40 64 122 -31 -91 normal chunked
| c:/grfcodec603/auzstations/gfx/template_regularplatform_32bpp.png 32bpp 490 40 64 122 -31 -91 normal chunked
18 c:/grfcodec603/auzstations/gfx/template_regularplatform_8bpp_EMPTY.png 8bpp 570 40 64 122 -9 -102 normal chunked
| c:/grfcodec603/auzstations/gfx/template_regularplatform_32bpp.png 32bpp 570 40 64 122 -9 -102 normal chunked
19 c:/grfcodec603/auzstations/gfx/template_regularplatform_8bpp_EMPTY.png 8bpp 650 40 64 122 -0 -0 normal chunked
| c:/grfcodec603/auzstations/gfx/template_regularplatform_32bpp.png 32bpp 650 40 64 122 -0 -0 normal chunked
20 c:/grfcodec603/auzstations/gfx/template_regularplatform_8bpp_EMPTY.png 8bpp 730 40 64 122 -0 -0 normal chunked
| c:/grfcodec603/auzstations/gfx/template_regularplatform_32bpp.png 32bpp 730 40 64 122 -0 -0 normal chunked
21 c:/grfcodec603/auzstations/gfx/template_regularplatform_8bpp_EMPTY.png 8bpp 810 40 64 122 -0 -0 normal chunked
| c:/grfcodec603/auzstations/gfx/template_regularplatform_32bpp.png 32bpp 810 40 64 122 -0 -0 normal chunked
22 c:/grfcodec603/auzstations/gfx/template_regularplatform_8bpp_EMPTY.png 8bpp 890 40 64 122 -0 -0 normal chunked
| c:/grfcodec603/auzstations/gfx/template_regularplatform_32bpp.png 32bpp 890 40 64 122 -0 -0 normal chunked
23 c:/grfcodec603/auzstations/gfx/template_regularplatform_8bpp_EMPTY.png 8bpp 970 40 64 122 -0 -0 normal chunked
| c:/grfcodec603/auzstations/gfx/template_regularplatform_32bpp.png 32bpp 970 40 64 122 -0 -0 normal chunked
24 c:/grfcodec603/auzstations/gfx/template_regularplatform_8bpp_EMPTY.png 8bpp 1050 40 64 122 -0 -0 normal chunked
| c:/grfcodec603/auzstations/gfx/template_regularplatform_32bpp.png 32bpp 1050 40 64 122 -0 -0 normal chunked
25 c:/grfcodec603/auzstations/gfx/template_regularplatform_8bpp_EMPTY.png 8bpp 1130 40 64 122 -0 -0 normal chunked
| c:/grfcodec603/auzstations/gfx/template_regularplatform_32bpp.png 32bpp 1130 40 64 122 -0 -0 normal chunked
26 c:/grfcodec603/auzstations/gfx/template_regularplatform_8bpp_EMPTY.png 8bpp 1210 40 64 122 -0 -0 normal chunked
| c:/grfcodec603/auzstations/gfx/template_regularplatform_32bpp.png 32bpp 1210 40 64 122 -0 -0 normal chunked


Or in some other examples they are found inbetween the regular graphics information (again look for the ones that have the -0 -0 relative position information):

63 * 6 01 04 01 FF 0E 00
64 c:/grfcodec603/auzstations/gfx/template_regularplatform_8bpp_EMPTY.png 8bpp 10 430 64 122 -31 -91 normal chunked
| c:/grfcodec603/auzstations/gfx/template_regularplatform_32bpp.png 32bpp 10 430 64 122 -31 -91 normal chunked
65 c:/grfcodec603/auzstations/gfx/template_regularplatform_8bpp_EMPTY.png 8bpp 90 430 64 122 -53 -102 normal chunked
| c:/grfcodec603/auzstations/gfx/template_regularplatform_32bpp.png 32bpp 90 430 64 122 -53 -102 normal chunked
66 c:/grfcodec603/auzstations/gfx/template_regularplatform_8bpp_EMPTY.png 8bpp 170 430 64 122 -0 -0 normal chunked
| c:/grfcodec603/auzstations/gfx/template_regularplatform_32bpp.png 32bpp 170 430 64 122 -0 -0 normal chunked

67 c:/grfcodec603/auzstations/gfx/template_regularplatform_8bpp_EMPTY.png 8bpp 250 430 64 122 -31 -91 normal chunked
| c:/grfcodec603/auzstations/gfx/template_regularplatform_32bpp.png 32bpp 250 430 64 122 -31 -91 normal chunked
68 c:/grfcodec603/auzstations/gfx/template_regularplatform_8bpp_EMPTY.png 8bpp 330 430 64 122 -9 -102 normal chunked
| c:/grfcodec603/auzstations/gfx/template_regularplatform_32bpp.png 32bpp 330 430 64 122 -9 -102 normal chunked
69 c:/grfcodec603/auzstations/gfx/template_regularplatform_8bpp_EMPTY.png 8bpp 410 430 64 122 -0 -0 normal chunked
| c:/grfcodec603/auzstations/gfx/template_regularplatform_32bpp.png 32bpp 410 430 64 122 -0 -0 normal chunked

70 c:/grfcodec603/auzstations/gfx/template_regularplatform_8bpp_EMPTY.png 8bpp 490 430 64 122 -31 -91 normal chunked
| c:/grfcodec603/auzstations/gfx/template_regularplatform_32bpp.png 32bpp 490 430 64 122 -31 -91 normal chunked
71 c:/grfcodec603/auzstations/gfx/template_regularplatform_8bpp_EMPTY.png 8bpp 570 430 64 122 -53 -102 normal chunked
| c:/grfcodec603/auzstations/gfx/template_regularplatform_32bpp.png 32bpp 570 430 64 122 -53 -102 normal chunked
72 c:/grfcodec603/auzstations/gfx/template_regularplatform_8bpp_EMPTY.png 8bpp 650 430 64 122 -0 -0 normal chunked
| c:/grfcodec603/auzstations/gfx/template_regularplatform_32bpp.png 32bpp 650 430 64 122 -0 -0 normal chunked

73 c:/grfcodec603/auzstations/gfx/template_regularplatform_8bpp_EMPTY.png 8bpp 730 430 64 122 -31 -91 normal chunked
| c:/grfcodec603/auzstations/gfx/template_regularplatform_32bpp.png 32bpp 730 430 64 122 -31 -91 normal chunked
74 c:/grfcodec603/auzstations/gfx/template_regularplatform_8bpp_EMPTY.png 8bpp 810 430 64 122 -9 -102 normal chunked
| c:/grfcodec603/auzstations/gfx/template_regularplatform_32bpp.png 32bpp 810 430 64 122 -9 -102 normal chunked
75 c:/grfcodec603/auzstations/gfx/template_regularplatform_8bpp_EMPTY.png 8bpp 890 430 64 122 -0 -0 normal chunked
| c:/grfcodec603/auzstations/gfx/template_regularplatform_32bpp.png 32bpp 890 430 64 122 -0 -0 normal chunked

76 c:/grfcodec603/auzstations/gfx/template_regularplatform_8bpp_EMPTY.png 8bpp 970 430 64 46 -31 -20 normal chunked
| c:/grfcodec603/auzstations/gfx/template_regularplatform_32bpp.png 32bpp 970 430 64 46 -31 -20 normal chunked
77 c:/grfcodec603/auzstations/gfx/template_regularplatform_8bpp_EMPTY.png 8bpp 1050 430 64 46 -31 -20 normal chunked
| c:/grfcodec603/auzstations/gfx/template_regularplatform_32bpp.png 32bpp 1050 430 64 46 -31 -20 normal chunked

Also, you have to change the blue number in the first line of the Action-1 (that is the number of graphics in a single graphicsfile) to the number of graphics that you now have (IN HEXADECIMAL).

- So for the first example 10 becomes 08 (there were 16, so 10 in hexadecimal before, now 08, which is also 08 in hexadecimal)
- For the second example 0E becomes 0A (there were 14, so 0E hexadecimal, now 10, which is 0A hexadecimal)

Not too difficult ;-)



* In the Action-0:

Here you have to be a bit more careful with the changes!!

We have to remove the references in the build-sprite information and have to renumber some ID-numbers.
Its different in the various examples I have given you (sorry if that becomes a bit confusing... :oops: ), I will try to cover all of the examples.

* For the single-sided platform examples, that is not too difficult:

44 * 84 00 04 03 01 01 08 "AS01" 11 FF 09 02
F4 03 00 00 00 00 00 10 05 03 2D 84 00 00 00 0B 00 10 05 03 2E 84 00 00 00 00 80 00 00 00 2F 44 22 03 80
F3 03 00 00 00 00 00 05 10 03 30 84 00 00 0B 00 00 05 10 03 31 84 00 00 00 00 80 00 00 00 32 44 22 03 80

- Remove the parts indicated in red (the reference to the glass-graphic), so the end of the line is 00 00 80.
- Renumber the parts indicated in yellow (the ID-number). Start with 2D and then go up hexadecimally. So 2D, 2E, 2F, 30, 31...., 39, 3A, 3B....., 3F, 40, 41, etc etc.
So, in this case, 30 and 31 become 2F and 30.

This is also the same for the 1x1 nontrack example and the 1x1 example with the extra animated colors MASK-graphics.


* For the island-platform examples, this:

78 * 192 00 04 07 01 03 08 "AS02" 0B 02 0C FD 0D FE 11 FF 14 00 09 06
F4 03 00 00 00 00 00 10 05 03 2D 04 00 00 00 0B 00 10 05 03 2E 04 00 00 00 00 80 00 00 00 2F 44 22 03 80
F3 03 00 00 00 00 00 05 10 03 30 04 00 00 0B 00 00 05 10 03 31 04 00 00 00 00 80 00 00 00 32 44 22 03 80
02 00 00 00 00 00 00 10 10 10 39 04 00 00 80
02 00 00 00 00 00 00 10 10 10 3A 04 00 00 80
F4 03 00 00 00 00 00 10 05 03 33 04 00 00 00 0B 00 10 05 03 34 04 00 00 00 00 80 00 00 00 35 44 22 03 80
F3 03 00 00 00 00 00 05 10 03 36 04 00 00 0B 00 00 05 10 03 37 04 00 00 00 00 80 00 00 00 38 44 22 03 80

- Remove the parts indicated in red (the reference to the glass-graphic), so the end of the line is 00 00 80.
- Renumber the parts indicated in yellow (the ID-number). Start with 2D and then go up hexadecimally. So 2D, 2E, 2F, 30, 31...., 39, 3A, 3B....., 3F, 40, 41, etc etc.
So, in this case, 30 and 31 become 2F and 30. 33 and 34 become 31 and 32, 36 and 37 become 33 and 34
- NOW THE ONES IN GREEN, those are for the menu-graphics, those have to be the next two numbers upwards from the last number in yellow (in hexadecimal counting). So 39 becomes 35 and 3A becomes 36

* For the 2x1, 3x1 .... 7x1 nontracks, this is basically the same:

For example the 3x1:
179 * 184 00 04 08 01 09 08 "AS03" 0B 02 0C FE 0D FB 11 00 14 FF 15 FF 09 08
8D 0F 00 00 00 00 00 10 10 03 2D 04 00 00 00 00 80 00 00 00 2E 44 22 03 80
8D 0F 00 00 00 00 00 10 10 03 2F 04 00 00 00 00 80 00 00 00 30 44 22 03 80
39 04 00 80 80
3A 04 00 80 80
8D 0F 00 00 00 00 00 10 10 03 31 04 00 00 00 00 80 00 00 00 32 44 22 03 80
8D 0F 00 00 00 00 00 10 10 03 33 04 00 00 00 00 80 00 00 00 34 44 22 03 80
8D 0F 00 00 00 00 00 10 10 03 35 04 00 00 00 00 80 00 00 00 36 44 22 03 80
8D 0F 00 00 00 00 00 10 10 03 37 04 00 00 00 00 80 00 00 00 38 44 22 03 80

- Remove parts in red
- renumber yellow (in this case, it should become 2D, 2E, 2F, 30, 31, 32)
- green ones the next two numbers upwards from the last yellow one. (In this case, it should become 33 and 34)


* Normal Openttd platforms (so with two platforms on either side of a track) and Waypoints.

A bit different, as you need to remove 2 references (in red), but the ID-numbers (in yellow) stay the same!!

27 * 376 00 04 04 01 00 08 "AS00" 11 FF 0B 0F 09 08
F4 03 00 00 00 00 00 10 05 03 31 84 00 00 00 00 80 00 00 00 39 44 22 03 00 0B 00 10 05 03 32 84 00 00 00 00 80 00 00 00 3A 44 22 03 80
F3 03 00 00 00 00 00 05 10 03 33 84 00 00 00 00 80 00 00 00 3B 44 22 03 0B 00 00 05 10 03 34 84 00 00 00 00 80 00 00 00 3C 44 22 03 80
F4 03 00 00 00 00 00 10 05 03 2D 84 00 00 00 00 80 00 00 00 35 44 22 03 00 0B 00 10 05 03 2E 84 00 00 00 00 80 00 00 00 36 44 22 03 80
F3 03 00 00 00 00 00 05 10 03 2F 84 00 00 00 00 80 00 00 00 37 44 22 03 0B 00 00 05 10 03 30 84 00 00 00 00 80 00 00 00 38 44 22 03 80
F4 03 00 00 00 00 00 10 05 03 2D 84 00 00 00 00 80 00 00 00 35 44 22 03 00 0B 00 10 05 03 32 84 00 00 00 00 80 00 00 00 3A 44 22 03 80
F3 03 00 00 00 00 00 05 10 03 2F 84 00 00 00 00 80 00 00 00 37 44 22 03 0B 00 00 05 10 03 34 84 00 00 00 00 80 00 00 00 3C 44 22 03 80
F4 03 00 00 00 00 00 10 05 03 31 84 00 00 00 00 80 00 00 00 39 44 22 03 00 0B 00 10 05 03 2E 84 00 00 00 00 80 00 00 00 36 44 22 03 80
F3 03 00 00 00 00 00 05 10 03 33 84 00 00 00 00 80 00 00 00 3B 44 22 03 0B 00 00 05 10 03 30 84 00 00 00 00 80 00 00 00 38 44 22 03 80

So it becomes:
27 * 376 00 04 04 01 00 08 "AS00" 11 FF 0B 0F 09 08
F4 03 00 00 00 00 00 10 05 03 31 84 00 00 00 0B 00 10 05 03 32 84 00 00 80
F3 03 00 00 00 00 00 05 10 03 33 84 00 00 0B 00 00 05 10 03 34 84 00 00 80
F4 03 00 00 00 00 00 10 05 03 2D 84 00 00 00 0B 00 10 05 03 2E 84 00 00 80
F3 03 00 00 00 00 00 05 10 03 2F 84 00 00 0B 00 00 05 10 03 30 84 00 00 80
F4 03 00 00 00 00 00 10 05 03 2D 84 00 00 00 0B 00 10 05 03 32 84 00 00 80
F3 03 00 00 00 00 00 05 10 03 2F 84 00 00 0B 00 00 05 10 03 34 84 00 00 80
F4 03 00 00 00 00 00 10 05 03 31 84 00 00 00 0B 00 10 05 03 2E 84 00 00 80
F3 03 00 00 00 00 00 05 10 03 33 84 00 00 0B 00 00 05 10 03 30 84 00 00 80

* For bufferstops, same as above, remove 2 references (in red), ID numbers dont change (in yellow):

140 * 108 00 04 05 01 06 08 "AS04" 11 FF 14 00 15 FF 09 02
F4 03 00 00 00 00 00 10 05 03 2D 84 00 00 00 00 80 00 00 00 31 44 22 03 00 0B 00 10 05 03 2E 84 00 00 00 00 80 00 00 00 32 44 22 03 80
F3 03 00 00 00 00 00 05 10 03 2F 84 00 00 00 00 80 00 00 00 33 44 22 03 0B 00 00 05 10 03 30 84 00 00 00 00 80 00 00 00 34 44 22 03 80

* For the Reserved-Path Aware tiles example, same as above regarding removing references (in red), but now the ID-numbers (in yellow) do have to change!

346 * 7 02 04 01 00 01 00 00
347 * 106 00 04 04 01 0F 08 "AS05" 11 FF 0B 0F 09 02
F4 03 00 00 00 00 00 10 05 03 2D 04 00 00 00 00 80 00 00 00 2E 44 22 03 00 0B 00 10 05 03 2F 04 00 00 00 00 80 00 00 00 30 44 22 03 80
F3 03 00 00 00 00 00 05 10 03 31 04 00 00 00 00 80 00 00 00 32 44 22 03 0B 00 00 05 10 03 33 04 00 00 00 00 80 00 00 00 34 44 22 03 80

The ID-numbers have to get this sequence: 2D, 2E, 2F. 30, so:

346 * 7 02 04 01 00 01 00 00
347 * 106 00 04 04 01 0F 08 "AS05" 11 FF 0B 0F 09 02
F4 03 00 00 00 00 00 10 05 03 2D 04 00 00 00 0B 00 10 05 03 2E 04 00 00 80
F3 03 00 00 00 00 00 05 10 03 2F 04 00 00 0B 00 00 05 10 03 30 04 00 00 80




Thats it.... :help: :cucko: 8-)


Top
 Offline Profile  
 
 Post subject: Re: GarryG Does Stations
PostPosted: 22 Sep 2017, 02:29 
Expert
Expert
User avatar

Joined: 03 May 2015, 03:27
Posts: 1716
Location: Newcastle, Australia
Crikey all my birthdays and Christmases all coming at once.

All these lessons like getting lots of toys and not know which one I should play with first. :lol:

I put a copy of all the Lessons .. 28 so far .. into word documents. If you like a copy let me know and send after I neaten them up a bit.

Thanks heaps for all what you done.

Cheers

_________________
All my projects are GPLv2 License.
Soot Happens.
Projects: viewtopic.php?f=179&t=811


Top
 Offline Profile  
 
 Post subject: Re: GarryG Does Stations
PostPosted: 23 Sep 2017, 04:38 
Expert
Expert
User avatar

Joined: 03 May 2015, 03:27
Posts: 1716
Location: Newcastle, Australia
I successfully done the lessons on the multitile stations.

The last one 5x4 took a while to figure out why it not work .. just I change a wrong number in line 622 .. I changed the O1 in from of OE and not the OE. Didn't get any errors messages, just that the set wasn't available to use in game. 7x7, 6x7 and 7x6 was all there but not the 5x4. All fixed now.

The Platform with Custom Foundations and the 2 Single-tile Overlaps will look at these later .. I can look at some stations with Google Earth, but it not the same as actually visiting the stations and get my own photos. Google earth don't show you what is under the awnings.

Cheers pal

_________________
All my projects are GPLv2 License.
Soot Happens.
Projects: viewtopic.php?f=179&t=811


Top
 Offline Profile  
 
Display posts from previous:  Sort by  
Post a new topicPost a reply Page 20 of 23   [ 452 posts ]
Go to page Previous  1 ... 17, 18, 19, 20, 21, 22, 23  Next


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
cron


Status SimuscapeTerms of UseAbout Simuscape

Design by SAC © 2012-2015, Sweden • Powered by phpBB • Based on twilightBB by Daniel St. Jules