Here's the Look method of a boarding pass
(method (doVerb theVerb invItem &tmp [temp0 200] temp200 temp201 temp202 temp203)
(switch theVerb
(2 ; Look
(= temp202 (& (= temp200 (GetTime 3)) $001f)) ; SysDate
(= temp201 (& (>> temp200 $0005) $000f))
(= temp203 (+ (>> temp200 $0009) 1980))
(Format ; "This boarding pass good for one First Class Seat on AeroDork Flight #1, %s to %s, seat %d%c, %s %d, %d only."
@temp0
19
30
(switch gLarryLoc
(0 {L.A.})
(1 {New York})
(2 {Atlantic City})
(3 {Miami})
)
(switch state
(0 {L.A.})
(1 {New York})
(2 {Atlantic City})
(3 {Miami})
)
(/ gAirplaneSeat 100)
(mod gAirplaneSeat 100)
[local0 temp201]
temp202
temp203
)
(TPrint @temp0 80 name)
I was about to change the formatting of the text to swap day and month inside 19.tex file as "AeroDork Flight #1, %s to %s, seat %d%c, %d. %s, %d only." so that it goes d. M, yyyy but that messed up and resulted in error 5.tex not found. I believe it can be done by altering the code itself but I have no clue what needs to be done. Can you help please?