function callsign(arg)
lua_thread.create(function ()
local bResult = isCharInAnyCar(PLAYER_PED)
local iCar = storeCarCharIsInNoSave(PLAYER_PED) -- Handle
local tResult, iID = sampGetVehicleIdByCarHandle(iCar) -- ID
print(iID)
if tResult then
id3d = sampCreate3dText(arg, -1, -1, -3, 0, 8, true, -1, iID)
sampAddChatMessage('{800000}[//CORMORANT] {FFFFFF}3Д-текст создан, его ID: ' .. id3d .. '.', 0xffffff)
end
end)
end