Skotinka Posted June 19, 2011 Share Posted June 19, 2011 может кто подскажет где скачать можно ? и как пользоваться... Link to comment
Skotinka Posted June 19, 2011 Author Share Posted June 19, 2011 ну мне нужен скрипт для дм мап.... допустим телепорт, что бы доехал до точки и патом меня на ней телепортнула в другое место... какой-то пума едитор есть, чет не знаю блин... Link to comment
MX_Master Posted June 19, 2011 Share Posted June 19, 2011 этот скрипт за 2 минуты ты можешь написать (: сам Link to comment
Tren Posted June 19, 2011 Share Posted June 19, 2011 Teleport: gMe=getLocalPlayer() blah = createMarker(X, Y, Z, "Тип Маркера", Размер , R, B, G, A) -- Координаты маркера, на который наезжаешь, и тебя телепортирует function teleport(player) if isPedInVehicle(player) then local vehicle=getPedOccupiedVehicle(player) if source==blah then setElementPosition(vehicle, X, Y, Z) -- Координаты, куда нужно телепортировать. end end end addEventHandler("onClientMarkerHit", getRootElement(), teleport) не моё^ Link to comment
Skotinka Posted June 19, 2011 Author Share Posted June 19, 2011 чет не получается.... Link to comment
DakiLLa Posted June 19, 2011 Share Posted June 19, 2011 чет не получается.... Что именно не получается? Покажи код, какие-то ошибки в дебаг (/debugscript 3) выводит ? Link to comment
Skotinka Posted June 19, 2011 Author Share Posted June 19, 2011 gMe=getLocalPlayer() blah = createMarker(X, Y, Z, "corona", 5 , R, B, G, A) -- 2489.9904785156, -1657.5479736328, 13.335945129395 function teleport(player) if isPedInVehicle(player) then local vehicle=getPedOccupiedVehicle(player) if source==blah then setElementPosition(vehicle, X, Y, Z) -- 2402.1506347656, -1659.1793212891, 13.337488174438 end end end addEventHandler("onClientMarkerHit", getRootElement(), teleport) Link to comment
TEDERIs Posted June 19, 2011 Share Posted June 19, 2011 gMe=getLocalPlayer() blah = createMarker( 2489.9904785156, -1657.5479736328, 13.335945129395, "corona", 5 , 255, 0, 0, 255) function teleport(player) if isPedInVehicle(player) then local vehicle=getPedOccupiedVehicle(player) if source==blah then setElementPosition(vehicle, 2402.1506347656, -1659.1793212891, 13.337488174438) end end end addEventHandler("onClientMarkerHit", getRootElement(), teleport) Link to comment
Skotinka Posted June 19, 2011 Author Share Posted June 19, 2011 ок щас попробую... (R, B, G, A) а это что ? Link to comment
lil Toady Posted June 19, 2011 Share Posted June 19, 2011 Цвет в формате RGBA - Красный, Синий, Зеленый, Прозрачность Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now