-
Posts
1,673 -
Joined
-
Last visited
-
Days Won
6
Everything posted by 0xCiBeR
-
MTASA wiki - offline copies / online mirrors
0xCiBeR replied to MX_Master's topic in Site/Forum/Discord/Mantis/Wiki related
You're welcome. Also the site has been updated, there is a new version of the wiki available as of 11-17-2016. Enjoy. -
Made a script for auto handling MTA server installs.. In you SSH console you should first execute this: sudo wget -O mta-install.sh http://mta.ggcommunity.net/scripts/mta-install.sh && sudo chmod +x mta-install.sh And then run this: sudo ./mta-install.sh After doing this you should have a server up and running. To see the console use: screen -r mtaserver To exit console without shutdown do this combination of keys: CTRL + A + D Remember to edit ACL.XML and MTASERVER.CONF with the server off to your needs. My original post: Note: I'll try to keep this script updated and improved but i don't guarantee this Note2: I've reused some of renkon's functions for getting latest server versions and system architecture. Changelog 11/19/2016: Added some functions to check latest MTA Version and architecture version.( Thanks to renkon on that )
-
Si o si tenes que usar fadeCamera despues del spawn. Regla N° 1 de cualquier sistema de spawneo.
-
onClientPlayerDamage con ese evento compruebas si el atacante esta en la tabla de godmode activo.
-
RPG or RPG pass pack for my server.
0xCiBeR replied to winklennart's topic in Ayuda relacionada al cliente/servidor
Desde cuando te parece prudente darle animo a usuarios nuevos del foro a usar código que ciertamente necesita autorización de sus creadores para usarse? @winklennart no sigas sus consejos, en verdad te llevan por mal camino. -
You still need a user name and password or your server will be vulnerable
-
The only option is to use the SDK or use various combination of languages to do what you want. I'm talking from experience as i was developing a software just for that.
-
Tambien vale aclarar que estas mezclando en un mismo elementData numeros y strings. Eso te puede generar problemas a futuro asi como tambien consumir mas tiempo de procesamiento de la VM de Lua. Un numero se compara mas rapido que un string, ademas de que un numero tiene menos peso logico que un string. Como recomendación para lo que estas haciendo, no uses strings. Saludos
-
for i = 1, #guis.botones do guiSetVisible(guis.botones[i], false) end Te falto una S
- 12 replies
-
- sin elementdata
- hacer funcionar
-
(and 1 more)
Tagged with:
-
KFE FREEROAM [FIGHT-KNIFE] Rangos, pins y más!
0xCiBeR replied to KFE's topic in Servidores en donde jugar
Ahora si me atrevo a decir que es uno de los post de presentación de un servidor mejor armados del foro. Felicidades, esta muy detallado y se ve muy interesante, les deseo la mejor de las suertes a todo el equipo! Cualquier cosa cuentan con mi apoyo -
Puede ser que no tengas suficiente memoria de video para crear la textura. Revisa eso
-
Busco socicio para un Multy Gamemode DM/race etc
0xCiBeR replied to xRGamingx's topic in Servidores en donde jugar
Scripting y programación en el contexto del foro no es lo mismo? @xRGamingx yo ofrezco servicios de programación paga, desarrollo web, resources de MTA, soluciones de replicación y backup de datos, bot's y varios servicios mas, cualquier cosa contactame. -
You're missing old school zombie gamemode, ie Resident Evil.
-
Moderator Of Algeria / Tunisia ?
0xCiBeR replied to Anis's topic in General Multi Language discussion
I can't seem to understand what you mean here. Could you write it in a better English? -
Moderator Of Algeria / Tunisia ?
0xCiBeR replied to Anis's topic in General Multi Language discussion
I've moved your post to the correct section. Though i've looked in your contributions on the forum and i think you are a bit unexperienced; plus the fact that Algerian section doesn't show that many movement. Anyways, the best of luck! -
Reinstala MTA Usando este link: http://wesley2.mtasa.icfar.com/mtasa/main/mtasa-1.5.3.exe
-
Tenes algun video donde se puede ver lo que quieres?
-
function buyslots( number ) if number <= 0 then outputChatBox("Numero de slots invalido",source,255,0,0,true) return end local account = source:getAccount ( ) if not account:isGuest ( ) then local moneytotal = tonumber( number ) * 5000 if getPlayerMoney( source ) >= moneytotal then local mygang = getPlayerGroup(source) if mygang then addGroupSlots( mygang, number ) outputChatBox("Has comprado: "..number.." slots para tu grupo",source,0,200,0,true) source:takeMoney ( moneytotal ) addActionReg( source, "Buy "..number.." slots to group: "..mygang) end else outputChatBox("No tienes dinero suficiente para comprar esa cantidad de slots",source,200,0,0,true) end end end addEvent("buyslotsforgroup",true) addEventHandler("buyslotsforgroup",ELEMENTOGLOBAL,buyslots)
-
Hice un script para automatizar el proceso de instalación de un servidor MTA en linux, con sistema operativo Debian de 64 bits. Primero deben loguear en su consola SSH y introducir el siguiente comando: sudo wget -O mta-install.sh http://mta.ggcommunity.net/scripts/mta-install.sh && sudo chmod +x mta-install.sh Luego introducimos este: sudo ./mta-install.sh Una vez hecho esto deberíamos tener el servidor encendido. Para visualizar la consola ingresamos esto: screen -r mtaserver Para salir de la consola sin apagar el servidor usamos esta combinación de teclas: CTRL + A + D Recuerden editar el ACL.XML y el MTASERVER.CONF en base a sus necesidades, siempre con el servidor apagado.
-
How to install the MTASA server on Debian 6.0 & 7.0 32/64bit
0xCiBeR replied to jhxp's topic in Linux-Server
Made a script for auto handling this on Debian x64 based systems. In you SSH console you should first execute this: sudo wget -O mta-install.sh http://mta.ggcommunity.net/scripts/mta-install.sh && sudo chmod +x mta-install.sh And then run this: sudo ./mta-install.sh After doing this you should have a server up and running. To see the console use: screen -r mtaserver To exit console without shutdown do this combination of keys: CTRL + A + D Remember to edit ACL.XML and MTASERVER.CONF with the server off to your needs. Note: I'll try to keep this script updated and improved but i don't guarantee this. -
Pues tendrías que postear la imagen, ambas, y el script para poder ayudarte.
-
._. la verdad no entiendo la pregunta.
-
Depende muchisimo como tenes hecho el script.. Como lo haría yo es definir el centro de la imagen y usar funciones de geometría para calcular el ángulo de el needle en base a la velocidad del vehículo..
-
Usa el argumento de rotación en dxDrawImage usando los valores obtenidos de esta función: function getVehicleSpeed() if isPedInVehicle(getLocalPlayer()) then local vx, vy, vz = getElementVelocity(getPedOccupiedVehicle(getLocalPlayer())) return math.sqrt(vx^2 + vy^2 + vz^2) * 180 end return 0 end Recuerda que esto devuelve en KM/h