forked from Simnation/Main
ed
This commit is contained in:
parent
2127f70ffd
commit
171b571a37
2 changed files with 4 additions and 4 deletions
|
@ -1,5 +1,3 @@
|
||||||
lib.require('ox_lib')
|
|
||||||
|
|
||||||
local function DrawText3D(coords, text)
|
local function DrawText3D(coords, text)
|
||||||
local camCoords = GetFinalRenderedCamCoord()
|
local camCoords = GetFinalRenderedCamCoord()
|
||||||
local distance = #(coords - camCoords)
|
local distance = #(coords - camCoords)
|
||||||
|
|
|
@ -1,12 +1,14 @@
|
||||||
fx_version 'cerulean'
|
fx_version 'cerulean'
|
||||||
game 'gta5'
|
game 'gta5'
|
||||||
|
|
||||||
|
lua54 'yes' -- Add this line to enable Lua 5.4
|
||||||
|
|
||||||
author 'Your Name'
|
author 'Your Name'
|
||||||
description 'Firework Script'
|
description 'Firework Script'
|
||||||
version '1.0.0'
|
version '1.0.0'
|
||||||
|
|
||||||
shared_scripts {
|
shared_scripts {
|
||||||
'@ox_lib/init.lua', -- Add this line
|
'@ox_lib/init.lua',
|
||||||
'config.lua'
|
'config.lua'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -19,5 +21,5 @@ server_scripts {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
'ox_lib' -- Add this line
|
'ox_lib'
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue