Witam problem odno?nie ?ciany raport?w.W?a?nie nwm czemu nie widz? jak kto? wy?le reporta. Stawiam zimne i
[lua]
addCommandHandler("gp",function(plr)
outputChatBox("Interior: " .. getElementInterior(localPlayer) .. " Dimension: " .. getElementDimension(localPlayer))
local x,y,z = getElementPosition(localPlayer)
local xr,yr,zr = getElementRotation(localPlayer)
p=string.format("%.2f,%.2f,%.2f",x,y,z)
setClipboard(p)
outputChatBox("Pozycja gracza: {" ..p.."},")
--outputChatBox("Pozycja Rotacji: "..xr..", " ..yr..", " ..zr, plr)
local veh=getPedOccupiedVehicle(localPlayer)
if veh then
local x,y,z=getElementPosition(veh)
local rx,ry,rz=getElementRotation(veh)
local ID = getElementModel ( veh )
local Model = getVehicleName ( veh )
p=string.format("%.2f,%.2f,%.2f,%.1f,%.1f,%.1f",x,y,z,rx,ry,rz)
setClipboard(p)
outputChatBox("*Pozycja pojazdu:("..p.."),")
outputChatBox("*Nazwa Pojazdu:"..Model.." n*ID Pojazdu "..ID..".")
end
end)
addCommandHandler("gp2",function(plr)
outputChatBox("Interior: " .. getElementInterior(localPlayer) .. " Dimension: " .. getElementDimension(localPlayer))
local x,y,z = getElementPosition(localPlayer)
local xr,yr,zr = getE... |