; AAFPLUS sample file
;
; With AAFPLUS it's possible to use else statements.
; This adventure file shows you how to do this
;

loop:

If GroundSpeed(0, 0)
   Print "You are on the ground"
Else
   If GearUp()                           ; This will only be
      Print "You are in the air."        ; executed if groundspeed
   EndIf                                 ; is nonzero
EndIf

Goto loop
