Jump to content

AngelAlpha

Members
  • Posts

    186
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by AngelAlpha

  1. На сколько я знаю, если ты хочешь полноценную карту, то лучше иметь свой клиент с которым идет сама гта (по типу провинции). И уже в файлах гта менять IPL\IDE файлы на свои. А если же тебе надо небольшой кусок города загрузить на сервер, то можешь просто из 3ds max экспортировать dff\txd\col файлы и заменить их как объекты. И с помощью Map Editor разместить их на карте как тебе надо
  2. При открытии панели сделай guiSetInputMode ("no_binds") И при закрытии guiSetInputMode ("no_binds_when_editing")
  3. outputChatBox ("Your message", root, r, g, b)
  4. local myGate2 = createObject (2957, 386.48864746094,-1526.0137939453,32.323436737061 , 0, 0, 45) --gate 2 function openMyGate() moveObject ( myGate2, 3000, 386.48864746094,-1526.0137939453,35.323436737061 ) end addCommandHandler("*1abrir",openMyGate) function movingMyGateBack() moveObject ( myGate2, 3000, 386.48864746094,-1526.0137939453,32.323436737061) end addCommandHandler("*1cerrar",movingMyGateBack) setTimer(function() local time = getRealTime() if time.hour >= 1 and time.hour < 3 then movingMyGateBack() else openMyGate() end end, 10000, 0)
  5. function updateBtnColor () for i, v in ipairs (ButtonRegister) do v.borderColor = tocolor(255, 167, 0, Alpha) end end function pressRegisterBut() Alpha = 0 updateBtnColor () addEventHandler("onClientRender", getRootElement(), movePanelOut) end function pressBack() Alpha = 0 updateBtnColor () addEventHandler("onClientRender", getRootElement(), movePanelIn) end function movePanelOut() Alpha = math.min(Alpha + 5, 255) updateBtnColor () PageId = 2 if tonumber(Alpha) == 255 then removeEventHandler("onClientRender", getRootElement(), movePanelOut) end end function movePanelIn() Alpha = math.min(Alpha + 5, 255) updateBtnColor () PageId = 1 if tonumber(Alpha) == 255 then removeEventHandler("onClientRender", getRootElement(), movePanelIn) end end
  6. local keyCount = 0 local prevTick = 0 bindKey ("p", "down", function() if keyCount < 3 then if getTickCount()-prevTick < 200 then keyCount = keyCount + 1 else keyCount = 0 end else openPanel() end end)
×
×
  • Create New...