pa3ck Posted January 13, 2014 Posted January 13, 2014 Hi there, I have some funny problems here, I got a simple code like this: addEventHandler("onClientPedDamage", getRootElement(), function() cancelEvent() end) Whatever I do in the function, it does nothing at all, the event is not triggered I think... What are the possible things, that could prevent the event to be triggered?
Wei Posted January 13, 2014 Posted January 13, 2014 function cancelPedDamage ( attacker ) cancelEvent() -- cancel any damage done to peds end addEventHandler ( "onClientPedDamage", getRootElement(), cancelPedDamage )
Karuzo Posted January 13, 2014 Posted January 13, 2014 function invPed() cancelEvent() end addEventHandler("onClientPedDamage",ped,invPed) Don't forget to define ped.
pa3ck Posted January 13, 2014 Author Posted January 13, 2014 Actually it's nothing to do with the cancelEvent(), I just used that as an example. I want to set the element data of the source ( the ped that was shot ). EDIT: LOL, I'm silly again, fixed, thanks anyways!
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now