Jump to content

Camera Help | ساعدوني


MR.KFO

Recommended Posts

ممكن مساعددةة

كيف اجيب احداثيات كاميرا ؟ :( ساعدوني

getCameraMatrix 

addCommandHandler ( "GetP", function ( )

local x, y, z, xl, yl, zl = getCameraMatrix ( )

if ( x == 0 or y == 0 or z == 0 ) then return end

setClipboard ( " "..x..", "..y..", "..z..", "..xl..", "..yl..", "..zl.." " )

end )

يقول لي بالدي بوق خطا بسطر 4 جمب zl

Link to comment
ممكن مساعددةة

كيف اجيب احداثيات كاميرا ؟ :( ساعدوني

getCameraMatrix 

addCommandHandler ( "GetP", function ( )

local x, y, z, xl, yl, zl = getCameraMatrix ( )

if ( x == 0 or y == 0 or z == 0 ) then return end

setClipboard ( " "..x..", "..y..", "..z..", "..xl..", "..yl..", "..zl.." " )

end )

يقول لي بالدي بوق خطا بسطر 4 جمب zl

addCommandHandler ( "GetP", function () 
local x,y,z,x1,y1,z1 = getCameraMatrix ( ) 
if ( x == 0 or y == 0 or z == 0 ) then return end 
setClipboard ( x..","..y..","..z..","..x1..","..y1..","..z1 ) 
end ) 
Link to comment

ابي اخلي الاحداثيات تظهر بالشات

addCommandHandler ( "GetP", function () 
local x,y,z,x1,y1,z1 = getCameraMatrix ( ) 
if ( x == 0 or y == 0 or z == 0 ) then return end 
setClipboard ( x..","..y..","..z..","..x1..","..y1..","..z1 ) 
outputChatBox("Camera:"..x..","..y..","..z..","..x1..","..y1..","..z1, 255, 125, 0) 
end ) 
Link to comment

ابي اخلي الاحداثيات تظهر بالشات

addCommandHandler ( "GetP", function () 
local x,y,z,x1,y1,z1 = getCameraMatrix ( ) 
if ( x == 0 or y == 0 or z == 0 ) then return end 
setClipboard ( x..","..y..","..z..","..x1..","..y1..","..z1 ) 
outputChatBox("Camera:"..x..","..y..","..z..","..x1..","..y1..","..z1, 255, 125, 0) 
end ) 

الدي بوج يقول في اند ناقصة

Link to comment

addCommandHandler ( 'GetPos', function ( plr ) 
local x, y, z =  getElementPosition ( plr ); 
    if ( x ~= 0 and y ~= 0 and z ~= 0 ) then 
        outputChatBox ( table.concat ( { getCameraMatrix ( plr ) }, ', ' ), plr, 255, 255, 255, true ); 
    end 
end ); 
Edited by Guest
Link to comment

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...