Skip to main content

CanMountEntity

Usage​

  • Called when the player attempts to mount an entity
  • Return a non-null value to override default behavior

Examples​

""
object CanMountEntity(BasePlayer player, BaseMountable entity)
{
Puts("CanMountEntity works!");
return null;
}