Jump to content

setElementHealth


Lloyd Logan

Recommended Posts

Posted

Hey,

i am creating a simple spawn script, how is it so that when they spawn they only have 10 health?

Thanks

Lloyd

If you need an Intermediate scripter feel free to PM me as I will accept "almost" any job, STATUS: UNAVAILABLE

SCOTLAND, my hometown, and the Home of GTA!

Posted

This will set the health of the player to 10% everytime they spawn.

addEventHandler ( "onPlayerSpawn", root, 
    function ( ) 
        setElementHealth ( source, 10 ) 
    end 
) 

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

Posted
This will set the health of the player to 10% everytime they spawn.
addEventHandler ( "onPlayerSpawn", root, 
    function ( ) 
        setElementHealth ( source, 10 ) 
    end 
) 

Thanks alot Castillo!

Edit: One more question sorry, is it possible to make it so that when a player kills another, they get an item or something?

If you need an Intermediate scripter feel free to PM me as I will accept "almost" any job, STATUS: UNAVAILABLE

SCOTLAND, my hometown, and the Home of GTA!

Posted
addEventHandler ( "onPlayerWasted", root, 
    function ( _, killer ) 
        if ( killer and killer ~= source ) then 
            -- Do something 
        end 
    end 
) 

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

Posted
addEventHandler ( "onPlayerWasted", root, 
    function ( _, killer ) 
        if ( killer and killer ~= source ) then 
            -- Do something 
        end 
    end 
) 

So what would i do if i were to give him ammo?

If you need an Intermediate scripter feel free to PM me as I will accept "almost" any job, STATUS: UNAVAILABLE

SCOTLAND, my hometown, and the Home of GTA!

Posted
giveWeapon 

addEventHandler ( "onPlayerWasted", root, 
    function ( _, killer ) 
        if ( killer and killer ~= source ) then 
            giveWeapon( killer, 24, 1) 
        end 
    end 
) 

That one?

If you need an Intermediate scripter feel free to PM me as I will accept "almost" any job, STATUS: UNAVAILABLE

SCOTLAND, my hometown, and the Home of GTA!

Posted

Yes, exactly.

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

Posted
Yes, exactly.

Super, thanks again!

If you need an Intermediate scripter feel free to PM me as I will accept "almost" any job, STATUS: UNAVAILABLE

SCOTLAND, my hometown, and the Home of GTA!

Posted

You're welcome.

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

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