الأحداثيات يطلعون ف الشات , وينسخون تلقائي , وتقدر تسوي لهم لصق مباشرة للإحداثيات ف كودك
addCommandHandler ( "pos",
function ( )
local x, y, z = getElementPosition ( localPlayer );
local x, y, z = string.format ( "%.2f", x ), string.format ( "%.2f", y ), string.format ( "%.2f", z );
outputChatBox ( "Your position is: " .. x .. ", " .. y .. ", " .. z, 239, 123, 0, true );
setClipboard ( x .. ", " .. y .. ", " .. z );
end
);