Jump to content

TigreBlanco

Members
  • Posts

    59
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

TigreBlanco's Achievements

Snitch

Snitch (10/54)

0

Reputation

  1. New Version 1.3.4 is Avaliable For Download
  2. Ya Esta Solucionado Tontaina, Solo Contacte con el Soporte, Ademas, Yo Me Rompo los Huesos por Hacer la Actualizacion de la Base Jura Proyect, Ya Viene la Siguiente Version, Ademas, el Servicio de Vortex Esta Bug Como Veo He Pagado por 1 Mes y Todavia Salen las Notificaciones de que no Pague
  3. Buenas, Tengo un Par de Preguntas Sobre Como Crear Markers con Vehiculos Gratis como BMX, Carros Baratos, Etc, Alrededor de las Zonas en las Que se Necesiten, He Conseguido una Version Buscando en los Foros, y Ahora Quiero Saber Como Crear una Tabla con los Nombres de los Carros e Ids en Vez de Tener que Pon la Propia ID, en el Siguiente Script: Client Side: --[[The function below is the spawn window itself. If you have any previous experience with scripting, even HTML, some of this should make sense to you.--]] function openVehicleSpawnClient() local screenWidth, screenHeight = guiGetScreenSize() local windowWidth, windowHeight = 233, 104 local left = screenWidth/2 - windowWidth/2 local top = screenHeight/2 - windowHeight/2 showCursor(true) vehSpawnWin = guiCreateWindow(left, top, windowWidth, windowHeight, "Vehicle Spawner", false) guiWindowSetSizable(vehSpawnWin, false) sampleLabel = guiCreateLabel(15, 25, 201, 20, "Sample Vehicle Spawner", false, vehSpawnWin) guiLabelSetHorizontalAlign(sampleLabel, "center", false) guiLabelSetVerticalAlign(sampleLabel, "center") -- The lineEdit is where you type the modelID you want to spawn. lineEdit = guiCreateEdit(12, 45, 211, 20, "", false, vehSpawnWin) guiEditSetMaxLength(lineEdit, 32767) -- After entering the modelID you wish to spawn, you press the button "Spawn Vehicle" -- The button triggers the next function we use: spawnVehicleClient spawnBtn = guiCreateButton(14, 75, 211, 23, "Spawn Vehicle", false, vehSpawnWin) addEventHandler("onClientGUIClick", spawnBtn, spawnVehicleClient, false) end addEvent("openVehicleSpawn",true) addEventHandler("openVehicleSpawn",localPlayer,openVehicleSpawnClient) --[[This function gets the modelID you entered in the window, checks if it exists,- - and if the model does exist, it will trigger a serverside event. If the vehicle does not exist, you will get a message with an error warning.--]] function spawnVehicleClient() local id = guiGetText(lineEdit) triggerServerEvent("spawnVehicleServer",localPlayer,id) showCursor(false) guiSetVisible(vehSpawnWin,false) end Server Side: --[[ The first thing we do in our script is create a marker that the player has to enter. When the player enters this marker, it triggers "addEventHandler("onMarkerHit",vehMark,openVehicleSpawnServer)" That line is what triggers our first function. In this case: openVehicleSpawnServer--]] local vehMark = createMarker(-706,966,11.447,"cylinder") function openVehicleSpawnServer(hitElement,matchingDimension) -- Checks if the player is in a vehicle. if getPedOccupiedVehicle(hitElement) == false then -- If the player is not in a vehicle, we will open the spawn window. triggerClientEvent(hitElement,"openVehicleSpawn",hitElement) return true end end addEventHandler("onMarkerHit",vehMark,openVehicleSpawnServer) --[[This function creates the vehicle, if the player is not already in a vehicle.--]] function spawnVehicleServer(id) local x,y,z = getElementPosition(source) local myVeh = createVehicle(id,x+5,y,z) if id == "" then outputChatBox("ERROR: You did not input any value.",source,255,0,0,true) triggerClientEvent(source,"openVehicleSpawn",source) return false end if myVeh then warpPedIntoVehicle(source,myVeh) outputChatBox("You have spawned a "..getVehicleNameFromModel(id).." and have been warped into it",source,0,153,0,true) else outputChatBox("ERROR: The requested ID does not exist.",source,255,0,0,true) triggerClientEvent(source,"openVehicleSpawn",source) end end addEvent("spawnVehicleServer",true) addEventHandler("spawnVehicleServer",root,spawnVehicleServer) Resumiendo, lo Que Necesito, es Sustituir lo de Poner la ID del Propio Carro, al Nombre del Carro, Como en el Car Shop, Pero Vehiculos Gratis
  4. Utiliza el Godmode en Español y Editalo a la Zona en Donde Quieres el Area con GodMode Antizombie, Utiliza: createRadarArea y createColCuboid , Ej: local pCuboid = createColCuboid( 2133.1950683594, 633.66455078125, 10, 197.5, 92, 30 ) local pArea = createRadarArea( 2130, 630, 200, 100, 255, 255, 255, 125 ) Script Hecho Por Mi en la Community: https://community.multitheftauto.com/index.php?p= ... ls&id=6589
  5. El quiere arreglar ese no cambiar a otro Solo le Recomende la Version Actualizada de Fuel System , Si Quiere Modificar la Vieja Version, Sera Algo Mas Complicado
  6. Jaja, la Forma Complicada Siempre Funciona y la Facil Contiene Bugs No cre que sea manera facil modificar eso Eso es lo Que Dije la Forma Facil es Descargarlo de la Community
  7. me dio paja , responden en 24 horas, y si no entienden algo se equivocan y me reinician el server, weno pues hablare con ellos
  8. Hola, Hace Poco Me Di Cuenta de que el Hosting de VortexServers Fallaba, es Decir, Que no Habre Game Services Ni File Manager, Para Subir los Scripts que He Fabricado, He Borrado la Cache, Cookis, Etc, Reiniciado el Pc, el Internet, Pero Sigue Sin Andar, le Doy Clic a Game Services, y Carga, Carga, No Deja de Cargar y No Sale Error, Por Si Alguien Me Puede Decir el Problema, Gracias de Antemano
  9. Ese Sistema de Fual es Muy Viejo Ya, Esta Fuera de Fecha, Prueba Este: https://community.multitheftauto.com/index.php?p= ... ls&id=3287 Y Dinos Si Funciona Bn o No
  10. https://community.multitheftauto.com/index.php?p= ... ls&id=2372 Ese es Sin Comando, Nose Si Contiene Bugs, Eso Tendras que Verlo Tu Jaja, la Forma Complicada Siempre Funciona y la Facil Contiene Bugs
  11. Depende que Script Quieras Restringir/Privatizar Ej: bool isObjectInACLGroup ( string theObject, aclgroup theGroup ) Lee Bn en Estos Apartados: https://wiki.multitheftauto.com/wiki/IsObjectInACLGroup https://wiki.multitheftauto.com/wiki/GetAccountName https://wiki.multitheftauto.com/wiki/AclGetGroup No Olvides Señalar el Gamemode que Tienes, Si es Freeroam, Intenta Crear una Tabla en el fr_server.lua
  12. My Resource Appear in the Top Rated Thanks You All
  13. Thank You Friend, Now Im Putting Roof, It Will Be a Interior Base, Not Everyone Can Entry And Next I Will Restrict Them, You Animate Me
  14. Como ya me Conocen, Soy Owner de Juramento Freeroam, y lo que Me Gustaria, es Contratar a un Scripter, de Mapping se un Monton, Por si me Quieren Contratar de Mapper, Aqui os Dejare Mi Correo: [email protected] , Hace Poco Tiempo, Fabrique un Proyecto de Base Juramento, Y Voy Mejorando Dia a Dia con el Scripting, Ya Pase de Basico, a Basico-Medio, el Mapa Contiene el Comando para Teletransportarse, al Tema, Quiero Contratar un Scripter Barato que Sea Bueno, en Paypal Tengo 6€ que me Estan Viniendo de la Cuenta Bancaria, 2€ en Otra Cuenta de Paypal que Tengo, y 15€ en Mi Tarjeta de Credito que la Mayoria Usare para el Host, lo que Necesito es: Un Script de Trabajos de Medicos y Policias, Un Sistema de Turfs y Un Sistema de Drogas, Saludos
×
×
  • Create New...