TorNix~|nR Posted March 29, 2017 Posted March 29, 2017 Hello guys, I added godmode on my freeroam panel, it works fine but I want to make godmode only on damage by player example: when I fall down or when a vehicle explode, my health doesn't damage, I want to disable this only godmode with players Code function godmode() if ( guiCheckBoxGetSelected( getControl ( wndMain, 'godmode' ) ) == true ) then addEventHandler("onClientPlayerDamage", localPlayer, nodamage) else removeEventHandler("onClientPlayerDamage", localPlayer, nodamage) end end help please?
TorNix~|nR Posted March 29, 2017 Author Posted March 29, 2017 Sorry I forgot it, here it is function nodamage() cancelEvent() end
NeXuS™ Posted March 29, 2017 Posted March 29, 2017 function nodamage(attacker) if isElement(attacker) and getElementType(attacker) == "player" then cancelEvent() end end 1
TorNix~|nR Posted March 29, 2017 Author Posted March 29, 2017 (edited) thank you, worked, but remaining vehicle explode and when I damage myself with Rocket lanucher, nothing happend help? Edited March 29, 2017 by TorNix~|nR
NeXuS™ Posted March 29, 2017 Posted March 29, 2017 function nodamage(attacker) if isElement(attacker) and getElementType(attacker) == "player" and attacker ~= localPlayer then cancelEvent() end end 1
TorNix~|nR Posted March 29, 2017 Author Posted March 29, 2017 worked fine, thanks @NeXuS™ Did I help you? lot of Yes
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