Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/06/20 in all areas

  1. كفو يشيخ من أول تعال ضض تسلمو شباب
    1 point
  2. Hello @RekZ, please see if this page is of any help: https://forum.multitheftauto.com/forum/188-server-list-abuse-help/
    1 point
  3. a funcção de quebrado tem que ser 350 no sistema de ligar veiculo tem que ta 352
    1 point
  4. Buenas! Te recomendaría que intentaras hacer una función y que utilizaras guiSetVisible y guiGetVisible para poder mostrar / ocultar la ventana. En este caso, el código sigue siendo cliente debido a que actúas sobre una GUI (podría hacerse de otras formas, pero creo que es la más sencilla). Añade este código a la parte cliente que tengas, y usa /ventana para mostrar u ocultar la ventana. function toggleWindow() if guiGetVisible(window) == true then guiSetVisible(window, false) else guiSetVisible(window, true) end end addCommandHandler("ventana", toggleWindow) Como recomendación personal, para todo lo que quieras hacer necesitarás funciones. Aquí tienes el listado de todas las funciones, tanto de servidor como de cliente. La wiki es tu amigo ? Funciones servidor: https://wiki.multitheftauto.com/wiki/Server_Scripting_Functions Funciones cliente: https://wiki.multitheftauto.com/wiki/Client_Scripting_Functions Saludos!
    1 point
  5. تششكر على الططرح , و يسستحق التثبيت
    1 point
  6. Works beautifully <3 function moveCam(NewX,NewY,NewZ) if (getElementData(getLocalPlayer(), "gamemode") == false) then local x, y, z, x2, y2, z2 = getCameraMatrix( thePlayer ) if not NewX then NewX = 0 end if not NewY then NewY = 0 end if not NewZ then NewZ = 0 end setCameraMatrix( x+NewX, y+NewY, z+NewZ, x2, y2, z2 ) else killTimer(CamTimer) end end addEventHandler("onClientResourceStart", getResourceRootElement(), function() if (getElementData(getLocalPlayer(), "gamemode") == false) then -- Init the camera. fadeCamera(true, 1.0, 0, 0, 0) setCameraMatrix(-1451.81, -338.69, 14.71, -1413.49, -297.85, 25.43) --setCameraMatrix ( -3899.1423339844, 1324.7391357422, 7446 , -3899.1423339844, 1324.7391357422, 7460, 20, 170) CamTimer = setTimer(moveCam, 50, 0, 0.5, 0.5, 0.1) setTime(0,0) setWeather(9) end end ) Now the basic thing work's, now do you have any idea of a good place to circulate on :3?
    1 point
×
×
  • Create New...