MikeBagdala 1 Posted January 2, 2017 At the moment i am experimenting with eventhandlers because i plan on creating missions for the Clan that I am in. But I have a problem with the IncomingMissile eventhandler. player addEventHandler ["IncomingMissile", {hint "SHOT";}] I flew over a ZSU with my A-10 and the ZSU shot a missile at me but I didn't get the message "SHOT". I tried it with various other things but they didn't work either. Can anyone please help? And yes i already googled the problem but every post that i found did not contain the information that i need. Share this post Link to post Share on other sites
das attorney 858 Posted January 2, 2017 try: vehicle player addEventHandler ["IncomingMissile", {hint "SHOT";}] or a10 addEvent.... (if the plane is named) or this addEvent.... (in the A10 initbox). You need to add it to the plane, not the player. 1 Share this post Link to post Share on other sites
MikeBagdala 1 Posted January 2, 2017 It worked! Thank you very much! Share this post Link to post Share on other sites
das attorney 858 Posted January 2, 2017 No probs :) 2 Share this post Link to post Share on other sites