ActorMount
Usage:
ActorMount(ActorHandle)
Description:
The ActorMount command returns a handle to the actor being ridden by a specified actor. If the specified actor is not riding any mount, 0 will be returned.
See ActorRider.
Example:
Function Main()
Player = Actor()
Mount = ActorMount(Player)
If (Mount != 0)
Output(Player, "You are riding on a " $+ Race(Mount))
EndIf
Return()
End Function
Comments (0)
You don't have permission to comment on this page.