is this a bug with the game or is it that ships can't orbit other ships.
i tried
Code: Select all
(shpOrder auton 'orbit (sysFindObject Nil "tN +star") 100)
and
(shpOrder auton 'orbit gSource 100)
Code: Select all
<Invoke key="A">
(block (auton)
; Create the auton
(setq auton
(sysCreateShip
&scauton1;
(objGetPos gSource)
&svFriendlyAuton;
"auton"
)
)
; orbit ship
(shpOrder auton 'orbit gSource 100)
; Identify the item
(itmSetKnown gItem)
; Welcome message
(objSendMessage gSource Nil "test auton online [v1.0]")
; Remove the item from the player's list
(objRemoveItem gSource gItem 1)
)
</Invoke>