Jump to content

God mode


TorNix~|nR

Recommended Posts

Posted

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?

Posted (edited)

thank you, worked, but remaining vehicle explode and when I damage myself with Rocket lanucher, nothing happend

help?

Edited by TorNix~|nR
Posted
function nodamage(attacker)
	if isElement(attacker) and getElementType(attacker) == "player" and attacker ~= localPlayer then
		cancelEvent()
	end
end

 

  • Like 1

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...