Jump to content

[SOLVED]onPlayerSpawn's elementModel


quality

Recommended Posts

I have the following in the play gamemode I created. It's the last part of the script.

addEventHandler( "onPlayerWasted", getRootElement( ), 
    function() 
        setTimer (spawnPlayer, 1500, 1, source, 202.47, 99.30, 4.4 ) 
        setElementModel ("onPlayerSpawn", source, 135) 
        end 
) 

Everything works perfect but setElementModel. When I die it happens this:

mta_screen_2015_05_17_17_27_27.png

mta_screen_2015_05_17_17_27_30.png

mta_screen_2015_05_17_17_27_31.png

mta_screen_2015_05_17_17_27_32.png

What am I doing wrong? thank you.

Also second little problem is this: I'm trying to make the adminteam script so when an admin dies he should spawn to his specified spawn not the random player's spawn.(the first example).

So what I've done in the adminteam resoruce is (also the last part of the script):

function setAdminTeam() 
    if isObjectInACLGroup("user."..getAccountName(getPlayerAccount(source)), aclGetGroup("Admin")) then  
    setTimer ("onPlayerWasted", spawnPlayer, 1500, 1, source, -1187, 179, 14) 
        setElementModel ("onPlayerSpawn", source, 217) 
        end 
        end 

Thanks again.

Edited by Guest
Link to comment

Your setElementModel is wrong.

Use this:

setElementModel( source, 214 ) 

Edit:

Try using this:

addEventHandler ( "onPlayerWasted", root, function ( ) 
    setTimer ( function ( p ) 
        if ( isObjectInACLGroup("user."..getAccountName(getPlayerAccount(source)), aclGetGroup("Admin")) ) then 
            spawnPlayer ( p, -1187, 179, 14, 0, 217 ); 
        else  
            spawnPlayer ( p, 202.47, 99.30, 4.4, 0, 135 ); 
        end 
    end, 1500, source ); 
end ); 

Link to comment
Your setElementModel is wrong.

Use this:

setElementModel( source, 214 ) 

Edit:

Try using this:

addEventHandler ( "onPlayerWasted", root, function ( ) 
    setTimer ( function ( p ) 
        if ( isObjectInACLGroup("user."..getAccountName(getPlayerAccount(source)), aclGetGroup("Admin")) ) then 
            spawnPlayer ( p, -1187, 179, 14, 0, 217 ); 
        else  
            spawnPlayer ( p, 202.47, 99.30, 4.4, 0, 135 ); 
        end 
    end, 1500, source ); 
end ); 

I get in console: bad argument at seTimer line 26 which is setTimer ( function ( p )

and in-game when I die as admin, I stay like this

mta_screen_2015_05_17_19_25_14.png

As regular player I also do not spawn.

mta_screen_2015_05_17_19_26_21.png

*EDIT:

rsz_1dip2c.jpg

Link to comment

Oops, I forgot an argument. Try this:

addEventHandler ( "onPlayerWasted", root, function ( ) 
    setTimer ( function ( p ) 
        if ( isObjectInACLGroup("user."..getAccountName(getPlayerAccount(source)), aclGetGroup("Admin")) ) then 
            spawnPlayer ( p, -1187, 179, 14, 0, 217 ); 
        else 
            spawnPlayer ( p, 202.47, 99.30, 4.4, 0, 135 ); 
        end 
    end, 1500, 1, source ); 
end ); 

Link to comment

Also try this.

addEventHandler ( "onPlayerWasted", root, function ( ) 
    setTimer(spawnAdmin, 1000, 1, source) 
end ); 
  
function spawnAdmin(player) 
    if ( isObjectInACLGroup("user."..getAccountName(getPlayerAccount(player)), aclGetGroup("Admin")) ) then 
        spawnPlayer ( player, -1187, 179, 14, 0, 217 ); 
        else 
        spawnPlayer ( player, 202.47, 99.30, 4.4, 0, 135 ); 
    end 
end 

Link to comment
Oops, I forgot an argument. Try this:
addEventHandler ( "onPlayerWasted", root, function ( ) 
    setTimer ( function ( p ) 
        if ( isObjectInACLGroup("user."..getAccountName(getPlayerAccount(source)), aclGetGroup("Admin")) ) then 
            spawnPlayer ( p, -1187, 179, 14, 0, 217 ); 
        else 
            spawnPlayer ( p, 202.47, 99.30, 4.4, 0, 135 ); 
        end 
    end, 1500, 1, source ); 
end ); 

Does not work. unfortunately.

rsz_11rsz_zwhmn.jpg

Also try this.
addEventHandler ( "onPlayerWasted", root, function ( ) 
    setTimer(spawnAdmin, 1000, 1, source) 
end ); 
  
function spawnAdmin(player) 
    if ( isObjectInACLGroup("user."..getAccountName(getPlayerAccount(player)), aclGetGroup("Admin")) ) then 
        spawnPlayer ( player, -1187, 179, 14, 0, 217 ); 
        else 
        spawnPlayer ( player, 202.47, 99.30, 4.4, 0, 135 ); 
    end 
end 

But Enargy's script works perfectly and it is exactly what I want. I have no clue why you ended your script with ;, Engary's is smaller and more compact. Maybe you can explain what you tried to do lol.

But enargy thank you man! appreciate works as I want.

Link to comment
Oops, I forgot an argument. Try this:
addEventHandler ( "onPlayerWasted", root, function ( ) 
    setTimer ( function ( p ) 
        if ( isObjectInACLGroup("user."..getAccountName(getPlayerAccount(source)), aclGetGroup("Admin")) ) then 
            spawnPlayer ( p, -1187, 179, 14, 0, 217 ); 
        else 
            spawnPlayer ( p, 202.47, 99.30, 4.4, 0, 135 ); 
        end 
    end, 1500, 1, source ); 
end ); 

Does not work. unfortunately.

rsz_11rsz_zwhmn.jpg

Also try this.
addEventHandler ( "onPlayerWasted", root, function ( ) 
    setTimer(spawnAdmin, 1000, 1, source) 
end ); 
  
function spawnAdmin(player) 
    if ( isObjectInACLGroup("user."..getAccountName(getPlayerAccount(player)), aclGetGroup("Admin")) ) then 
        spawnPlayer ( player, -1187, 179, 14, 0, 217 ); 
        else 
        spawnPlayer ( player, 202.47, 99.30, 4.4, 0, 135 ); 
    end 
end 

But Enargy's script works perfectly and it is exactly what I want. I have no clue why you ended your script with ;, Engary's is smaller and more compact. Maybe you can explain what you tried to do lol.

But enargy thank you man! appreciate works as I want.

You are welcome.

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