hello, what is the different between
so i test the other one
Can somebody maybe help me and point to the right direction? how i can trigger this hook just if the chinook drops the crate and not if cargoship is spawned ?
thanks
void OnCrateDropped(HackableLockedCrate crate)
{
Puts("OnCrateDropped works!");
}andvoid OnCrateLanded(HackableLockedCrate crate)
{
Puts("OnCrateLanded works!");
}i use alwaysvoid OnCrateDropped(HackableLockedCrate crate)for my plugin if a chinook has delivered a crate, but now if the new cargoship is spawned it triggers this hook tooso i test the other one
void OnCrateLanded(HackableLockedCrate crate)but this hook never was triggerd if a codelocked crate is landing and/or hit the groundCan somebody maybe help me and point to the right direction? how i can trigger this hook just if the chinook drops the crate and not if cargoship is spawned ?
thanks