Jump to content

Ayuda con el spawn!


Kilfwan

Recommended Posts

Estoy haciendo un recurso de seleccionar skin cuando ingresas al servidor, todo va bien pero cuando entra el jugador no se spawneea al punto exacto donde quiero que el aparesca , y despues cuando de finish se spawnee en cualkier lugar,

La cosa es que no spawnea cuando entra , si no que se spawnea en las posiciones por defecto del freeroam :(

    spawnPlayer (thePlayer, 2170.20972, 1483.10522, 24.14063, 0, 0, 0, 0, nil) -- spawns player with random skin 
    fadeCamera (thePlayer, true) 
    setCameraTarget (thePlayer, thePlayer) 
end 
addEventHandler("onPlayerJoin", resourceRoot, spawnOnLogin) 

Que le agrego o algo? por que La gui aparece pero el jugador no da spawn

Link to comment

Olvidaste function

function() 
    spawnPlayer (source, 2170.20972, 1483.10522, 24.14063, 0, 0, 0, 0, nil) -- spawns player with random skin 
    fadeCamera (source, true) 
    setCameraTarget (source, thePlayer) 
end 
addEventHandler("onPlayerJoin", root, spawnOnLogin) 

Link to comment

Es que olvidaste colocar la funcion

[lua]function spawnOnLogin() 
    spawnPlayer (source, 2170.20972, 1483.10522, 24.14063, 0, 0, 0, 0, nil) -- spawns player with random skin 
    fadeCamera (source, true) 
    setCameraTarget (source) 
end 
addEventHandler("onPlayerJoin", root, spawnOnLogin) 

[/lua]

Link to comment
Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

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