Chaz-CR Posted April 14, 2013 Share Posted April 14, 2013 Hola, perdonen mi ignorancia pero me gustaria saber donde tengo que modificar para que el jugador al entrar tenga su health al 200%, y que la musculatura este al 1000 tambien, Gracias. Link to comment
Xperia Posted April 14, 2013 Share Posted April 14, 2013 Usa el evento OnPlayerJoin y: setPlayerStat Link to comment
BorderLine Posted April 16, 2013 Share Posted April 16, 2013 yo creo que seria mejor usar onPlayerSpawn ya que eso dependera de que tipo de spawn tenga, algunos sistemas de spawn vienen por sistema que el health sea 100 Link to comment
Chaz-CR Posted April 18, 2013 Author Share Posted April 18, 2013 -- Settings for when a player joins -- XYZ coördinates local joinX = 2094 local joinY = -2630 local joinZ = 46 -- Weapon and ammo local joinWeapon = 0 local joinAmmo = 0 -- Message when player joins local joinMessage = "Welcome." -- Skin that player gets local joinSkin = 0 Estos son los eventhandler aca lo tengo que agregar???? addEventHandler("onPlayerJoin", getRootElement(), spawnOnJoin) addEventHandler("onPlayerWasted", getRootElement(), spawnOnDead) Link to comment
AlvareZ_ Posted April 19, 2013 Share Posted April 19, 2013 Intenta esto: function vida (thePlayer) setPlayerStat ( thePlayer, 24, 200 ) end addEventHandler("onPlayerSpawn", getRootElement(), vida) Link to comment
Chaz-CR Posted April 19, 2013 Author Share Posted April 19, 2013 Intenta esto: function vida (thePlayer) setPlayerStat ( thePlayer, 24, 200 ) end addEventHandler("onPlayerSpawn", getRootElement(), vida) Esto lo hago solo con meta aparte o lo incorporo en el que puse? y que tipo client o server? Link to comment
AlvareZ_ Posted April 19, 2013 Share Posted April 19, 2013 Es server, y en la meta solo se pone el nombre de el archivo .lua y el tipo server o client, debes crear el script aparte en un blog de notas y ponerlo como .lua Link to comment
Chaz-CR Posted April 19, 2013 Author Share Posted April 19, 2013 hice todo exactamente como me dijiste y no me funciono Link to comment
FraN-724 Posted April 20, 2013 Share Posted April 20, 2013 Supongamos que el archivo que te dio AlvareZ se llama 'stat', tendrias que poner esto en el meta y tienes que editar la extencion del meta si lo aras en bloc de notas, tienes que ponerle meta.xml o sino, te saldrá meta.xml.txt y eso esta incorrecto, te recomiendo que uses Notepad++. Link to comment
Recommended Posts