Jump to content

cambiar de skin si tienes poca vida


di3g0

Recommended Posts

solo queria cambiar un skin de troll por otro skin de troll golpeado cuando tuviera 50% de vida

soy un asco intenté esto

function trollgolpeado (source)
health = getElementHealth (source)
if (getElementModel(source)  == 153 ) and ( health ( source ) <= 60 ) then
        setElementModel(source, 213)
    end
end
addEventHandler ( "onResourceStart", getRootElement(), trollgolpeado )

 

Link to comment

Ese evento que estas usando es para cuando el resource se enciende, tienes que usar un evento que se ejecute cuando el NPC reciba daño te dejo un ejemplo abajo

function trollgolpeado (loss)
local health = getElementHealth (source)
if (getElementModel(source)  == 153 ) and ( health <= 60 ) then
        setElementModel(source, 213)
    end
end
addEventHandler ( "onPedDamage", getRootElement(), trollgolpeado )

 

  • Thanks 1
Link to comment

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...