Jump to content

Jambik007

Members
  • Posts

    10
  • Joined

  • Last visited

Jambik007's Achievements

Member

Member (5/54)

0

Reputation

  1. Помогите как сделать чтоб игроки не могли доставать оружие через чат а то пишут /give 38 10000000 и на тебе миниган. Как это убрать???
  2. примерно можете объяснить как и что? Нет. Я не в силах объяснить вам, если вы не умеете искать информацию, особенно если вас в неё ткнули носом. Задавайте вопросы точнее. ну пожалуйстта(( я могу заплатить
  3. примерно можете объяснить как и что?
  4. хм.. мне бы хотелось увидеть как будет не "быстро" )) примерно вот так http://vk.com/video180541590_164612946
  5. Стандартная гидравлика быстро опускается а я хочу как пневму
  6. На - жмешь подвеска опускается на = жмешь поднимается. На 9 и 0 перед и зад опускается.
  7. timerstate = false function down() if timerstate == false then local thePlayer = getLocalPlayer() local theVehicle = getPedOccupiedVehicle(thePlayer) if theVehicle and getVehicleController(theVehicle) then timer = setTimer(startdown, 50, 0, theVehicle) timerstate = true else outputChatBox("Вы не за рулем!", 255, 0, 0) end else end end function startdown(theVehicle) if theVehicle and getVehicleController(theVehicle) then triggerServerEvent("onSuspDown", getRootElement(), theVehicle) else outputChatBox("Вы не за рулем!", 255, 0, 0) killTimer(timer) timerstate = false end end function up() if timerstate == false then local thePlayer = getLocalPlayer() local theVehicle = getPedOccupiedVehicle(thePlayer) if theVehicle and getVehicleController(theVehicle) then timer = setTimer(startup, 50, 0, theVehicle) timerstate = true else outputChatBox("Вы не за рулем!", 255, 0, 0) end else end end function startup(theVehicle) if theVehicle and getVehicleController(theVehicle) then triggerServerEvent("onSuspUp", getRootElement(), theVehicle) else outputChatBox("Вы не за рулем!", 255, 0, 0) killTimer(timer) timerstate = false end end function front() if timerstate == false then local thePlayer = getLocalPlayer() local theVehicle = getPedOccupiedVehicle(thePlayer) if theVehicle and getVehicleController(theVehicle) then timer = setTimer(startfront, 50, 0, theVehicle) timerstate = true else outputChatBox("Вы не за рулем!", 255, 0, 0) end else end end function startfront(theVehicle) if theVehicle and getVehicleController(theVehicle) then triggerServerEvent("onSuspFront", getRootElement(), theVehicle) else outputChatBox("Вы не за рулем!", 255, 0, 0) killTimer(timer) timerstate = false end end function back() if timerstate == false then local thePlayer = getLocalPlayer() local theVehicle = getPedOccupiedVehicle(thePlayer) if theVehicle and getVehicleController(theVehicle) then timer = setTimer(startback, 50, 0, theVehicle) timerstate = true else outputChatBox("Вы не за рулем!", 255, 0, 0) end else end end function startback(theVehicle) if theVehicle and getVehicleController(theVehicle) then triggerServerEvent("onSuspBack", getRootElement(), theVehicle) else outputChatBox("Вы не за рулем!", 255, 0, 0) killTimer(timer) timerstate = false end end function stop() if timerstate == true then killTimer(timer) timerstate = false else end end function bind() bindKey("-", "down", down) bindKey("-", "up", stop) bindKey("=", "down", up) bindKey("=", "up", stop) bindKey("9", "down", front) bindKey("9", "up", stop) bindKey("0", "down", back) bindKey("0", "up", stop) end addEventHandler("onClientResourceStart", getRootElement(), bind)
  8. видел но это не то и проблема не решена
  9. Кто может помочь хочу сделать бинд? На - жмешь подвеска опускается на = жмешь поднимается. На 9 и 0 перед и зад опускается. Помогите плииз
  10. Кто может помочь хочу сделать бинд? На - жмешь подвеска опускается на = жмешь поднимается. На 9 и 0 перед и зад опускается. Помогите плииз
×
×
  • Create New...