Ha valamit elrontottam, akkor bocsi, nem próbáltam ki.
function sf(thePlayer)
local x,y,z,r = -1982.96, 290.05, 34.94, 275.82971191406
if isPedInVehicle(thePlayer) then
local pVeh = getPedOccupiedVehicle(thePlayer)
setElementPosition(pVeh, x,y,z+1) -- azért adok hozzá 1-et, nehogy a jármû a földbe legyen benne teleportálásnál
setElementRotation(pVeh,0,0,r)
else
setElementPosition(thePlayer, x,y,z)
setPedRotation(thePlayer, r)
end
end
addCommandHandler(\"sf\", sf)
function drift(thePlayer)
local x,y,z,r = -303.15, 1525.79, 75.36, 275.82971191406
if isPedInVehicle(thePlayer) then
local pVeh = getPedOccupiedVehicle(thePlayer)
setElementPosition(pVeh, x,y,z+1)
setElementRotation(pVeh,0,0,r)
else
setElementPosition(thePlayer, x,y,z+1)
setPedRotation(thePlayer, r)
end
end
addCommandHandler(\"drift\", drift)