Jump to content

XodiaCompany

Members
  • Posts

    61
  • Joined

  • Last visited

Everything posted by XodiaCompany

  1. y se que ya es mucho pedir pero no saves como hacer que cuando escriba algo en el global chat salga mi nivel o algo que le haga saver a los demas users que ni vel soy yo en espesifico te agradeseria muchisimo amigo gracias de antemano
  2. Ohh amigo genialll pude resolver mi problema con tu solucion eres lo maximo te lo agradesco :D como podria agradecerte :D una ultima cosita como cambio de tipo de fuente de letra seria supergenial si me dices com lo isiste tmb :D si no ok esta bien me has salvado y ami server _D genial bro muchas gracias
  3. D: tendre qur hacerlo por mi mismo entonces de todas maneras si hay otra persona que me pueda ayudar se lo agradeseria gracias amigo.
  4. -Ingles- sorry for my englis Good afternoon amigos.Tengo a problem with the system chateau experience. is it fetches the resource and the exporter will creel killing zombies and reach it to work but I have a problem and this when it killed a zombie score is marked normal experience but the problem is that when I pass a level (go up a level) the score says I need is marked but the next thing I need ie. previously required 100 experience to the next level and now happens need 200 but these numbers are 100 below 200 and when retested the Hud experience can solve the problem disappears 100 and is the next score I need in this case the 200 will show you a picture for you to see and code for q can see and tell me what the problem is. I hope a help please -español- Buenas tardes amigos.Tengo un problema con el sistema de experiencia de castillo. resulta que descarge el resource y le creel el exportador matando zombies y logre que funcionara pero tengo un problema y es el siguiente, cuando mato a un zombie se marca el puntaje experiencia normal pero el problema es que cuando paso de nivel (subo de nivel) el puntaje que dice lo que necesito queda marcado mas el siguiente que necesito es decir. antes necesitaba 100 de experiencia para pasar de nivel y ahora que pase necesito 200 pero se ven estos numero el 100 debajo del 200 y cuando retested el Hud de experiencia puedo arreglar el problema desaparece el 100 y queda el siguiente puntaje que necesito en este caso el 200 le mostrare una imagen para que lo vean y el codigo para q lo puedan ver y decirme cual es el problema. Espero una ayuda porfavor --Esto es despues que retesteo el script del hud para recargarlo y se arregla. --This is after he hud retesteo the script and manages to recharge. --y esto es el problema cuando paso de nivel sin retestear el script. --and this is the problem when I pass a level without retestear the script. --Este es el codigo script que utilizo para hacer el hud. el problema para ser esactos --This is the script code I use to make the hud. sX, sY = guiGetScreenSize() function dxsetText ( ) local text = "" local UP = tonumber ( getElementData ( localPlayer, "level" ) ) or 0 if ( UP == 1 ) then text = " /60" elseif ( UP == 2 ) then text = " /110" elseif ( UP == 3 ) then text = " /160" elseif ( UP == 4 ) then text = " /250" elseif ( UP == 5 ) then text = " /500" elseif ( UP == 6 ) then text = " /1000" elseif ( UP == 7 ) then text = " /1250" elseif ( UP == 8 ) then text = " /1500" elseif ( UP == 9 ) then text = " /1820" elseif ( UP == 10 ) then text = " /2000" elseif ( UP == 11 ) then text = " /2800" elseif ( UP == 12 ) then text = " /3000" elseif ( UP == 13 ) then text = " /5000" elseif ( UP == 14 ) then text = " /7000" elseif ( UP == 15 ) then text = " /9000" elseif ( UP == 16 ) then text = " /11000" elseif ( UP == 17 ) then text = " /15000" elseif ( UP == 18 ) then text = " /19000" elseif ( UP == 19 ) then text = " /21000" elseif ( UP == 20 ) then text = " /25000" elseif ( UP == 21 ) then text = " /30000" elseif ( UP == 22 ) then text = " /35000" elseif ( UP == 23 ) then text = " /40000" elseif ( UP == 24 ) then text = " /45000" elseif ( UP == 25 ) then text = " /60000" elseif ( UP == 26 ) then text = " /65000" elseif ( UP == 27 ) then text = " /70000" elseif ( UP == 28 ) then text = " /85000" elseif ( UP == 29 ) then text = " /90000" elseif ( UP == 30 ) then text = " /95000" elseif ( UP == 31 ) then text = " /100000" elseif ( UP == 32 ) then text = " /110000" elseif ( UP == 33 ) then text = " /120000" elseif ( UP == 34 ) then text = " /130000" elseif ( UP == 35 ) then text = " /140000" elseif ( UP == 36 ) then text = " /150000" elseif ( UP == 37 ) then text = " /160000" elseif ( UP == 38 ) then text = " /170000" elseif ( UP == 39 ) then text = " /180000" elseif ( UP == 40 ) then text = " /190000" elseif ( UP == 41 ) then text = " /200000" elseif ( UP == 42 ) then text = " /210000" elseif ( UP == 43 ) then text = " /220000" elseif ( UP == 44 ) then text = " /230000" elseif ( UP == 45 ) then text = " /240000" elseif ( UP == 46 ) then text = " /250000" elseif ( UP == 47 ) then text = " /260000" elseif ( UP == 48 ) then text = " /270000" elseif ( UP == 49 ) then text = " /280000" elseif ( UP == 50 ) then text = " /290000" elseif ( UP == 51 ) then text = " /300000" end GUIEditor_Label[5] = guiCreateLabel(sX*706/800,sY*069/600,sX*80/600,sY*13/600,text,false) guiSetFont ( GUIEditor_Label[5], "default-bold-small" ) end addEventHandler ( "onClientResourceStart", resourceRoot, dxsetText ) addEventHandler ( "onClientElementDataChange", localPlayer, function ( dataName ) if ( dataName == "level" ) then dxsetText ( ) end end ) ---2 addEventHandler ( "onClientResourceStart", resourceRoot, function ( ) GUIEditor_Label = { } GUIEditor_Label[1] = guiCreateLabel(sX*624/800,sY*045/600,sX*66/800,sY*14/600,"Level:",false) guiSetFont(GUIEditor_Label[1],"default-bold-small") GUIEditor_Label[3] = guiCreateLabel(sX*691/800,sY*048/600,sX*83/800,sY*15/600,"Exp:",false) guiSetFont(GUIEditor_Label[3],"default-bold-small") GUIEditor_Label[2] = guiCreateLabel(sX*625/800,sY*063/600,sX*53/800,sY*43/600, tostring ( getElementData ( localPlayer, "level" ) ),false) guiSetFont ( GUIEditor_Label[2], "sa-header" ) GUIEditor_Label[4] = guiCreateLabel(sX*679/800,sY*069/600,sX*49/800,sY*14/600, tostring ( getElementData ( localPlayer, "exp" ) ),false) guiSetFont ( GUIEditor_Label[4], "default-bold-small" ) end ) addEventHandler ( "onClientElementDataChange", localPlayer, function ( dataName ) if ( dataName == "level" ) then guiSetText ( GUIEditor_Label[2], tostring ( getElementData ( localPlayer, "level" ) ) ) elseif ( dataName == "exp" ) then guiSetText ( GUIEditor_Label[4], tostring ( getElementData ( localPlayer, "exp" ) ) ) end end ) setTimer(dataName,60000,0,source, true) function Dead(source) setElementData(localPlayer,"AAutoS",0) end addEventHandler ( "onPlayerWasted", getRootElement(), Dead ) function st(source) setElementData(localPlayer,"AAutoS",0) end addEventHandler ( "onClientResourceStart", getRootElement(), st ) --este es el xml de exp system que utilizo para exportarlo por si creen que pongo diferentes numeros. --this is the xml exp system I use to export if they believe that I put different numbers "Test 1" experienceRequired = "60" /> "Test 2" experienceRequired = "110" /> "Test 3" experienceRequired = "160" /> "Test 4" experienceRequired = "250" /> "Test 5" experienceRequired = "500" /> "Test 6" experienceRequired = "1000" /> "Test 7" experienceRequired = "1250" /> "Test 8" experienceRequired = "1500" /> "Test 9" experienceRequired = "1820" /> "Test 10" experienceRequired = "2000" /> "Test 11" experienceRequired = "2800" /> "Test 12" experienceRequired = "3000" /> "Test 13" experienceRequired = "5000" /> "Test 14" experienceRequired = "7000" /> "Test 15" experienceRequired = "9000" /> "Test 16" experienceRequired = "11000" /> "Test 17" experienceRequired = "15000" /> "Test 18" experienceRequired = "19000" /> "Test 19" experienceRequired = "21000" /> "Test 20" experienceRequired = "25000" /> "Test 21" experienceRequired = "30000" /> "Test 22" experienceRequired = "35000" /> "Test 23" experienceRequired = "40000" /> "Test 24" experienceRequired = "45000" /> "Test 25" experienceRequired = "60000" /> "Test 26" experienceRequired = "65000" /> "Test 27" experienceRequired = "70000" /> "Test 28" experienceRequired = "85000" /> "Test 29" experienceRequired = "90000" /> "Test 30" experienceRequired = "95000" /> "Test 31" experienceRequired = "100000" /> "Test 32" experienceRequired = "110000" /> "Test 33" experienceRequired = "120000" /> "Test 34" experienceRequired = "130000" /> "Test 35" experienceRequired = "140000" /> "Test 36" experienceRequired = "150000" /> "Test 37" experienceRequired = "160000" /> "Test 38" experienceRequired = "170000" /> "Test 39" experienceRequired = "180000" /> "Test 40" experienceRequired = "190000" /> "Test 41" experienceRequired = "200000" /> "Test 42" experienceRequired = "210000" /> "Test 43" experienceRequired = "220000" /> "Test 44" experienceRequired = "230000" /> "Test 45" experienceRequired = "240000" /> "Test 46" experienceRequired = "250000" /> "Test 47" experienceRequired = "260000" /> "Test 48" experienceRequired = "270000" /> "Test 49" experienceRequired = "280000" /> "Test 50" experienceRequired = "290000" /> "Test 51" experienceRequired = "300000" /> --porfavor espero su ayuda con toda esta informacion tal vez puedan llegar al problema pido alguna respuesta pronto porfavor. --I hope your help please with all of this information may be able to get to ask any problem please reply soon. thanks
  5. agradesco la ayuda chicos estoy seguro de que *****blanco me ayudara. buenas noches
  6. oh lo siento, no sabia esa regla del forum, tampoco lo dije por nada malo solo q es mi apellido disculpen
  7. Supongo que tal vez ese resource que baje vendria siendo solo el hud y la base primaria del script en si es decir la cascara del script. supongo que me falta ahora ponerlo a funcionar con una funcion que vendria siendo el motor que le da vida. debe a ver algo que me falta o algun comando o evento faltante que perjudica mi avance en la construccion del resource. tratare de seguir buscando la solucion para poder aplicar mi script al server gracias a todos por responder disculpen la molestia se los agradesco, si pueden ofrecerme una ayuda mas detallada por favor agregad mi skype: Carlos Tigrillo Esperare mas ayuda
  8. Pues si tengo lo mas basico posible, no puedo decir que soy un experto pero tengo un minimo conocimiento, supongo que nadie nacio aprendido en este mundo planeo aprender si es de aprender todo sobre lua ps aprendo de lua. solo quiero saver cual es el problema del script que le falta o que llave necesita para activarse completamente. gracias de antemano por contestar
  9. Buenas tardes, gracias por comentar. primero quisiera responderte a tu comentario tan demigrante. no planeo plagear a nadie ni hacer algo "ilegal" trato de mejorar ese resource o almenos ponerle un nuevo fin y no me copio tomo ideas como hace todo el mundo como lo hace un pintor como lo hacen todos, y si confieso que lo vi en dayz frontier a peticion de mis users me dijeron que pusiera un sistema de exp y me parecio genial la idea no creo q sea ilegal ya que si lo fuera no pondrian el resource a libre descarga en esta pagina???. te copias tu de los examenes de tu compañero y nadie dice nada ahora yo "que me copie" exelente. espero de este pos una ayuda no que me de comentarios legales o ilegales!! si no me quieres ayudar plis ignora el pos y adelante y lo quieres hacer esperare tu opinion con muchas ansias, cambiando de tema. como instalo bien ese resource yo lo cargo y me aparece con efectividad pero me sale donde deberian ir numeros me sale false y no ocurre mas nada no se operar el Zombiekiller aun no tengo esperiencia sobre eso podrias enseñarme o almenos enseñare un tutorial donde podria ver como instalarlo me urge todos esperan ese resource agradeceria su ayuda chicos.
  10. Good evening , afternoon, morning, I'm new to this forum and I'm sorry to come asking for things or help so fast, but I'm desperate , I have dayz mta server to which I want to put a system EXP_SYSTEM THAT killing zombies level up , I explain each time you kill a zombie will rise 5% experience and when you get to 100 you level and when you write your name appears on your level your name and message you write. I've been looking everywhere for this resource but do not get anywhere, someone please help me if not much to ask is would really appreciate it , on this same page I found several resources of Castle exp_system but it will add, I add at least when it does not work , see the hud but when I kill a zombie is no change occurs just someone please help me with this problem since my server would be great for that resource. I expect an answer soon , and sorry if this post is not here like I said I'm new sorry for the inconvenience
  11. Buenas noches, tardes, días , soy nuevo en este foro y me da pena llegar pidiendo cosas o ayudas tan rápido, pero estoy desesperado, tengo un servidor de mta dayz al cual quiero ponerle un sistema de EXP_SYSTEM QUE suba de nivel matando zombies, me explico cada vez que matas a un zombie subirá 5 % de experiencia y cuando llegue a 100 subes de nivel y que cuando escribas aparezca en tu nombre tu nivel tu nombre y el mensaje que escribas. he estado buscando por todas partes este resource pero no lo consigo por ningún lado, por favor alguien que me ayude si no es mucho pedir se lo agradecería muchísimo, en esta misma pagina he encontrado varios resources de exp_system de Castillo pero no lo se agregar, almenos cuando lo agrego no me funciona, aparece el hud pero cuando mato a un zombie queda igual no ocurre ningún cambio por favor alguien que me ayude con este problema ya que se vería genial mi servidor con ese resource. espero una respuesta pronto, y disculpen si este post no va aquí ;/ como dije antes soy nuevo disculpen la molestia /b]
×
×
  • Create New...