Solved On_Airdrop (python)

salva

Friendly self-taught developer
Administrator
Jan 31, 2016
577
613
63
def On_Airdrop(self, Vector3):
What is the way to take the location where it will fall ?? .

Thanks!
 

salva

Friendly self-taught developer
Administrator
Jan 31, 2016
577
613
63
Okay, I know how to do it, thank you anyway ;)
Code:
def On_Airdrop(self, Vector3):
        loc = Util.CreateVector2(Vector3.x, Vector3.z) 
        pos = str(Vector3)
        Server.BroadcastFrom("Airdrop",  " "+ pos)
 
  • Like
Reactions: Jakkee