Airdrop plane stuck in the ground

Status
Not open for further replies.

[ETH] p996t2

New Member
Member
Oct 12, 2014
16
0
1
45
Parts Unknown
Hi everybody,

On my server, ive a plane stuck in the ground... making noisy noisy noise...

Somemone know how to unstuck it ?

Already try to reboot server....

thanks for the help !
 

maddyn99

New Member
Member
Oct 17, 2014
7
1
3
56
I had the same issue, were you using The Droper Plugin? I swapped plugins after having to reset my server and havent had any more stuck planes yet.
 

coersum

Plugin Developer
Plugin Developer
Oct 9, 2014
77
5
8
47
Parts Unknown
I have had that twice now, using a stripped out version of dropper, just timer + World.Airdrop():
Python:
__author__ = 'Skully- custom/striped version for personal use by Coersum'
__version__ = '1.0'

import clr
import sys
import math

clr.AddReferenceByPartialName("UnityEngine")
clr.AddReferenceByPartialName("Pluton")
import UnityEngine
import Pluton

class Droper:

    def On_PluginInit(self):
        timer = 20*60000
        Plugin.CreateTimer("delayedDrop", timer).Start()

    def delayedDropCallback(self, timer):
        Online = Server.Players.Count
        if Online >= 2:
            World.AirDrop()

This tells me there is nothing wrong with the plugin. Have you had any crash on your server ? I think my plane stuck in the ground could be something like: if the server crash while a plane is in the air, at restart the plane will be stuck underground (save says there is a plane object in the world, but no location so default is 0,0,0).

save file: http://www.datafilehost.com/d/a31ed0ad
Seed: 10102617
 
Status
Not open for further replies.