di3g0 Posted August 30, 2021 Share Posted August 30, 2021 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
RekZ Posted August 30, 2021 Share Posted August 30, 2021 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 ) 1 Link to comment
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