-
Posts
332 -
Joined
-
Last visited
About JesusAliso
- Birthday 14/01/1999
Details
-
Gang
21E
-
Location
Spain
-
Occupation
Estudiante
-
Interests
Programación
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
JesusAliso's Achievements
Fool (23/54)
1
Reputation
-
JesusAliso started following [HELP] How i can do this? and ¿Segmentation Fault (Core Dumped)?
-
Hello everyone, I found this lottery code and I would like to optimize it a little more. I haven't been here for a long time, but I would like to come back and learn a little more. How can I do this: -Limit the purchase of the ticket to 1, since the code allows you to buy 10 -Show the current lottery prize in an on-screen text If you can tell me in detail what functions/events I should use to do this, I would greatly appreciate it. I'm a newbie but I can learn. PD: I publish in the English section, since my Spanish language section is inactive PD: If anyone is interested in helping me with my server please contact me on discord, I don't have much to offer but I would like to learn Discord: .jesusaliso
-
Disculpame pero no entiendo, que pasos debo hacer primeramente? o solo descargo el WinSCP y conecto mediante la IP del VPS con el usuario y contraseña root del mismo? Tengo rato luchando con esto jeje pero no logro acceder a las carpetas del servidor, instale el 'vsftpd' y añadi un usuario pero no logro encontrar las carpetas del Servidor en el VPS.
-
Muchas gracias por el enlace para instalarlo, segui todo los comandos ya que un amigo me dio una VPS para ir armando mi proyecto. Ya logre lo que es instalar el servidor atra vez de los comandos y iniciarlo, pero intente conectarme via el MTA y no conecta. Que pasos me faltarian a seguir? La consola no me ha arrojado ningun error y pense que usando 'openports' tendria acceso al server. https://imgur.com/Dk76lUz Gracias por la ayuda
-
JesusAliso started following aka Blue
-
Buenas tardes amigos, estoy de vuelta por aquí pidiendo ayuda e opiniones de como crear un Servidor para MTA en una PC y mantenerlo en linea (24/7). Hace algunos años deje de jugar al MTA y siempre me ha interesado el Scripting e Servidores, he tenido algunos por medio de empresas y pruebo scripts en servidor local de mi PC principal, menciono esto para que sepan que conozco un poco al hablar de Servidor. Estas son las especificaciones del PC donde deseo iniciar el Servidor: Tengo una conexión a Internet de 6 mb PERO la velocidad máxima al descargar es de 1.5 mb Tengo muchas dudas como; Puedo iniciar un servidor estable con esas especificaciones?, ¿Si no es posible, por que? ¿Falta RAM?, ¿Si es posible, que recomiendas para optimizar o tener un mejor rendimiento? Gracias espero sus respuestas Saludos
-
lol gracias!!
-
holaa, chicos que funciones/eventos debo usar para que un jugador (n)o se pueda 'cambiar' el nombre cuando este muteado?
-
jejeje gracias, disculpa la molestia no se mucho
-
El script es para reiniciar el los 'scores' a 0. Funciona bien, pero me tira ese ERROR, pero no se cuando y cada 2,3,4 minutos. ERROR: [gameplay]/GL/Rscript.lua:7: attempt to index global 'T' (a nil value) Script: root = getRootElement() addEventHandler("onPlayerLogin",root,function(_,account) local kills = getAccountData(account,"T.Kills") local deaths = getAccountData(account,"T.Deaths") if not (deaths and kills) then return end setElementData(source,"T.kills",T.kills) setElementData(source,"T.deaths",T.deaths) end ) addEventHandler("onPlayerLogout",root,function(account) local kills = getElementData(source,"T.Kills") local deaths = getElementData(source,"T.Deaths") setAccountData(account,"T.Kills",T.Kills) setAccountData(account,"T.Deaths",T.Deaths) setElementData(source,"T.Kills",0) setElementData(source,"T.Deaths",0) end ) addEventHandler("onPlayerQuit",root,function() if not isGuestAccount(getPlayerAccount(source)) then local kills = getElementData(source,"T.Kills") local deaths = getElementData(source,"T.Deaths") setAccountData(getPlayerAccount(source),"T.Kills",T.kills) setAccountData(getPlayerAccount(source),"T.Deaths",T.Deaths) end end ) addCommandHandler("reset",function(source) setElementData(source,"T.Kills",0) setElementData(source,"T.Deaths",0) outputChatBox("#ff0000*INFO* #ffffffTus scores han sido reiniciados a '0' !",source,255,0,0, true) if not isGuestAccount(getPlayerAccount(source)) then setAccountData(getPlayerAccount(source),"T.Kills",0) setAccountData(getPlayerAccount(source),"T.Deaths",0) end end ) addEventHandler("onResourceStart",getResourceRootElement(getThisResource()),function() for k,v in ipairs(getElementsByType("player")) do if not isGuestAccount(getPlayerAccount(v)) then if (getAccountData(getPlayerAccount(v),"T.Kills") and getAccountData(getPlayerAccount(v),"T.Deaths")) then setElementData(v,"T.Kills",getAccountData(getPlayerAccount(v),"T.Kills")) setElementData(v,"T.Deaths",getAccountData(getPlayerAccount(v),"T.Deaths")) end end end end )
-
waow ahora si funciona perfectamente Muchas gracias @Arsilex y los otros que intentaron también gracias
-
Ahmmm vale. gracias por la ayuda por cierto si no es mucho pedir, me explicarías la linea donde esta el 'isElement' y el 'getElementType', esa linea. y también por que no usaste 'isPedInVehicle'
-
oh gracias, lo acabo de testear. El mensaje (Debes de estar en un vehículo) funciona bien, pero el panel se sigue abriendo. No tira ningún error o warning.. Este es el clien-side: function guii() if (guiGetVisible(window) == false) then guiSetVisible(window, true) showCursor(true) triggerServerEvent ("check", getLocalPlayer()) else guiSetVisible(window, false) showCursor(false) end end bindKey (keyy, "down", guii)