Jump to content

mehmet

Members
  • Posts

    118
  • Joined

  • Last visited

Everything posted by mehmet

  1. Hi! https://wiki.multitheftauto.com/wiki/Building_MTASA_Server_on_Mac_OS_X does it work? I just can't find how to start the server on MacOS
  2. Before the people were more here. Mta abandoned? I have a problem and no one can help me. I do not know how to start the server on MacOS. And the link is old. Sorry for my English. https://wiki.multitheftauto.com/wiki/Building_MTASA_Server_on_Mac_OS_X
  3. Hello. I'm working on macbook. And I want to test scripts on macbook. But I don't know how to start the server on macos. Please help.
  4. mehmet

    map

    Was used Texture Studio samp
  5. mehmet

    map

    Hello. I buy interior for mta server. But I was given a job in this form. How to put this on the server? Need a converter? //Map Exported with Texture Studio By: [uL]Pottus//////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// //Objects//////////////////////////////////////////////////////////////////////////////////////////////////////// new tmpobjid; tmpobjid = CreateDynamicObject(19377,-2355.042,934.786,93.446,0.000,90.000,0.000,-1,-1,-1,300.000,300.000); SetDynamicObjectMaterial(tmpobjid, 0, 2821, "gb_foodwrap01", "sm_marble", 0x00000000); tmpobjid = CreateDynamicObject(19447,-2352.515,949.228,91.945,0.000,0.000,89.999,-1,-1,-1,300.000,300.000); SetDynamicObjectMaterial(tmpobjid, 0, 9514, "711_sfw", "ws_carpark2", 0x00000000);
  6. mehmet

    Update Lua

    Callum, thank you.
  7. mehmet

    Update Lua

    When the update Lua? and whether it will? Why not introduce a new programming language? (JS, Python, C#)
  8. mehmet

    distant light

    Hey guys! (Sorry its google translete. I do not know much English) Is it possible to make long-range and low beam headlights of the car?
  9. Working! Thank you all who helped!!! CodyJ, xeon, MrTasty thanks you!
  10. xeon, here is my code.Does not help. I enter in the car and he automatically starts the engine
  11. xeon, I'm trying to make a motor system as a role play. When I get in the car. Engine is automatically started. How to make sure to not start automatically?
  12. CodyJ, when I sit in the car, engine is automatically started. I want to manually here is my code function turnEngine(player) local car = getPedOccupiedVehicle(player) if(car and getVehicleController(car) == player) then setVehicleEngineState(car,(not getVehicleEngineState(car))) if(getVehicleEngineState(car)) then outputChatBox("Двигатель запущен", player, 0, 255, 0) else outputChatBox("Двигатель заглушен", player, 255, 0, 0) end end end addCommandHandler ("engine",turnEngine) EngineTable = {} function enterVehicle () setVehicleEngineState(source, EngineTable[source] or false) EngineTable[source] = nil end addEventHandler ( "onVehicleEnter", root, enterVehicle) function exitVehicle () EngineTable[source] = getVehicleEngineState(source) end addEventHandler ( "onVehicleExit", root, enterVehicle)
  13. xeon17, when I go out of the car, engine is started
  14. xeon17, ty man! But when engine ON and i get out of the car, after I get in the car, engine is off. How to fix it?
  15. Hello guys! I need help. I am newbie.I trying to do save the vehicle engine state, manual start engine and stop engine. This is my code. Bad code, but I'm learning function enterVehicle () if getVehicleEngineState(theVehicle) == false then setVehicleEngineState(theVehicle, false) elseif getVehicleEngineState(theVehicle) == true then setVehicleEngineState(theVehicle, true) end end addEventHandler ( "onPlayerVehicleEnter", getRootElement(), enterVehicle )
  16. mehmet

    gfx hack mod

    Hello, I can install gfx hack mod for gta sa in mta server? If yes, then how I do it? If no, maybe you know something like for mta
×
×
  • Create New...