mirror of
https://github.com/jimathy/jim_bridge.git
synced 2026-08-17 22:16:03 +01:00
Compare commits
85 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c3ce0ccc54 | ||
|
|
0b7c96f66a | ||
|
|
3daa6a9772 | ||
|
|
c86cdf9227 | ||
|
|
ca78c1b100 | ||
|
|
398701c4d7 | ||
|
|
00e420fd45 | ||
|
|
a07cbc467d | ||
|
|
ccd5144e7b | ||
|
|
195182f850 | ||
|
|
c2b48c444c | ||
|
|
156b44a49b | ||
|
|
a48b83155c | ||
|
|
e455d1b43d | ||
|
|
14c2a79673 | ||
|
|
97a1d97678 | ||
|
|
5001642504 | ||
|
|
5f413a2823 | ||
|
|
4d04682b33 | ||
|
|
cb38d275d1 | ||
|
|
84cfe1c97d | ||
|
|
47b01df621 | ||
|
|
7e073b16ec | ||
|
|
ab4298fa2d | ||
|
|
7997ea45b7 | ||
|
|
7aa9d90d0d | ||
|
|
451e4cbbdb | ||
|
|
520758b355 | ||
|
|
e4e9ef0fb2 | ||
|
|
ada724069b | ||
|
|
9198068a19 | ||
|
|
263d5160aa | ||
|
|
65137207ae | ||
|
|
3bd9935346 | ||
|
|
23e2488cd1 | ||
|
|
e9bbdd4ce0 | ||
|
|
f5a7ec9291 | ||
|
|
d80ea38a39 | ||
|
|
e64912622b | ||
|
|
04b25e2c06 | ||
|
|
51473bf0b8 | ||
|
|
921b973f81 | ||
|
|
42d08ccf4c | ||
|
|
68412d8006 | ||
|
|
4c89ec3190 | ||
|
|
b2fa1ef247 | ||
|
|
9872c77591 | ||
|
|
7ecb2f18e9 | ||
|
|
d0c09f3e00 | ||
|
|
c1e38a93bd | ||
|
|
6a3041524a | ||
|
|
f069db5c61 | ||
|
|
3b768d5c7d | ||
|
|
6b8698353b | ||
|
|
5868312388 | ||
|
|
b0b139b179 | ||
|
|
4bf4806b9e | ||
|
|
826e745fc3 | ||
|
|
bc2867984c | ||
|
|
31633bc61d | ||
|
|
1623feacf1 | ||
|
|
a203657e2a | ||
|
|
1f4a2ee3d9 | ||
|
|
e9c54cbdd4 | ||
|
|
4e8a15590f | ||
|
|
c745d51832 | ||
|
|
f9b97b7505 | ||
|
|
489da64c5e | ||
|
|
07c35cd917 | ||
|
|
3f72a21d75 | ||
|
|
4ad6170a49 | ||
|
|
18df0817b1 | ||
|
|
0eca7ae29e | ||
|
|
6a5913230f | ||
|
|
b7a284e051 | ||
|
|
0accdda2dd | ||
|
|
37b855d7a7 | ||
|
|
7432dd5118 | ||
|
|
59ff34c9cc | ||
|
|
b81ada265b | ||
|
|
65c9c6c586 | ||
|
|
278cbb4d34 | ||
|
|
381c19e701 | ||
|
|
fc2ebefc9e | ||
|
|
423b75e7d9 |
17
.github/workflows/notify-discord.yml
vendored
Normal file
17
.github/workflows/notify-discord.yml
vendored
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
name: Discord Commit Notifier
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- '*' # triggers on all branches
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
notify:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Discord Commits
|
||||||
|
uses: Sniddl/discord-commits@v1.6
|
||||||
|
with:
|
||||||
|
webhook: ${{ secrets.DISCORD_WEBHOOK }}
|
||||||
|
template: "avatar-with-link"
|
||||||
|
include-extras: true
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
function parseVersion(version)
|
local function parseVersion(version)
|
||||||
local parts = {}
|
local parts = {}
|
||||||
for num in version:gmatch("%d+") do
|
for num in version:gmatch("%d+") do
|
||||||
table.insert(parts, tonumber(num))
|
table.insert(parts, tonumber(num))
|
||||||
@@ -6,7 +6,7 @@ function parseVersion(version)
|
|||||||
return parts
|
return parts
|
||||||
end
|
end
|
||||||
|
|
||||||
function compareVersions(current, newest)
|
local function compareVersions(current, newest)
|
||||||
local currentParts = parseVersion(current)
|
local currentParts = parseVersion(current)
|
||||||
local newestParts = parseVersion(newest)
|
local newestParts = parseVersion(newest)
|
||||||
for i = 1, math.max(#currentParts, #newestParts) do
|
for i = 1, math.max(#currentParts, #newestParts) do
|
||||||
@@ -20,28 +20,48 @@ end
|
|||||||
|
|
||||||
function CheckBridgeVersion()
|
function CheckBridgeVersion()
|
||||||
if IsDuplicityVersion() then
|
if IsDuplicityVersion() then
|
||||||
CreateThread(function()
|
CreateThread(function()
|
||||||
Wait(4000)
|
Wait(4000)
|
||||||
local currentVersionRaw = GetResourceMetadata("jim_bridge", 'version')
|
local currentVersionRaw = GetResourceMetadata("jim_bridge", 'version')
|
||||||
PerformHttpRequest('https://raw.githubusercontent.com/jimathy/jim_bridge/master/version.txt', function(err, newestVersionRaw, headers)
|
--PerformHttpRequest('https://raw.githubusercontent.com/jimathy/UpdateVersions/master/test.txt', function(err, body, headers)
|
||||||
if not newestVersionRaw then
|
PerformHttpRequest('https://raw.githubusercontent.com/jimathy/jim_bridge/master/version.txt', function(err, body, headers)
|
||||||
print("^1Unable to run version check for ^7'^3jim_bridge^7' (^3"..currentVersionRaw.."^7)")
|
if not body then
|
||||||
return
|
print("^1Unable to run version check for ^7'^3jim_bridge^7' (^3"..currentVersionRaw.."^7)")
|
||||||
end
|
return
|
||||||
|
end
|
||||||
|
|
||||||
newestVersionRaw = newestVersionRaw:match("[^\r\n]+")
|
local lines = {}
|
||||||
local compareResult = compareVersions(currentVersionRaw, newestVersionRaw)
|
for line in body:gmatch("[^\r\n]+") do
|
||||||
|
table.insert(lines, line)
|
||||||
|
end
|
||||||
|
|
||||||
if compareResult == 0 then
|
local newestVersionRaw = lines[1] or "0.0.0"
|
||||||
print("^7'^3jim_bridge^7' - ^2You are running the latest version^7. ^7(^3"..currentVersionRaw.."^7)")
|
local changelog = {}
|
||||||
elseif compareResult < 0 then
|
for i = 2, #lines do
|
||||||
print("^7'^3jim_bridge^7' - ^1You are running an outdated version^7! ^7(^3"..currentVersionRaw.."^7 → ^3"..newestVersionRaw.."^7)")
|
table.insert(changelog, lines[i])
|
||||||
else
|
end
|
||||||
print("^7'^3jim_bridge^7' - ^5You are running a newer version ^7(^3"..currentVersionRaw.."^7 ← ^3"..newestVersionRaw.."^7)")
|
|
||||||
end
|
local compareResult = compareVersions(currentVersionRaw, newestVersionRaw)
|
||||||
end)
|
|
||||||
end)
|
if compareResult == 0 then
|
||||||
end
|
print("^7'^3jim_bridge^7' - ^2You are running the latest version^7. ^7(^3"..currentVersionRaw.."^7)")
|
||||||
|
elseif compareResult < 0 then
|
||||||
|
print("^1----------------------------------------------------------------------^7")
|
||||||
|
print("^7'^3jim_bridge^7' - ^1You are running an outdated version^7! ^7(^3"..currentVersionRaw.."^7 → ^3"..newestVersionRaw.."^7)")
|
||||||
|
for _, line in ipairs(changelog) do
|
||||||
|
print((line:find("http") and "^7" or "^5")..line)
|
||||||
|
end
|
||||||
|
print("^1----------------------------------------------------------------------^7")
|
||||||
|
SetTimeout(1200000, function()
|
||||||
|
CheckBridgeVersion()
|
||||||
|
end)
|
||||||
|
else
|
||||||
|
print("^7'^3jim_bridge^7' - ^5You are running a newer version ^7(^3"..currentVersionRaw.."^7 ← ^3"..newestVersionRaw.."^7)")
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
end)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
CheckBridgeVersion()
|
CheckBridgeVersion()
|
||||||
58
documentation/animal_ped_support.md
Normal file
58
documentation/animal_ped_support.md
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
## Animal Ped Support
|
||||||
|
### isAnimal.lua
|
||||||
|
This module provides logic to detect if a Ped or model is an animal and classify it into specific categories (cat, dog, coyote, etc.). Useful for wildlife, animal roles, or pet systems.
|
||||||
|
|
||||||
|
❔At player load in, it attempts to get what kind of ped/animal you are but there are functions to double check in scripts
|
||||||
|
|
||||||
|
❔Alot of this is used to determine what models/animations are available
|
||||||
|
|
||||||
|
Global flags:
|
||||||
|
- `isCat`, `isDog`, `isBigDog`, `isSmallDog`, `isCoyote`, `isAnimal` — used to store classification of the player's current ped.
|
||||||
|
|
||||||
|
- **isPedAnimal(ped?)**
|
||||||
|
|
||||||
|
- Checks if a ped is an animal based on predefined animal models.
|
||||||
|
- Sets global `isAnimal` to true if matched.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local isPlayerAnimal = isPedAnimal()
|
||||||
|
local isOtherPedAnimal = isPedAnimal(GetPedInVehicleSeat(vehicle, -1))
|
||||||
|
```
|
||||||
|
|
||||||
|
- **isCat(ped)**
|
||||||
|
|
||||||
|
- Returns true if the ped model matches a cat.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
if isCat() then print("You're a cat!") end
|
||||||
|
```
|
||||||
|
|
||||||
|
- **isDog(ped)**
|
||||||
|
|
||||||
|
- Returns two values:
|
||||||
|
- `true`, `true` — if ped is a big dog
|
||||||
|
- `true`, `false` — if ped is a small dog
|
||||||
|
- `false`, `nil` — if not a dog
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local isDog, isBig = isDog()
|
||||||
|
if isDog then print(isBig and "Big Dog" or "Small Dog") end
|
||||||
|
```
|
||||||
|
|
||||||
|
- **getAnimalModels()**
|
||||||
|
|
||||||
|
- Returns a flat list of all registered animal model hashes.
|
||||||
|
- Can be used to check ped models against
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
for _, model in pairs(getAnimalModels()) do print(model) end
|
||||||
|
```
|
||||||
|
|
||||||
|
- **getAnimalAnims(ped)**
|
||||||
|
|
||||||
|
- Returns the animation set defined for the given animal model.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local anims = getAnimalAnims(PlayerPedId())
|
||||||
|
if anims then playAnim(anims.sitDict, anims.sitAnim) end
|
||||||
|
```
|
||||||
177
documentation/helper_functions/helpers.md
Normal file
177
documentation/helper_functions/helpers.md
Normal file
@@ -0,0 +1,177 @@
|
|||||||
|
### helpers.lua
|
||||||
|
This utility module provides functions for resource checks, debugging, formatting, coordinate math, vector calculations, progress bars, and drawing tools.
|
||||||
|
|
||||||
|
- **isStarted(script)**
|
||||||
|
- Returns `true` if a resource is started.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
if isStarted("myResource") then print("Resource is running") end
|
||||||
|
```
|
||||||
|
|
||||||
|
- **getScript()**
|
||||||
|
- Caches and returns the name of the current resource.
|
||||||
|
- Easier than typing `GetCurrentResourceName()` over and over
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
print("Current script:", getScript())
|
||||||
|
```
|
||||||
|
|
||||||
|
- **isServer()**
|
||||||
|
- Returns true if running on the server.
|
||||||
|
- This was mainly made becuase `IsDuplicityVersion()` kept confusing me
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
if isServer() then print("Server-side!") end
|
||||||
|
```
|
||||||
|
|
||||||
|
- **debugPrint(...)** / **eventPrint(...)**
|
||||||
|
- Prints messages with debug context if debugMode is enabled.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
debugPrint("Loaded object:", objName)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **jsonPrint(table)**
|
||||||
|
- Pretty-prints a table with colorized JSON if debugMode is enabled.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
jsonPrint(myData)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **keyGen()**
|
||||||
|
- Generates a 3-character unique ID.
|
||||||
|
- Good grabbing randomly generated strings
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
print("Generated Key:", keyGen())
|
||||||
|
```
|
||||||
|
|
||||||
|
- **cv(amount)**
|
||||||
|
- Comma-separates a number (e.g., `1000000` to `1,000,000`).
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
print(cv(1000000)) -- "1,000,000"
|
||||||
|
```
|
||||||
|
|
||||||
|
- **formatCoord(vec)**
|
||||||
|
- Outputs a formatted string from vector types.
|
||||||
|
- Compacts and adds console colours to the vector to be printed
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
print(formatCoord(vector3(123.45, 678.9, 10.0)))
|
||||||
|
```
|
||||||
|
|
||||||
|
- **getCenterOfZones(coords)**
|
||||||
|
- Returns average center position of a vector3 list.
|
||||||
|
- A few use cases, but I used it to see how well spaced blips were together
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local center = getCenterOfZones({vector3(0,0,0), vector3(10,10,0)})
|
||||||
|
```
|
||||||
|
|
||||||
|
- **countTable(tbl)**
|
||||||
|
- Returns the number of entries in a table.
|
||||||
|
- Simple function to print how many "entires" are in a table
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
print(countTable({a=1,b=2,c=3})) -- 3
|
||||||
|
```
|
||||||
|
|
||||||
|
- **pairsByKeys(tbl)**
|
||||||
|
- Iterator for sorted keys.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
for k, v in pairsByKeys(myTable) do print(k, v) end
|
||||||
|
```
|
||||||
|
|
||||||
|
- **concatenateText(tbl)**
|
||||||
|
- Joins string table entries with newlines.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
print(concatenateText({"Line 1", "Line 2"}))
|
||||||
|
```
|
||||||
|
|
||||||
|
- **RotationToDirection(rot)**
|
||||||
|
- Converts a heading vector to a directional vector.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local dir = RotationToDirection(rotation)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **basicBar(percent)**
|
||||||
|
- Returns a bar like `████░░░░░` at 50%.
|
||||||
|
- Basically a progress bar but as a string, I use this in drawTexts when progressbars aren't able to be used
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
print(basicBar(50))
|
||||||
|
```
|
||||||
|
|
||||||
|
- **normalizeVector(vec)**
|
||||||
|
- Returns a normalized version of a vector3.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local norm = normalizeVector(vector3(3,4,0))
|
||||||
|
```
|
||||||
|
|
||||||
|
- **drawLine(start, end, color)** / **drawSphere(pos, color)**
|
||||||
|
- Debug drawing helpers.
|
||||||
|
- Stays visible for more than one frame
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
drawLine(vector3(0,0,0), vector3(10,10,10), vector4(255,0,0,255))
|
||||||
|
drawSphere(vector3(5,5,5), vector4(0,255,0,255))
|
||||||
|
```
|
||||||
|
|
||||||
|
- **PerformRaycast(start, end, entity?, flags?)**
|
||||||
|
- Raycast with material detection. Returns ray hit data.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local hit, hitPos, material = PerformRaycast(startVec, endVec, playerPed, 1)
|
||||||
|
if hit == 1 then
|
||||||
|
print("Hit at position:", hitPos)
|
||||||
|
print("Material:", material)
|
||||||
|
end
|
||||||
|
```
|
||||||
|
|
||||||
|
- **adjustForGround(coords)**
|
||||||
|
- Adjusts a z-coordinate to ground height.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
coords = adjustForGround(vector3(100, 200, 300))
|
||||||
|
```
|
||||||
|
|
||||||
|
- **ensureNetToVeh(id)** / **ensureNetToEnt(id)**
|
||||||
|
- Resolves net ID to entity safely.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local veh = ensureNetToVeh(netId)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **sendLog(text)** / **sendServerLog(data)**
|
||||||
|
- Logging helpers, includes player name, coords, script source.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
sendLog("Suspicious activity detected")
|
||||||
|
```
|
||||||
|
|
||||||
|
- **GetGroundMaterialAtPosition(coords)**
|
||||||
|
- Returns the material hash + readable name from the surface below coords.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local hash, name = GetGroundMaterialAtPosition(vector3(0,0,0))
|
||||||
|
```
|
||||||
|
|
||||||
|
- **GetPropDimensions(model)**
|
||||||
|
- Loads a model and returns width, depth, height.
|
||||||
|
- I use this to parse a model to create a box target instead of entity target when creating distProps/distPeds
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local w,d,h = GetPropDimensions("prop_barrel_01a")
|
||||||
|
```
|
||||||
|
|
||||||
|
- **GetEntityForwardVector(entity)**
|
||||||
|
- Returns the forward direction vector based on entity heading.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local fwd = GetEntityForwardVector(PlayerPedId())
|
||||||
|
```
|
||||||
89
documentation/helper_functions/loaders.md
Normal file
89
documentation/helper_functions/loaders.md
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
### loaders.lua
|
||||||
|
This module provides loading utilities for common asset types such as models, animations, texture dictionaries, and audio banks. It also provides animation and sound helpers.
|
||||||
|
|
||||||
|
- **loadModel(model)**
|
||||||
|
- Loads a model into memory if valid and not already loaded.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
loadModel('prop_chair_01a')
|
||||||
|
```
|
||||||
|
|
||||||
|
- **unloadModel(model)**
|
||||||
|
- Unloads a model from memory.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
unloadModel('prop_chair_01a')
|
||||||
|
```
|
||||||
|
|
||||||
|
- **loadAnimDict(animDict)**
|
||||||
|
- Loads an animation dictionary into memory.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
loadAnimDict('amb@world_human_hang_out_street@male_c@base')
|
||||||
|
```
|
||||||
|
|
||||||
|
- **unloadAnimDict(animDict)**
|
||||||
|
- Removes an animation dictionary from memory.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
unloadAnimDict('amb@world_human_hang_out_street@male_c@base')
|
||||||
|
```
|
||||||
|
|
||||||
|
- **loadPtfxDict(ptFxName)**
|
||||||
|
- Loads a particle effect (ptfx) dictionary.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
loadPtfxDict('core')
|
||||||
|
```
|
||||||
|
|
||||||
|
- **unloadPtfxDict(dict)**
|
||||||
|
- Unloads a particle effect dictionary from memory.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
unloadPtfxDict('core')
|
||||||
|
```
|
||||||
|
|
||||||
|
- **loadTextureDict(dict)**
|
||||||
|
- Loads a streamed texture dictionary.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
loadTextureDict('commonmenu')
|
||||||
|
```
|
||||||
|
|
||||||
|
- **loadScriptBank(bank)**
|
||||||
|
- Loads a script audio bank.
|
||||||
|
- Returns true on success.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local success = loadScriptBank('DLC_HEISTS_GENERAL_FRONTEND_SOUNDS')
|
||||||
|
```
|
||||||
|
|
||||||
|
- **loadAmbientBank(bank)**
|
||||||
|
- Loads an ambient audio bank.
|
||||||
|
- Returns true on success.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local success = loadAmbientBank('AMB_REVERB_GENERIC')
|
||||||
|
```
|
||||||
|
|
||||||
|
- **playAnim(animDict, animName, duration?, flag?, ped?, speed?)**
|
||||||
|
- Plays an animation on a ped.
|
||||||
|
- Loads the dictionary if not already loaded.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
playAnim('amb@world_human_hang_out_street@male_c@base', 'base', 5000, 1, PlayerPedId(), 1.0)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **stopAnim(animDict, animName, ped?)**
|
||||||
|
- Stops an animation and unloads the dictionary.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
stopAnim('amb@world_human_hang_out_street@male_c@base', 'base', PlayerPedId())
|
||||||
|
```
|
||||||
|
|
||||||
|
- **playGameSound(audioBank, soundSet, soundRef, coords, synced, range?)**
|
||||||
|
- Plays a game sound from a coordinate or entity.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
playGameSound('DLC_HEIST_HACKING_SNAKE_SOUNDS', 'Beep', vector3(0, 0, 0), false, 15.0)
|
||||||
|
```
|
||||||
38
documentation/main_functions/callbacks.md
Normal file
38
documentation/main_functions/callbacks.md
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
### callback.lua
|
||||||
|
|
||||||
|
These functions wrap the native callback handling of the selected framework (e.g., OX, QBCore, ESX) instead of implementing a standalone callback system, ensuring full compatibility.
|
||||||
|
|
||||||
|
- **createCallback(callbackName, funct)**
|
||||||
|
|
||||||
|
- Registers a callback function with the appropriate framework.
|
||||||
|
- This function checks which framework is started (e.g., OX, QB, ESX) and registers the callback accordingly.
|
||||||
|
- It adapts the callback function to match the expected signature for the framework.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local table = { ["info"] = "HI" }
|
||||||
|
createCallback('myCallback', function(source, ...)
|
||||||
|
return table
|
||||||
|
end)
|
||||||
|
|
||||||
|
createCallback("callback:checkVehicleOwned", function(source, plate)
|
||||||
|
local result = isVehicleOwned(plate)
|
||||||
|
if result then
|
||||||
|
return true
|
||||||
|
else
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **triggerCallback(callbackName, ...)**
|
||||||
|
|
||||||
|
- Triggers a server callback and returns the result.
|
||||||
|
- This function uses the appropriate framework's method to call the server-side callback and awaits the result.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local result = triggerCallback('myCallback')
|
||||||
|
jsonPrint(result)
|
||||||
|
|
||||||
|
local result = triggerCallback("callback:checkVehicleOwned", plate)
|
||||||
|
print(result)
|
||||||
|
```
|
||||||
28
documentation/main_functions/cameras.md
Normal file
28
documentation/main_functions/cameras.md
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
### cameras.lua
|
||||||
|
This module provides utilities for managing temporary in-game cameras, useful for cutscenes, cinematic views, or scripted perspectives.
|
||||||
|
|
||||||
|
- **createTempCam(ent, coords)**
|
||||||
|
|
||||||
|
- Creates a temporary camera at the specified coordinates or relative to an entity.
|
||||||
|
- If `ent` is an entity, the camera position is calculated as an offset from the entity's position using `GetOffsetFromEntityInWorldCoords`.
|
||||||
|
- If `ent` is a `vector3`, it is used directly as the camera's position.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local cam = createTempCam(PlayerPedId(), GetEntityCoords(PlayerPedId()) + vector3(0, 2.0, 1.0))
|
||||||
|
```
|
||||||
|
|
||||||
|
- **startTempCam(cam)**
|
||||||
|
|
||||||
|
- Activates and renders the temporary camera.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
startTempCam(cam)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **stopTempCam()**
|
||||||
|
|
||||||
|
- Deactivates and deletes all currently running custom camera, restoring normal view.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
stopTempCam()
|
||||||
|
```
|
||||||
45
documentation/main_functions/contextmenus.md
Normal file
45
documentation/main_functions/contextmenus.md
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
### contextmenus.lua
|
||||||
|
|
||||||
|
These functions provide a unified way to interact with different context menu systems, such as OX and WarMenu, depending on what's available on the server.
|
||||||
|
|
||||||
|
- **openMenu(Menu, data)**
|
||||||
|
|
||||||
|
- Opens a context menu using the preferred menu system.
|
||||||
|
- Automatically selects between supported systems like OX or WarMenu based on availability.
|
||||||
|
- The `Menu` parameter should be a list of menu entries, and the `data` parameter can be used to set headers, subtexts, and actions like `onBack`, `onExit`, and `canClose`.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
openMenu({
|
||||||
|
{ header = "Option 1", txt = "Description 1", onSelect = function() print("Option 1 selected") end },
|
||||||
|
{ header = "Option 2", txt = "Description 2", onSelect = function() print("Option 2 selected") end },
|
||||||
|
}, {
|
||||||
|
header = "Main Menu",
|
||||||
|
headertxt = "Select an option",
|
||||||
|
onBack = function() print("Return selected") end,
|
||||||
|
onExit = function() print("Menu closed") end,
|
||||||
|
canClose = true,
|
||||||
|
})
|
||||||
|
```
|
||||||
|
|
||||||
|
- **isOx()**
|
||||||
|
|
||||||
|
- Checks whether the OX context menu system is available on the server.
|
||||||
|
- Allows to do specific things if ox_lib menu is in use
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
if isOx() then
|
||||||
|
print("OX Context Menu is available")
|
||||||
|
end
|
||||||
|
```
|
||||||
|
|
||||||
|
- **isWarMenuOpen()**
|
||||||
|
|
||||||
|
- Returns whether WarMenu is currently open.
|
||||||
|
- Useful to prevent opening a new menu if one is already active.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
if not isWarMenuOpen() then
|
||||||
|
openMenu("main_menu", menuData)
|
||||||
|
end
|
||||||
|
```
|
||||||
|
- Returns whether the WarMenu is currently open.
|
||||||
39
documentation/main_functions/crafting.md
Normal file
39
documentation/main_functions/crafting.md
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
### crafting.lua
|
||||||
|
|
||||||
|
These functions support crafting logic, such as opening crafting menus, handling multi-craft operations, and creating item data from recipes.
|
||||||
|
|
||||||
|
- **craftingMenu(data)**
|
||||||
|
|
||||||
|
- Opens a menu for selecting the quantity to craft.
|
||||||
|
- Presents the player with multiple crafting quantities based on `Config.Crafting.MultiCraftAmounts`.
|
||||||
|
- **Parameters:**
|
||||||
|
- `item` (`string`): The item to craft.
|
||||||
|
- `craft` (`table`): The crafting recipe.
|
||||||
|
- `craftable` (`table`): Crafting options.
|
||||||
|
- `coords` (`vector3`): Where crafting occurs.
|
||||||
|
- `stashName` (`string`): The stash name(s) for item availability.
|
||||||
|
- `onBack` (`function`): Callback when returning.
|
||||||
|
- `metadata` (`table`, optional): Metadata for the crafted item.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
craftingMenu({
|
||||||
|
craftable = {
|
||||||
|
Header = "Weapon Crafting",
|
||||||
|
Recipes = {
|
||||||
|
[1] = {
|
||||||
|
["weapon_pistol"] = { ["steel"] = 5, ["plastic"] = 2 },
|
||||||
|
amount = 1,
|
||||||
|
},
|
||||||
|
-- More recipes...
|
||||||
|
},
|
||||||
|
Anims = {
|
||||||
|
animDict = "amb@prop_human_parking_meter@male@idle_a",
|
||||||
|
anim = "idle_a",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
coords = vector3(100.0, 200.0, 300.0),
|
||||||
|
stashTable = "crafting_stash",
|
||||||
|
job = "mechanic",
|
||||||
|
onBack = function() print("Returning to previous menu") end,
|
||||||
|
})
|
||||||
|
```
|
||||||
25
documentation/main_functions/drawtext.md
Normal file
25
documentation/main_functions/drawtext.md
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
### drawText.lua
|
||||||
|
|
||||||
|
These functions handle drawing and hiding styled on-screen prompts or UI overlays, compatible with different styling frameworks such as OX Lib.
|
||||||
|
|
||||||
|
- **drawText(image, input, style, oxStyleTable)**
|
||||||
|
|
||||||
|
- Displays styled text or prompts on screen.
|
||||||
|
- Designed to adapt styling depending on which UI system (e.g., OX) is in use.
|
||||||
|
- **Parameters:**
|
||||||
|
- `image` (`string`): Optional icon or image path.
|
||||||
|
- `input` (`string`): The main text to display.
|
||||||
|
- `style` (`string|table`): Preset or custom styling.
|
||||||
|
- `oxStyleTable` (`table`, optional): Extended style options if using OX UI.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
drawText("img_link", { "Test line 1", "Test Line 2" }, "~g~")
|
||||||
|
```
|
||||||
|
|
||||||
|
- **hideText()**
|
||||||
|
|
||||||
|
- Hides any active text or UI element previously drawn with `drawText()`.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
hideText()
|
||||||
|
```
|
||||||
31
documentation/main_functions/duifunctions.md
Normal file
31
documentation/main_functions/duifunctions.md
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
### duifunctions.lua
|
||||||
|
|
||||||
|
These functions support dynamic UI image rendering in 3D environments using runtime texture dictionaries. Ideal for integrating `nui://` or external `http://` image URLs into MLOs or world props.
|
||||||
|
|
||||||
|
- **createDui(name, http, size, txd))**
|
||||||
|
|
||||||
|
- Sets up a runtime texture dictionary and links an image from a `nui://` or `http://` URL.
|
||||||
|
- This function should be used once to create the texture dictionary needed for rendering Dui images.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
createDui("logo", "https://example.com/logo.png", { x = 512, y = 256 }, scriptTxd)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **DuiSelect(data)**
|
||||||
|
|
||||||
|
- Updates the URL on an existing texture dictionary to change the rendered image.
|
||||||
|
- Can be used at runtime to swap out visuals in MLOs or props.
|
||||||
|
- **Parameters:**
|
||||||
|
- `textureDict` (`string`): The texture dictionary to target.
|
||||||
|
- `texture` (`string`): The specific texture name to override.
|
||||||
|
- `url` (`string`): The new image URL.
|
||||||
|
- `width`, `height` (`number`): The texture resolution.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
DuiSelect({
|
||||||
|
name = "logo",
|
||||||
|
texn = "logoTex",
|
||||||
|
texd = "someTxd",
|
||||||
|
size = { x = 512, y = 256 }
|
||||||
|
})
|
||||||
|
```
|
||||||
25
documentation/main_functions/input.md
Normal file
25
documentation/main_functions/input.md
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
### input.lua
|
||||||
|
|
||||||
|
This function displays a customizable input dialog for user text or number entry. It supports both simple and complex input structures.
|
||||||
|
|
||||||
|
- **createInput(title, opts)**
|
||||||
|
- Opens a styled input dialog with configurable fields, labels, input types, and validation.
|
||||||
|
- Supports multiple field types including `text`, `number`, `password`, `checkbox`, `color`, `slider`, and more.
|
||||||
|
- **Parameters:**
|
||||||
|
- `title` (`string`): Title displayed at the top of the input box.
|
||||||
|
- `opts` (`table`): A table of fields with attributes like `label`, `name`, `type`, `value`, and more.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local userInput = createInput("Enter Details", {
|
||||||
|
{ type = "text", text = "Name", name = "playerName", isRequired = true },
|
||||||
|
{ type = "number", text = "Age", name = "playerAge", min = 18, max = 99 },
|
||||||
|
{ type = "radio", label = "Gender", name = "playerGender", options = {
|
||||||
|
{ text = "Male", value = "male" },
|
||||||
|
{ text = "Female", value = "female" },
|
||||||
|
{ text = "Other", value = "other" },
|
||||||
|
}},
|
||||||
|
})
|
||||||
|
if userInput then
|
||||||
|
print(json.encode(userInput))
|
||||||
|
end
|
||||||
|
```
|
||||||
144
documentation/main_functions/inventories.md
Normal file
144
documentation/main_functions/inventories.md
Normal file
@@ -0,0 +1,144 @@
|
|||||||
|
### inventories.lua
|
||||||
|
|
||||||
|
These functions manage inventory locking, item checking, and player inventory retrieval.
|
||||||
|
|
||||||
|
- **lockInv(toggle)**
|
||||||
|
|
||||||
|
- Locks or unlocks the player's inventory.
|
||||||
|
- Freezes/unfreezes movement and toggles hotbar state.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
lockInv(true) -- Lock inventory
|
||||||
|
lockInv(false) -- Unlock inventory
|
||||||
|
```
|
||||||
|
|
||||||
|
- **hasItem(items, amount, src)**
|
||||||
|
|
||||||
|
- Checks if a player has the specified item(s) in sufficient quantity.
|
||||||
|
- **Returns:**
|
||||||
|
- `boolean`: Whether the player has the item(s).
|
||||||
|
- `table`: Details of available item counts.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local hasAll, details = hasItem({"health_potion", "mana_potion"}, 2, playerId)
|
||||||
|
if hasAll then
|
||||||
|
-- Proceed with action
|
||||||
|
else
|
||||||
|
-- Inform the player about missing items
|
||||||
|
end
|
||||||
|
```
|
||||||
|
|
||||||
|
- **getPlayerInv(src)**
|
||||||
|
|
||||||
|
- Retrieves the player’s current inventory.
|
||||||
|
- May be used for inventory UI, logging, or crafting systems.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local inventory = getPlayerInv(playerId)
|
||||||
|
for k, item in pairs(inventory) do
|
||||||
|
print(item.name, item.amount)
|
||||||
|
end
|
||||||
|
```
|
||||||
|
|
||||||
|
### itemcontrol.lua
|
||||||
|
|
||||||
|
This module includes a variety of utility functions for managing items in player inventories, including giving, removing, durability, and use logic.
|
||||||
|
|
||||||
|
- **createUseableItem(item, funct)**
|
||||||
|
|
||||||
|
⚠️ This doesn't work for `ox_inv`, you will need to add the event info to it's `items.lua`
|
||||||
|
- Registers a useable item and binds it to a callback function.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
createUseableItem("bandage", function(source)
|
||||||
|
-- Heal logic here
|
||||||
|
end)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **invImg(item)**
|
||||||
|
|
||||||
|
- Returns the inventory image path for an item.
|
||||||
|
- Automatically grabs the inventory image link based on inventory script
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local imagePath = invImg("water_bottle")
|
||||||
|
print(imagePath)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **addItem(item, amount, info, src)**
|
||||||
|
|
||||||
|
⚠️ Requires Auth callback if called from client side
|
||||||
|
- Adds a specific amount of an item to a player's inventory.
|
||||||
|
- Automatically attempts to add items using detected inventory script
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
-- Client Side
|
||||||
|
addItem("lockpick", 3, {})
|
||||||
|
|
||||||
|
-- Server Side
|
||||||
|
addItem("lockpick", 3, {}, source)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **removeItem(item, amount, src, slot)**
|
||||||
|
|
||||||
|
- Removes a specific amount of an item from a player’s inventory.
|
||||||
|
- Automatically attempts to remove item using detected inventory script
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
-- Client Side
|
||||||
|
removeItem(
|
||||||
|
"ammo_pistol",
|
||||||
|
30,
|
||||||
|
nil,
|
||||||
|
slot --[[optional]]--
|
||||||
|
)
|
||||||
|
|
||||||
|
-- Server Side
|
||||||
|
removeItem(
|
||||||
|
"ammo_pistol",
|
||||||
|
30,
|
||||||
|
source,
|
||||||
|
slot --[[optional]]--
|
||||||
|
)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **dupeWarn(src, item, amount)**
|
||||||
|
|
||||||
|
- Logs or handles a potential duplication exploit involving an item.
|
||||||
|
- This is called automatically if a player has been triggered exploit detection
|
||||||
|
- Disabled if debugMode is enabled
|
||||||
|
|
||||||
|
- **breakTool(data)**
|
||||||
|
|
||||||
|
- Breaks a tool or item, often due to exceeding durability.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
breakTool({ item = "drill", damage = 10 })
|
||||||
|
```
|
||||||
|
|
||||||
|
- **getDurability(item)**
|
||||||
|
|
||||||
|
- Returns the current durability value of a given item.
|
||||||
|
- Searched for the lowest slot number (eg. slot 1) and retreives that items durability
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local durability, slot = getDurability("drill")
|
||||||
|
if durability then
|
||||||
|
print("Durability:", durability)
|
||||||
|
print("Slot:", slot)
|
||||||
|
end
|
||||||
|
```
|
||||||
|
|
||||||
|
- **canCarry(itemTable, src)**
|
||||||
|
|
||||||
|
⚠️ Currently server side only
|
||||||
|
- Checks if a player can carry the item(s) specified in `itemTable`.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local carryCheck = canCarry({ ["health_potion"] = 2, ["mana_potion"] = 3 }, playerId)
|
||||||
|
if carryCheck["health_potion"] and carryCheck["mana_potion"] then
|
||||||
|
-- Player can carry items.
|
||||||
|
else
|
||||||
|
-- Notify player.
|
||||||
|
end
|
||||||
|
```
|
||||||
64
documentation/main_functions/jobfunctions.md
Normal file
64
documentation/main_functions/jobfunctions.md
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
### jobfunctions.lua
|
||||||
|
|
||||||
|
This module provides functions for managing job-based logic, such as checking player roles, toggling duty status, and simulating job-related interactions.
|
||||||
|
|
||||||
|
- **makeBossRoles(role)**
|
||||||
|
|
||||||
|
- Sets up boss-level permissions or access for the specified job role.
|
||||||
|
- Often used to determine if a player can access job menus or perform administrative actions.
|
||||||
|
- Used mainly for creating boss locked target tables
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
makeBossRoles("police")
|
||||||
|
```
|
||||||
|
|
||||||
|
- **jobCheck(job)**
|
||||||
|
|
||||||
|
- Simple check if the player has the specified job.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
if jobCheck("mechanic") then
|
||||||
|
-- Allow mechanic features.
|
||||||
|
else
|
||||||
|
-- Deny access.
|
||||||
|
end
|
||||||
|
```
|
||||||
|
|
||||||
|
- **toggleDuty()**
|
||||||
|
|
||||||
|
- Toggles the player’s on/off duty status, typically used for jobs like police, EMS, etc.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
toggleDuty()
|
||||||
|
```
|
||||||
|
|
||||||
|
- **washHands(data)**
|
||||||
|
|
||||||
|
- Simulates the action of washing hands, used in job scripts or medical job logic.
|
||||||
|
- Currently only animation and a notfication
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
washHands({ coords = vector3(200.0, 300.0, 40.0) })
|
||||||
|
```
|
||||||
|
|
||||||
|
- **useToilet(data)**
|
||||||
|
|
||||||
|
- Triggers toilet-use interaction, likely includes animation or sound.
|
||||||
|
- Currently only animation and a notfication
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
useToilet({ urinal = true })
|
||||||
|
-- Player uses a urinal with corresponding animations and notifications
|
||||||
|
|
||||||
|
useToilet({ urinal = false, sitcoords = vector4(215.76, -810.12, 29.73, 90.0) })
|
||||||
|
-- Player sits down to use a toilet with corresponding animations and notifications
|
||||||
|
```
|
||||||
|
|
||||||
|
- **useDoor(data)**
|
||||||
|
|
||||||
|
- Handles interactions with doors that aren't openable and teleports the player
|
||||||
|
- eg. Recycle Center, it's used to teleport the player from outside a building to the IPL
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
useDoor({ telecoords = vector4(215.76, -810.12, 29.73, 90.0) })
|
||||||
|
```
|
||||||
156
documentation/main_functions/makefunctions.md
Normal file
156
documentation/main_functions/makefunctions.md
Normal file
@@ -0,0 +1,156 @@
|
|||||||
|
### makeBlip.lua
|
||||||
|
|
||||||
|
This module provides simple utilities for adding static or entity-based blips to the minimap.
|
||||||
|
|
||||||
|
❔ This has basic support for RedM too
|
||||||
|
- **makeBlip(data)**
|
||||||
|
|
||||||
|
- This function adds a map blip at the provided coordinates and sets various display properties such as sprite, color, scale, and more.
|
||||||
|
- It also handles attaching a preview image to the blip if certain resources are running and a preview is provided.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local blipData = {
|
||||||
|
coords = vector3(123.4, 567.8, 90.1),
|
||||||
|
sprite = 1,
|
||||||
|
col = 2,
|
||||||
|
scale = 0.8,
|
||||||
|
disp = 4,
|
||||||
|
category = 7,
|
||||||
|
name = "My Blip",
|
||||||
|
preview = "http://example.com/preview.png"
|
||||||
|
}
|
||||||
|
local blip = makeBlip(blipData)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **makeEntityBlip(data)**
|
||||||
|
|
||||||
|
- This function adds a map blip attached to the provided entity and sets various display properties such as sprite, color, scale, and more.
|
||||||
|
- It also handles attaching a preview image to the blip if certain resources are running and a preview is provided.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local blipData = {
|
||||||
|
entity = myEntity,
|
||||||
|
sprite = 1,
|
||||||
|
col = 2,
|
||||||
|
scale = 0.8,
|
||||||
|
disp = 4,
|
||||||
|
category = 7,
|
||||||
|
name = "Entity Blip",
|
||||||
|
preview = "http://example.com/preview.png"
|
||||||
|
}
|
||||||
|
local blip = makeEntityBlip(blipData)
|
||||||
|
```
|
||||||
|
|
||||||
|
### makePed.lua
|
||||||
|
This module provides tools to create persistent or distance-based NPCs with optional animations, scenarios, and config randomization.
|
||||||
|
|
||||||
|
- **makeDistPed(data, coords, freeze, collision, scenario, anim, synced)**
|
||||||
|
|
||||||
|
- Creates a ped that only spawns when nearby (performance optimization).
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
makeDistPed({model = "a_m_y_business_03" }, -- model data
|
||||||
|
vector4(450.0, -980.0, 30.0, 100.0), -- coords
|
||||||
|
true, -- freeze entity
|
||||||
|
false, -- collision
|
||||||
|
'WORLD_HUMAN_STAND_IMPATIENT', -- Scenario Animation
|
||||||
|
{ dict = "amb@world_human_clipboard@male@idle_a", anim = "idle_c" }, -- Anim Table
|
||||||
|
true -- Network Synced
|
||||||
|
)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **makePed(data, coords, freeze, collision, scenario, anim, synced)**
|
||||||
|
|
||||||
|
- Spawns a ped with more persistent behavior at the given location.
|
||||||
|
- Supports animation playback and freezing.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
makePed({model = "a_m_y_business_03" }, -- model data
|
||||||
|
vector4(450.0, -980.0, 30.0, 100.0), -- coords
|
||||||
|
true, -- freeze entity
|
||||||
|
false, -- collision
|
||||||
|
'WORLD_HUMAN_STAND_IMPATIENT', -- Scenario Animation
|
||||||
|
{ dict = "amb@world_human_clipboard@male@idle_a", anim = "idle_c" }, -- Anim Table
|
||||||
|
true -- Network Synced
|
||||||
|
)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **GenerateRandomPedData(data)**
|
||||||
|
|
||||||
|
- Returns randomized ped model/configuration based on input table.
|
||||||
|
- Useful for dynamic NPC generation.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local pedData = GenerateRandomPedData({ model = `MP_M_Freemode_01`, custom = {} })
|
||||||
|
```
|
||||||
|
|
||||||
|
### makeProp.lua
|
||||||
|
This module allows you to spawn static or distance-loaded props in the world.
|
||||||
|
|
||||||
|
- **makeProp(data, freeze, synced)**
|
||||||
|
|
||||||
|
- This function loads the model, creates the object, sets its heading, and freezes it if specified.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local propData = {
|
||||||
|
prop = 'prop_chair_01a',
|
||||||
|
coords = vector4(123.4, 567.8, 90.1, 180.0)
|
||||||
|
}
|
||||||
|
local prop = makeProp(propData, true, false)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **makeDistProp(data, freeze, synced, range)**
|
||||||
|
- Same as `makeProp`, but only spawns if the player is within the specified range.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local propData = {
|
||||||
|
prop = 'prop_chair_01a',
|
||||||
|
coords = vector4(123.4, 567.8, 90.1, 180.0)
|
||||||
|
}
|
||||||
|
makeDistProp(propData, true, false)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **destroyProp(entity)**
|
||||||
|
- Removes a previously created or targeted prop from the world.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
destroyProp(barrel)
|
||||||
|
```
|
||||||
|
|
||||||
|
### makeVeh.lua
|
||||||
|
This module provides functionality for spawning vehicles, including distance-based optimization and entity management.
|
||||||
|
|
||||||
|
- **makeVeh(model, coords)**
|
||||||
|
|
||||||
|
- This function loads the vehicle model, creates the vehicle in the world at the given coordinates, sets initial properties, and returns the vehicle handle.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local vehicle = makeVeh("adder", vector3(250.0, -1000.0, 30.0))
|
||||||
|
```
|
||||||
|
|
||||||
|
- **makeDistVehicle(data, radius, onEnter, onExit)**
|
||||||
|
|
||||||
|
- Creates a vehicle that spawns when the player enters a designated polyzone area.
|
||||||
|
- This is used for `jim-parking` to create a static vehicle that can't move
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
makeDistVehicle({
|
||||||
|
model = "blista",
|
||||||
|
coords = vector3(400.0, -800.0, 30.0),
|
||||||
|
heading = 180.0
|
||||||
|
}, 50.0)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **removeDistVehicleZone(zoneId)**
|
||||||
|
- Removes a previously created distance-based vehicle zone.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
removeDistVehicleZone("garage_zone_1")
|
||||||
|
```
|
||||||
|
|
||||||
|
- **deleteVehicle(vehicle)**
|
||||||
|
- Deletes a specified vehicle entity.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
deleteVehicle(vehicle)
|
||||||
|
```
|
||||||
32
documentation/main_functions/metahandlers.md
Normal file
32
documentation/main_functions/metahandlers.md
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
### metaHandlers.lua
|
||||||
|
|
||||||
|
This module provides access and control over player metadata, which is useful for storing temporary or persistent player-specific values like stats, states, or tags.
|
||||||
|
|
||||||
|
- **GetPlayer(source)**
|
||||||
|
|
||||||
|
⚠️ Server side only
|
||||||
|
- Retrieves the player object (as defined by the framework in use) from the given `source` ID.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local player = GetPlayer(playerId)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **GetMetadata(player, key)**
|
||||||
|
|
||||||
|
- Retrieves the value of a metadata field from the given player.
|
||||||
|
- If called client-side (player is nil), it triggers a server callback to retrieve metadata.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local stress = GetMetadata(player, "stress")
|
||||||
|
print("Player stress level:", stress)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **SetMetadata(player, key, value)**
|
||||||
|
|
||||||
|
⚠️ Server side only
|
||||||
|
- Updates or assigns a value to a specific metadata key for a player.
|
||||||
|
- The function updates the player's metadata using the active core export.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
SetMetadata(player, "stress", 0)
|
||||||
|
```
|
||||||
21
documentation/main_functions/notify.md
Normal file
21
documentation/main_functions/notify.md
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
### notify.lua
|
||||||
|
|
||||||
|
This module provides a unified interface to trigger styled notifications across supported frameworks.
|
||||||
|
|
||||||
|
- **triggerNotify(title, message, type, src)**
|
||||||
|
|
||||||
|
- Sends a notification to a player (or to the entire client if `src` is `nil`).
|
||||||
|
- The notification style is determined by `type` (e.g., `success`, `error`, `info`).
|
||||||
|
- **Parameters:**
|
||||||
|
- `title` (`string`): The title or header of the notification.
|
||||||
|
- `message` (`string`): The body or detail text.
|
||||||
|
- `type` (`string`): Type of message (e.g., "success", "error", "info").
|
||||||
|
- `src` (`number`, optional): Server ID of the player to notify (omit to notify locally).
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
-- Client-side usage without specifying a player (shows to the current player)
|
||||||
|
triggerNotify("Success", "You have completed the task!", "success")
|
||||||
|
|
||||||
|
-- Server-side usage specifying a player by their server ID
|
||||||
|
triggerNotify("Alert", "You have been warned for misconduct.", "error", source)
|
||||||
|
```
|
||||||
21
documentation/main_functions/phones.md
Normal file
21
documentation/main_functions/phones.md
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
### phones.lua
|
||||||
|
|
||||||
|
This module allows you to send in-game mail/messages to player phones, depending on the phone system integrated (e.g., QB, NPWD).
|
||||||
|
|
||||||
|
- **sendPhoneMail(data)**
|
||||||
|
|
||||||
|
- Sends a mail message to a player's in-game phone app.
|
||||||
|
- Typically used to notify players about deliveries, missions, or reminders.
|
||||||
|
- **Parameters:**
|
||||||
|
- `data` (`table`): Must contain phone/mail system-compatible fields like `sender`, `subject`, `message`, and `receiver`.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
sendPhoneMail({
|
||||||
|
subject = "Welcome!",
|
||||||
|
sender = "Admin",
|
||||||
|
message = "Thank you for joining our server.",
|
||||||
|
actions = {
|
||||||
|
{ label = "Reply", action = replyFunction }
|
||||||
|
}
|
||||||
|
})
|
||||||
|
```
|
||||||
115
documentation/main_functions/playerfunctions.md
Normal file
115
documentation/main_functions/playerfunctions.md
Normal file
@@ -0,0 +1,115 @@
|
|||||||
|
### playerfunctions.lua
|
||||||
|
|
||||||
|
This module contains helper functions for manipulating player states, interactions, and utility checks.
|
||||||
|
|
||||||
|
- **instantLookEnt(ent, ent2)**
|
||||||
|
|
||||||
|
- Instantly turns an entity to face a target (entity or coordinates) without animation.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
instantLookEnt(nil, vector3(200.0, 300.0, 40.0))
|
||||||
|
instantLookEnt(ped1, ped2)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **lookEnt(entity)**
|
||||||
|
|
||||||
|
- Makes the current player look toward the given entity.
|
||||||
|
- Usually called after when opening a menu or something similar to make the player visually face the location
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
lookEnt(vector3(200.0, 300.0, 40.0))
|
||||||
|
lookEnt(pedEntity)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **setThirst(src, thirst)**
|
||||||
|
|
||||||
|
⚠️ Server Side Only
|
||||||
|
- Sets the thirst level of a player.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
setThirst(source, 75)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **setHunger(src, hunger)**
|
||||||
|
|
||||||
|
⚠️ Server Side Only
|
||||||
|
- Sets the hunger level of a player.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
setHunger(source, 50)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **chargePlayer(cost, moneyType, newsrc)**
|
||||||
|
|
||||||
|
⚠️ Server Side Only
|
||||||
|
- Deducts money from a player of the specified type (`cash`, `bank`, etc).
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
chargePlayer(100, "cash", source)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **fundPlayer(fund, moneyType, newsrc)**
|
||||||
|
|
||||||
|
⚠️ Server Side Only
|
||||||
|
- Adds money to a player's balance of a given type.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
fundPlayer(250, "bank", source)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **ConsumeSuccess(itemName, type, data)**
|
||||||
|
|
||||||
|
- Handles logic when an item is successfully consumed (e.g., food, drink, etc).
|
||||||
|
- Supports hunger and thirst info directly from table eg. `{ hunger = 10, thirst = 20 }`
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
ConsumeSuccess("health_pack", "food", { hunger = 10 })
|
||||||
|
|
||||||
|
ConsumeSuccess("beer", "alcohol", { thirst = 20 })
|
||||||
|
```
|
||||||
|
|
||||||
|
- **hasJob(job, source, grade)**
|
||||||
|
|
||||||
|
- Checks if a player has a certain job and optionally checks for a specific grade.
|
||||||
|
- Similar to `jobCheck()` but also retrieves as much player job info as possible
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
-- Check if the player has the 'police' job and is on duty
|
||||||
|
local hasPoliceJob, isOnDuty = hasJob("police")
|
||||||
|
if hasPoliceJob and isOnDuty then
|
||||||
|
-- Grant access to police-specific features
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Check if a specific player has the 'gang_leader' job with at least grade 2
|
||||||
|
local hasGangLeaderJob, _ = hasJob("gang_leader", playerId, 2)
|
||||||
|
if hasGangLeaderJob then
|
||||||
|
-- Allow gang leader actions
|
||||||
|
end
|
||||||
|
```
|
||||||
|
|
||||||
|
- **getPlayer(source)**
|
||||||
|
|
||||||
|
- Retrieves basic player information (name, cash, bank, job, etc.) based on the active core/inventory system.
|
||||||
|
- Can be called server-side (passing a player source) or client-side (for current player).
|
||||||
|
- Called often in my scripts as its makes use of frameworks "GetPlayerData" etc.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
-- Get information for a specific player
|
||||||
|
local playerInfo = getPlayer(playerId)
|
||||||
|
print(playerInfo.name, playerInfo.cash, playerInfo.bank)
|
||||||
|
|
||||||
|
-- Get information for the current player (client-side)
|
||||||
|
local myInfo = getPlayer()
|
||||||
|
print(myInfo.name, myInfo.cash, myInfo.bank)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **GetPlayersFromCoords(coords, radius)**
|
||||||
|
|
||||||
|
- Returns a list of players within a specified radius of a set of coordinates.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local nearby = GetPlayersFromCoords(GetEntityCoords(PlayerPedId()), 10.0)
|
||||||
|
for _, playerId in pairs(nearby) do
|
||||||
|
print("Nearby player ID:", playerId)
|
||||||
|
end
|
||||||
|
```
|
||||||
44
documentation/main_functions/polyzone.md
Normal file
44
documentation/main_functions/polyzone.md
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
### polyZone.lua
|
||||||
|
|
||||||
|
This module provides helpers for creating and removing polygon or circular zones using PolyZone-compatible data structures.
|
||||||
|
|
||||||
|
- **createPoly(data)**
|
||||||
|
|
||||||
|
- Creates a polygonal zone using the detected polyzone library (ox_lib or PolyZone).
|
||||||
|
- Automatically checks which polyzone script is active. When using ox_lib, it converts the provided 2D points to 3D (setting a constant z value) and sets a thickness value.
|
||||||
|
- For PolyZone, it creates the zone and attaches onEnter and onExit callbacks for ease of use.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
createPoly({
|
||||||
|
name = 'testZone',
|
||||||
|
debug = true,
|
||||||
|
points = { vec2(100.0, 100.0), vec2(200.0, 100.0), vec2(200.0, 200.0), vec2(100.0, 200.0) },
|
||||||
|
onEnter = function() print("Entered Test Zone") end,
|
||||||
|
onExit = function() print("Exited Test Zone") end,
|
||||||
|
})
|
||||||
|
```
|
||||||
|
|
||||||
|
- **createCirclePoly(data)**
|
||||||
|
|
||||||
|
- When using ox_lib, it creates a sphere zone. For PolyZone, it creates a CircleZone and attaches onEnter and onExit callbacks.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
createCirclePoly({
|
||||||
|
name = 'circleZone',
|
||||||
|
coords = vector3(150.0, 150.0, 20.0),
|
||||||
|
radius = 50.0,
|
||||||
|
onEnter = function() print("Entered Circle Zone") end,
|
||||||
|
onExit = function() print("Exited Circle Zone") end,
|
||||||
|
})
|
||||||
|
```
|
||||||
|
|
||||||
|
- **removePolyZone(Location)**
|
||||||
|
|
||||||
|
- Removes a previously created polygon or circle zone by name.
|
||||||
|
- Detects the active polyzone library and calls the appropriate removal method.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local zone = createPoly({...})
|
||||||
|
---
|
||||||
|
removePolyZone(zone)
|
||||||
|
```
|
||||||
23
documentation/main_functions/progressbars.md
Normal file
23
documentation/main_functions/progressbars.md
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
### progressBars.lua
|
||||||
|
This module provides a unified progress bar system compatible with various UI frameworks.
|
||||||
|
|
||||||
|
❔It also contains an experimental "Shared Progressbar" system which was created for things like "giving an item to another player"
|
||||||
|
|
||||||
|
- **progressBar(data)**
|
||||||
|
- Displays a progress bar using the current configured system (e.g., ox_lib, qb, etc).
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local success = progressBar({
|
||||||
|
label = "Processing...",
|
||||||
|
time = 5000,
|
||||||
|
dict = "amb@world_human_hang_out_street@female_hold_arm@base",
|
||||||
|
anim = "base",
|
||||||
|
flag = 49,
|
||||||
|
cancel = true,
|
||||||
|
})
|
||||||
|
if success then
|
||||||
|
print("Success!")
|
||||||
|
else
|
||||||
|
print("Cancelled")
|
||||||
|
end
|
||||||
|
```
|
||||||
24
documentation/main_functions/scaleentity.md
Normal file
24
documentation/main_functions/scaleentity.md
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
### scaleEntity.lua
|
||||||
|
|
||||||
|
This utility provides a simple interface to scale an entity (ped, object, vehicle) in the world.
|
||||||
|
|
||||||
|
⚠️ **Important:** Unless the model's collision is removed or modified, the scale will reset when interacted with by other entities (e.g., walking into it, driving over it).
|
||||||
|
|
||||||
|
- **scaleEntity(entity, scale)**
|
||||||
|
|
||||||
|
- Scales the specified entity by the given factor.
|
||||||
|
- **Parameters:**
|
||||||
|
- `entity` (`number`): Entity handle (ped, object, vehicle).
|
||||||
|
- `scale` (`number`): Scale factor (e.g., `1.0` is normal size, `0.5` is half size).
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
scaleEntity(PlayerPedId(), 0.8) -- Shrinks player slightly
|
||||||
|
```
|
||||||
|
|
||||||
|
- **resetScale(entity)**
|
||||||
|
|
||||||
|
- Resets the entity's scale back to its original default.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
resetScale(PlayerPedId()) -- Return to default size
|
||||||
|
```
|
||||||
63
documentation/main_functions/shops.md
Normal file
63
documentation/main_functions/shops.md
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
### shops.lua
|
||||||
|
|
||||||
|
This module provides functions to open, sell to, and register in-game shops and markets.
|
||||||
|
|
||||||
|
- **sellMenu(data)**
|
||||||
|
|
||||||
|
- Opens a UI menu for selling items to a vendor or market system.
|
||||||
|
- A simple system for the ability to sell all of an item in a players inventory
|
||||||
|
- Good for money making eg. pawn shops
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
sellMenu({
|
||||||
|
sellTable = {
|
||||||
|
Header = "Sell Items",
|
||||||
|
Items = {
|
||||||
|
["gold_ring"] = 100,
|
||||||
|
["diamond"] = 500,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
ped = pedEntity,
|
||||||
|
onBack = function() print("Returning to previous menu") end,
|
||||||
|
})
|
||||||
|
```
|
||||||
|
|
||||||
|
- **sellAnim(data)**
|
||||||
|
|
||||||
|
- Plays an animation during the selling process for immersion.
|
||||||
|
- Used in sellMenu, but can be called externally if needed
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
sellAnim({
|
||||||
|
item = "gold_ring",
|
||||||
|
price = 100,
|
||||||
|
ped = pedEntity,
|
||||||
|
onBack = function() print("Sold Items") end,
|
||||||
|
)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **openShop(data)**
|
||||||
|
|
||||||
|
- Opens a shop interface for purchasing items.
|
||||||
|
- Checks job/gang restrictions, then uses the active inventory system to open the shop.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
openShop({
|
||||||
|
shop = "weapon_shop",
|
||||||
|
items = weaponShopItems,
|
||||||
|
coords = vector3(100.0, 200.0, 300.0),
|
||||||
|
job = "police",
|
||||||
|
})
|
||||||
|
```
|
||||||
|
|
||||||
|
- **registerShop(name, label, items, society)**
|
||||||
|
|
||||||
|
- Registers a named shop with associated items and an optional society for fund handling.
|
||||||
|
- Supports either OXInv or QBInv (with QBInvNew flag).
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
registerShop("fishing_shop", "Bait & Tackle", {
|
||||||
|
{ item = "fishing_rod", price = 50 },
|
||||||
|
{ item = "bait", price = 5 }
|
||||||
|
}, "fishing_society")
|
||||||
|
```
|
||||||
16
documentation/main_functions/skillcheck.md
Normal file
16
documentation/main_functions/skillcheck.md
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
### skillcheck.lua
|
||||||
|
|
||||||
|
This module provides a UI-based skill check system, useful for crafting, hacking, or other interactive gameplay scenarios.
|
||||||
|
|
||||||
|
- **skillCheck()**
|
||||||
|
|
||||||
|
- Starts a skill check minigame sequence using the provided configuration.
|
||||||
|
- Configuration may define speed, difficulty, bar size, or success zones.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
if skillCheck() then
|
||||||
|
print("Success!")
|
||||||
|
else
|
||||||
|
print("Failed :(")
|
||||||
|
end
|
||||||
|
```
|
||||||
28
documentation/main_functions/societybank.md
Normal file
28
documentation/main_functions/societybank.md
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
### societybank.lua
|
||||||
|
|
||||||
|
This module handles financial operations for society accounts, typically used for jobs or organizations.
|
||||||
|
|
||||||
|
- **getSocietyAccount(society)**
|
||||||
|
|
||||||
|
- Retrieves the current balance for the specified society.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local balance = getSocietyAccount("police")
|
||||||
|
print("Police account balance: $"..balance)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **chargeSociety(society, amount)**
|
||||||
|
|
||||||
|
- Deducts a specified amount from the society's account.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
chargeSociety("police", 500)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **fundSociety(society, amount)**
|
||||||
|
|
||||||
|
- Adds funds to a society’s account.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
fundSociety("ambulance", 1200)
|
||||||
|
```
|
||||||
44
documentation/main_functions/stashcontrol.md
Normal file
44
documentation/main_functions/stashcontrol.md
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
### stashcontrol.lua
|
||||||
|
|
||||||
|
This module handles logic for interacting with stashes—shared inventories for crafting, jobs, or storage systems.
|
||||||
|
|
||||||
|
- **checkStashItem(stashes, itemTable)**
|
||||||
|
|
||||||
|
- Retrieves (or updates) a local stash cache entry with a timeout.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local found, foundinStash = checkStashItem({"crafting_stash"}, { item = "steel", amount = 2 })
|
||||||
|
if found then print("Found item in "..foundInStash) end
|
||||||
|
```
|
||||||
|
|
||||||
|
- **openStash(data)**
|
||||||
|
|
||||||
|
- Opens a stash using the active inventory system.
|
||||||
|
- Checks for job or gang restrictions before opening the stash.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
openStash({
|
||||||
|
stash = "playerStash",
|
||||||
|
label = "Player Stash",
|
||||||
|
coords = vector3(100, 200, 30)
|
||||||
|
})
|
||||||
|
```
|
||||||
|
|
||||||
|
- **getStash(stashName)**
|
||||||
|
|
||||||
|
- Retrieves the stash data by name (usually used for querying contents).
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local items = getStash("playerStash")
|
||||||
|
for k, v in pairs(items) do
|
||||||
|
print(k)
|
||||||
|
end
|
||||||
|
```
|
||||||
|
|
||||||
|
- **stashRemoveItem(stashItems, stashName, items)**
|
||||||
|
|
||||||
|
- Removes specified items from a stash. Used during crafting or transfers.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
stashRemoveItem(currentItems, "playerStash", { iron = 2, wood = 5 })
|
||||||
|
```
|
||||||
108
documentation/main_functions/targets.md
Normal file
108
documentation/main_functions/targets.md
Normal file
@@ -0,0 +1,108 @@
|
|||||||
|
### targets.lua
|
||||||
|
|
||||||
|
⚠️ This module provides utility functions for adding and removing interaction targets with entities, models, zones, and coordinates. Supports common targeting frameworks like `ox_target`, `qb-target`, and more.
|
||||||
|
|
||||||
|
- **createEntityTarget(entity, opts, dist)**
|
||||||
|
|
||||||
|
- Adds interaction targets to a specific in-world entity.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
createEntityTarget(entityId, {
|
||||||
|
{
|
||||||
|
action = function()
|
||||||
|
openStorage()
|
||||||
|
end,
|
||||||
|
icon = "fas fa-box",
|
||||||
|
job = "police",
|
||||||
|
label = "Open Storage",
|
||||||
|
},
|
||||||
|
}, 2.0)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **createBoxTarget(data, opts, dist)**
|
||||||
|
|
||||||
|
- Creates an interactable box zone with configurable options.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
createBoxTarget(
|
||||||
|
{
|
||||||
|
'storageBox',
|
||||||
|
vector3(100.0, 200.0, 30.0),
|
||||||
|
2.0,
|
||||||
|
2.0,
|
||||||
|
{
|
||||||
|
name = 'storageBox',
|
||||||
|
heading = 100.0,
|
||||||
|
debugPoly = true,
|
||||||
|
minZ = 27.0,
|
||||||
|
maxZ = 32.0,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
{
|
||||||
|
action = function()
|
||||||
|
openStorage()
|
||||||
|
end,
|
||||||
|
icon = "fas fa-box",
|
||||||
|
job = "police",
|
||||||
|
label = "Open Storage",
|
||||||
|
},
|
||||||
|
}, 2.0)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **createCircleTarget(data, opts, dist)**
|
||||||
|
|
||||||
|
- Creates an interactable circular zone.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
createCircleTarget({
|
||||||
|
name = 'centralPark',
|
||||||
|
coords = vector3(200.0, 300.0, 40.0),
|
||||||
|
radius = 50.0,
|
||||||
|
options = { debugPoly = false }
|
||||||
|
}, {
|
||||||
|
{ icon = "fas fa-tree", label = "Relax", action = relaxAction }
|
||||||
|
}, 2.0)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **createModelTarget(models, opts, dist)**
|
||||||
|
|
||||||
|
- Adds interactions to all matching models globally.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
createModelTarget({ model1, model2 },
|
||||||
|
{
|
||||||
|
{
|
||||||
|
action = function()
|
||||||
|
openStorage()
|
||||||
|
end,
|
||||||
|
icon = "fas fa-box",
|
||||||
|
job = "police",
|
||||||
|
label = "Open Storage",
|
||||||
|
},
|
||||||
|
}, 2.0)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **removeEntityTarget(entity)**
|
||||||
|
|
||||||
|
- Removes all targets linked to the specified entity.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
removeEntityTarget(vehicle)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **removeZoneTarget(target)**
|
||||||
|
|
||||||
|
- Removes a named zone-based target.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
removeZoneTarget("shop_box")
|
||||||
|
```
|
||||||
|
|
||||||
|
- **removeModelTarget(model)**
|
||||||
|
|
||||||
|
- Removes interactions tied to a model globally.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
removeModelTarget("prop_vend_soda")
|
||||||
|
```
|
||||||
63
documentation/main_functions/vehicles.md
Normal file
63
documentation/main_functions/vehicles.md
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
### vehicles.lua
|
||||||
|
|
||||||
|
This module provides utilities for reading, modifying, and interacting with vehicle properties and positioning.
|
||||||
|
|
||||||
|
- **searchCar(vehicle)**
|
||||||
|
|
||||||
|
- Searches the 'Vehicles' table for a specific vehicle's details.
|
||||||
|
- If the vehicle differs from the last searched, it retrieves its model and updates the carInfo table.
|
||||||
|
- The table includes the vehicle's name, price, and class information.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local info = searchCar(vehicleEntity)
|
||||||
|
print(info.name, info.price, info.class.name, info.class.index)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **getVehicleProperties(vehicle)**
|
||||||
|
|
||||||
|
- Retrieves the properties of a given vehicle using the active framework.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local props = getVehicleProperties(vehicle)
|
||||||
|
if props then
|
||||||
|
print(json.encode(props))
|
||||||
|
end
|
||||||
|
```
|
||||||
|
|
||||||
|
- **setVehicleProperties(vehicle, props)**
|
||||||
|
|
||||||
|
- Sets the properties of a given vehicle if changes are detected.
|
||||||
|
- It compares the current properties with the new ones and applies the update using the active framework.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
setVehicleProperties(vehicle, props)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **checkDifferences(vehicle, newProps)**
|
||||||
|
|
||||||
|
- Checks for differences between the current and new vehicle properties.
|
||||||
|
- Compares properties using JSON encoding for deep comparison and logs differences.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
if checkDifferences(vehicleEntity, newProperties) then
|
||||||
|
setVehicleProperties(vehicleEntity, newProperties)
|
||||||
|
end
|
||||||
|
```
|
||||||
|
|
||||||
|
- **pushVehicle(entity)**
|
||||||
|
|
||||||
|
- This function ensures that the vehicle is controlled by the current player and is set as a mission entity.
|
||||||
|
- It requests network control and sets the vehicle accordingly to synchronize changes across clients.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
pushVehicle(vehicle)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **getClosestVehicle(coords, src)**
|
||||||
|
|
||||||
|
- Finds the closest vehicle to the specified coordinates.
|
||||||
|
- The function uses different APIs based on whether a source is provided.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
local closestVeh, distance = getClosestVehicle({ x = 100, y = 200, z = 30 }, source)
|
||||||
|
```
|
||||||
37
documentation/main_functions/wrapperfunctions.md
Normal file
37
documentation/main_functions/wrapperfunctions.md
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
### wrapperfunctions.lua
|
||||||
|
|
||||||
|
Provides wrapper compatibility functions for command and inventory stash systems across different frameworks (OX, QB, ESX, QS, etc).
|
||||||
|
|
||||||
|
- **registerCommand(command, options)**
|
||||||
|
|
||||||
|
⚠️ Server Side Only
|
||||||
|
- Registers a command using the appropriate framework's API.
|
||||||
|
- **Parameters:**
|
||||||
|
- `command`: Command name (string)
|
||||||
|
- `options`: Table including help, params, callback, autocomplete, restrictedGroup
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
registerCommand("greet", {
|
||||||
|
"Greets the player",
|
||||||
|
{ name = "name", help = "Name of the player to greet" },
|
||||||
|
function(source, args) print("Hello, "..args[1].."!") end,
|
||||||
|
nil,
|
||||||
|
"admin"
|
||||||
|
})
|
||||||
|
```
|
||||||
|
|
||||||
|
- **registerStash(name, label, slots?, weight?, owner?, coords?)**
|
||||||
|
|
||||||
|
⚠️ Server Side Only
|
||||||
|
- Registers a stash using OX, QS, or Origen inventory systems.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
registerStash(
|
||||||
|
"playerStash",
|
||||||
|
"Player Stash",
|
||||||
|
100,
|
||||||
|
8000000,
|
||||||
|
"player123",
|
||||||
|
{ x = 100.0, y = 200.0, z = 30.0 }
|
||||||
|
)
|
||||||
|
```
|
||||||
129
documentation/scaleforms.md
Normal file
129
documentation/scaleforms.md
Normal file
@@ -0,0 +1,129 @@
|
|||||||
|
## Scaleforms
|
||||||
|
### debugScaleform.lua
|
||||||
|
This module renders debug text in-game when `debugMode` is enabled. Useful for live diagnostics or UI placement feedback.
|
||||||
|
|
||||||
|
- **debugScaleForm(textTable, loc)**
|
||||||
|
- Displays an overlay of lines of text at the specified screen location.
|
||||||
|
- **Note:** This only works if `debugMode` is set to `true`.
|
||||||
|
- **Parameters:**
|
||||||
|
- `textTable` (`table`): A list of strings to display.
|
||||||
|
- `loc` (`vector2`, optional): Top-left anchor point on screen (default: `vec2(0.05, 0.65)`).
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
CreateThread(function()
|
||||||
|
while true do
|
||||||
|
debugScaleForm({
|
||||||
|
"Line 1: Debug info",
|
||||||
|
"Line 2: More info"
|
||||||
|
})
|
||||||
|
Wait(0)
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
```
|
||||||
|
|
||||||
|
### instructionalButtons.lua
|
||||||
|
This module renders instructional button prompts using native scaleforms in GTA V and RedM.
|
||||||
|
|
||||||
|
⚠️ **Note:** Because it uses native scaleforms, it must be run inside a `while` loop to remain visible.
|
||||||
|
|
||||||
|
- **makeInstructionalButtons(info)**
|
||||||
|
- Draws instructional buttons using the GTA scaleform `instructional_buttons`.
|
||||||
|
- **Parameters:**
|
||||||
|
- `info` (`table`): An array of tables, where each entry contains:
|
||||||
|
- `keys` (`table`): Control key codes (e.g., `{38, 29}`).
|
||||||
|
- `text` (`string`): The label for the button.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
CreateThread(function()
|
||||||
|
while true do
|
||||||
|
makeInstructionalButtons({
|
||||||
|
{ keys = {38, 29}, text = "Open Menu" },
|
||||||
|
{ keys = {45}, text = "Close Menu" }
|
||||||
|
})
|
||||||
|
Wait(0)
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **makeRedInstructionalButtons(info, title)**
|
||||||
|
- Experimental: Displays prompts using RedM-style `PromptSetGroup` API.
|
||||||
|
- **Note:** Still must be run in a loop for visibility.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
CreateThread(function()
|
||||||
|
while true do
|
||||||
|
makeRedInstructionalButtons({
|
||||||
|
{ keys = {0x760A9C6F}, text = "Mount Horse" },
|
||||||
|
{ keys = {0x4CC0E2FE}, text = "Dismount" }
|
||||||
|
}, "Horse Controls")
|
||||||
|
Wait(0)
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
```
|
||||||
|
|
||||||
|
### scaleform_basic.lua
|
||||||
|
This module includes helper functions for 3D text rendering and UI overlays using basic native scaleform techniques.
|
||||||
|
|
||||||
|
- **DrawText3D(coord, text, highlight)**
|
||||||
|
|
||||||
|
- Draws 3D text in the world at the given coordinates, with optional highlight.
|
||||||
|
- Includes a semi-transparent black background box for visibility.
|
||||||
|
- **Parameters:**
|
||||||
|
- `coord` (`vector3`): World position to draw text.
|
||||||
|
- `text` (`string`): Text content.
|
||||||
|
- `highlight` (`boolean`, optional): Highlights `~w~` sections with yellow.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
CreateThread(function()
|
||||||
|
while true do
|
||||||
|
DrawText3D(vector3(100, 200, 300), "Hello World", true)
|
||||||
|
Wait(0)
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
```
|
||||||
|
|
||||||
|
- **DisplayHelpMsg(text)**
|
||||||
|
- Shows a help message in the top-left corner of the screen.
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
DisplayHelpMsg("Press E to interact")
|
||||||
|
```
|
||||||
|
|
||||||
|
- **displaySpinner(text)**
|
||||||
|
- Shows a busy spinner with a message (e.g., "Saving...").
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
displaySpinner("Saving data...")
|
||||||
|
```
|
||||||
|
|
||||||
|
- **stopSpinner()**
|
||||||
|
- Hides any active busy spinner (client-only).
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
stopSpinner()
|
||||||
|
```
|
||||||
|
|
||||||
|
### timerBars.lua
|
||||||
|
This module provides a native scaleform-based timer bar HUD. Ideal for displaying tasks, loading indicators, or time-sensitive objectives.
|
||||||
|
|
||||||
|
- **createTimerHud(title, data, alpha)**
|
||||||
|
|
||||||
|
⚠️ This was an attempt to recreate the gta native shooting ranges )fairly specific use case)
|
||||||
|
- Draws a timer bar with custom label and right-aligned values using the native GTA HUD system.
|
||||||
|
- **Parameters:**
|
||||||
|
- `title` (`string`): Title/header displayed on the bar.
|
||||||
|
- `data` (`table`): List of `label = value` entries to display (max 4 rows).
|
||||||
|
- `alpha` (`number`, optional): Opacity of the bar (0-255).
|
||||||
|
- **Example:**
|
||||||
|
```lua
|
||||||
|
CreateThread(function()
|
||||||
|
while true do
|
||||||
|
createTimerHud("Timer Bar", {
|
||||||
|
{ stat = "Health", value = "85%" },
|
||||||
|
{ stat = "Armor", value = "50%", multi = 2 },
|
||||||
|
{ stat = "Stamina", value = "100%" },
|
||||||
|
}, 180)
|
||||||
|
Wait(0)
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
```
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
name "Jim_Bridge"
|
name "Jim_Bridge"
|
||||||
author "Jimathy"
|
author "Jimathy"
|
||||||
version "2.0.03"
|
version "2.0.14"
|
||||||
description "Framework Bridge By Jimathy"
|
description "Framework Bridge By Jimathy"
|
||||||
fx_version "cerulean"
|
fx_version "cerulean"
|
||||||
rdr3_warning 'I acknowledge that this is a prerelease build of RedM, and I am aware my resources *will* become incompatible once RedM ships.'
|
rdr3_warning 'I acknowledge that this is a prerelease build of RedM, and I am aware my resources *will* become incompatible once RedM ships.'
|
||||||
|
|||||||
@@ -40,6 +40,7 @@ function onPlayerLoaded(func, onStart)
|
|||||||
|
|
||||||
if not loaded then
|
if not loaded then
|
||||||
local tempFunc = function()
|
local tempFunc = function()
|
||||||
|
Wait(2000)
|
||||||
debugPrint("^6Bridge^7: ^2Executing onPlayerLoaded")
|
debugPrint("^6Bridge^7: ^2Executing onPlayerLoaded")
|
||||||
func()
|
func()
|
||||||
end
|
end
|
||||||
@@ -49,7 +50,13 @@ function onPlayerLoaded(func, onStart)
|
|||||||
AddEventHandler('QBCore:Client:OnPlayerLoaded', tempFunc)
|
AddEventHandler('QBCore:Client:OnPlayerLoaded', tempFunc)
|
||||||
elseif isStarted(ESXExport) then
|
elseif isStarted(ESXExport) then
|
||||||
onPlayerFramework = ESXExport
|
onPlayerFramework = ESXExport
|
||||||
AddEventHandler('esx:playerLoaded', tempFunc)
|
AddEventHandler('esx:playerLoaded', function()
|
||||||
|
if waitForSharedLoad() then
|
||||||
|
if isStarted(ESXExport) then Wait(11000) end
|
||||||
|
tempFunc()
|
||||||
|
end
|
||||||
|
end
|
||||||
|
)
|
||||||
elseif isStarted(OXCoreExport) then
|
elseif isStarted(OXCoreExport) then
|
||||||
onPlayerFramework = OXCoreExport
|
onPlayerFramework = OXCoreExport
|
||||||
AddEventHandler('ox:playerLoaded', tempFunc)
|
AddEventHandler('ox:playerLoaded', tempFunc)
|
||||||
@@ -99,10 +106,14 @@ end
|
|||||||
--- end, true)
|
--- end, true)
|
||||||
--- ```
|
--- ```
|
||||||
function onResourceStart(func, thisScript)
|
function onResourceStart(func, thisScript)
|
||||||
debugPrint("^6Bridge^7: Registering ^3onResourceStart^7()")
|
debugPrint("^6Bridge^7: ^2Registering ^3onResourceStart^7()")
|
||||||
AddEventHandler('onResourceStart', function(resourceName)
|
AddEventHandler('onResourceStart', function(resourceName)
|
||||||
if getScript() == resourceName and (thisScript or true) then
|
if getScript() == resourceName and (thisScript or true) then
|
||||||
func()
|
if waitForSharedLoad() then
|
||||||
|
debugPrint("^6Bridge^7: ^2Shared Load Detected^7.")
|
||||||
|
if isStarted(ESXExport) then Wait(10000) end
|
||||||
|
func()
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
@@ -138,9 +149,7 @@ function waitForLogin()
|
|||||||
local loggedIn = false
|
local loggedIn = false
|
||||||
|
|
||||||
if isStarted(ESXExport) then
|
if isStarted(ESXExport) then
|
||||||
debugPrint("^6Bridge^7: ^3ESX waitForLogin^7() ^2running^7")
|
|
||||||
while (GetGameTimer() - startTime) < timeout do
|
while (GetGameTimer() - startTime) < timeout do
|
||||||
while not ESX do Wait(100) end
|
|
||||||
local playerData = ESX.GetPlayerData()
|
local playerData = ESX.GetPlayerData()
|
||||||
if playerData and playerData.job then
|
if playerData and playerData.job then
|
||||||
loggedIn = true
|
loggedIn = true
|
||||||
@@ -175,4 +184,26 @@ function waitForLogin()
|
|||||||
debugPrint("^6Bridge^7: ^2Player Login Detected^7.")
|
debugPrint("^6Bridge^7: ^2Player Login Detected^7.")
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
function waitForSharedLoad()
|
||||||
|
local timeout = 100000 -- 10 seconds in milliseconds
|
||||||
|
local startTime = GetGameTimer()
|
||||||
|
local loaded = true
|
||||||
|
while ((not Jobs or not next(Jobs)) and (not Items or not next(Items)) and (not Vehicles or not next(Vehicles))) and (GetGameTimer() - startTime) < timeout do
|
||||||
|
print((GetGameTimer() - startTime) < timeout)
|
||||||
|
Wait(1000)
|
||||||
|
debugPrint("Waiting for Jobs, Items, and Vehicles to be loaded")
|
||||||
|
if Jobs and Items and Vehicles then
|
||||||
|
print("^6Bridge^7: ^2Jobs, Items, and Vehicles Loaded^7.")
|
||||||
|
loaded = true
|
||||||
|
break
|
||||||
|
end
|
||||||
|
end
|
||||||
|
if not loaded then
|
||||||
|
print("^4Error^7: ^2Timeout reached while waiting for shared load^7.")
|
||||||
|
return false
|
||||||
|
else
|
||||||
|
return true
|
||||||
|
end
|
||||||
end
|
end
|
||||||
@@ -15,7 +15,7 @@ function compareVersions(current, newest)
|
|||||||
if c < n then return -1
|
if c < n then return -1
|
||||||
elseif c > n then return 1 end
|
elseif c > n then return 1 end
|
||||||
end
|
end
|
||||||
return 0 -- equal
|
return 0
|
||||||
end
|
end
|
||||||
|
|
||||||
function capitalize(str)
|
function capitalize(str)
|
||||||
@@ -30,42 +30,66 @@ local scriptAuthor = ("^2by ^4"..GetResourceMetadata(getScript(), 'author', nil)
|
|||||||
print(scriptName.." ^7v"..scriptVersion.."^7 - "..scriptDescription.." "..scriptAuthor.."^7")
|
print(scriptName.." ^7v"..scriptVersion.."^7 - "..scriptDescription.." "..scriptAuthor.."^7")
|
||||||
|
|
||||||
function CheckVersion()
|
function CheckVersion()
|
||||||
if isServer() then
|
if isServer() and GetResourceMetadata(getScript(), 'author', nil) == "Jimathy" then
|
||||||
CreateThread(function()
|
CreateThread(function()
|
||||||
Wait(4000)
|
Wait(4000)
|
||||||
|
|
||||||
local script = getScript()
|
local script = getScript()
|
||||||
local currentVersionRaw = GetResourceMetadata(script, 'version')
|
local currentVersionRaw = GetResourceMetadata(script, 'version')
|
||||||
|
|
||||||
PerformHttpRequest('https://raw.githubusercontent.com/jimathy/UpdateVersions/master/'..script..'.txt', function(err, newestVersionRaw, headers)
|
PerformHttpRequest('https://raw.githubusercontent.com/jimathy/UpdateVersions/master/'..script..'.txt', function(err, newestVersionRaw, headers)
|
||||||
if not newestVersionRaw then
|
if not newestVersionRaw then
|
||||||
|
-- fallback
|
||||||
PerformHttpRequest('https://raw.githubusercontent.com/jimathy/'..script..'/master/version.txt', function(err, fallbackVersionRaw, headers)
|
PerformHttpRequest('https://raw.githubusercontent.com/jimathy/'..script..'/master/version.txt', function(err, fallbackVersionRaw, headers)
|
||||||
if not fallbackVersionRaw then
|
if not fallbackVersionRaw then
|
||||||
print("^1Currently unable to run a version check for ^7'^3"..script.."^7' (^3"..currentVersionRaw.."^7)")
|
print("^1Currently unable to run a version check for ^7'^3"..script.."^7' (^3"..currentVersionRaw.."^7)")
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
fallbackVersionRaw = fallbackVersionRaw:match("[^\r\n]+"):gsub("v", "")
|
local lines = {}
|
||||||
|
for line in fallbackVersionRaw:gmatch("[^\r\n]+") do table.insert(lines, line) end
|
||||||
|
local fallbackVersion = (lines[1] or "0.0.0"):gsub("v", "")
|
||||||
|
local changelog = {}
|
||||||
|
for i = 2, #lines do table.insert(changelog, lines[i]) end
|
||||||
|
|
||||||
local compareResult = compareVersions(currentVersionRaw, fallbackVersionRaw)
|
local compareResult = compareVersions(currentVersionRaw, fallbackVersion)
|
||||||
if compareResult == 0 then
|
if compareResult == 0 then
|
||||||
print("^7'^3"..script.."^7' - ^2You are running the latest version^7. (^3"..currentVersionRaw.."^7)")
|
print("^7'^3"..script.."^7' - ^2You are running the latest version^7. (^3"..currentVersionRaw.."^7)")
|
||||||
elseif compareResult < 0 then
|
elseif compareResult < 0 then
|
||||||
print("^7'^3"..script.."^7' - ^1You are currently running an outdated version^7! (^3"..currentVersionRaw.."^7 → ^3"..fallbackVersionRaw.."^7)")
|
print("^1----------------------------------------------------------------------^7")
|
||||||
|
print("^7'^3"..script.."^7' - ^1You are currently running an outdated version^7! (^3"..currentVersionRaw.."^7 → ^3"..fallbackVersion.."^7)")
|
||||||
|
if #changelog > 0 then
|
||||||
|
for _, line in ipairs(changelog) do
|
||||||
|
print((line:find("http") and "^7" or "^5")..line)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
print("^1----------------------------------------------------------------------^7")
|
||||||
|
SetTimeout(1200000, function() CheckVersion() end)
|
||||||
else
|
else
|
||||||
print("^7'^3"..script.."^7' - ^5You are running a newer version ^7(^3"..currentVersionRaw.."^7 ← ^3"..fallbackVersionRaw.."^7)")
|
print("^7'^3"..script.."^7' - ^5You are running a newer version ^7(^3"..currentVersionRaw.."^7 ← ^3"..fallbackVersion.."^7)")
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
else
|
else
|
||||||
newestVersionRaw = newestVersionRaw:match("[^\r\n]+"):gsub("v", "")
|
local lines = {}
|
||||||
|
for line in newestVersionRaw:gmatch("[^\r\n]+") do table.insert(lines, line) end
|
||||||
|
local newestVersion = (lines[1] or "0.0.0"):gsub("v", "")
|
||||||
|
local changelog = {}
|
||||||
|
for i = 2, #lines do table.insert(changelog, lines[i]) end
|
||||||
|
|
||||||
local compareResult = compareVersions(currentVersionRaw, newestVersionRaw)
|
local compareResult = compareVersions(currentVersionRaw, newestVersion)
|
||||||
if compareResult == 0 then
|
if compareResult == 0 then
|
||||||
print("^7'^3"..script.."^7' - ^2You are running the latest version^7. (^3"..currentVersionRaw.."^7)")
|
print("^7'^3"..script.."^7' - ^2You are running the latest version^7. (^3"..currentVersionRaw.."^7)")
|
||||||
elseif compareResult < 0 then
|
elseif compareResult < 0 then
|
||||||
print("^7'^3"..script.."^7' - ^1You are currently running an outdated version^7! (^3"..currentVersionRaw.."^7 → ^3"..newestVersionRaw.."^7)")
|
print("^1----------------------------------------------------------------------^7")
|
||||||
|
print("^7'^3"..script.."^7' - ^1You are currently running an outdated version^7! (^3"..currentVersionRaw.."^7 → ^3"..newestVersion.."^7)")
|
||||||
|
if #changelog > 0 then
|
||||||
|
for _, line in ipairs(changelog) do
|
||||||
|
print((line:find("http") and "^7" or "^5")..line)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
print("^1----------------------------------------------------------------------^7")
|
||||||
|
SetTimeout(1200000, function() CheckVersion() end)
|
||||||
else
|
else
|
||||||
print("^7'^3"..script.."^7' - ^5You are running a newer version ^7(^3"..currentVersionRaw.."^7 ← ^3"..newestVersionRaw.."^7)")
|
print("^7'^3"..script.."^7' - ^5You are running a newer version ^7(^3"..currentVersionRaw.."^7 ← ^3"..newestVersion.."^7)")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
@@ -73,4 +97,4 @@ function CheckVersion()
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
CheckVersion()
|
CheckVersion()
|
||||||
|
|||||||
@@ -9,13 +9,13 @@
|
|||||||
-------------------------------------------------------------
|
-------------------------------------------------------------
|
||||||
-- Global Variable Initialization
|
-- Global Variable Initialization
|
||||||
-------------------------------------------------------------
|
-------------------------------------------------------------
|
||||||
Items, Vehicles, Jobs, Gangs, Core, ESX = {}, nil, nil, nil, nil, nil
|
Items, Vehicles, Jobs, Gangs, Core = {}, nil, nil, nil, nil
|
||||||
|
|
||||||
-------------------------------------------------------------
|
-------------------------------------------------------------
|
||||||
-- Correct QB Inventory Export
|
-- Correct QB Inventory Export
|
||||||
-------------------------------------------------------------
|
-------------------------------------------------------------
|
||||||
-- Ensure that the QB inventory export is corrected from 'qb-inventory' to 'ps-inventory' or 'lj-inventory' if needed.
|
-- Correct ps-invetory to ls-inventory if somehow you still have that
|
||||||
Exports.QBInv = (isStarted("ps-inventory") and "ps-inventory") or (isStarted("lj-inventory") and "lj-inventory") or Exports.QBInv
|
Exports.PSInv = isStarted("lj-inventory") and "lj-inventory" or Exports.PSInv
|
||||||
|
|
||||||
-------------------------------------------------------------
|
-------------------------------------------------------------
|
||||||
-- Framework Exports and Inventory Identifiers
|
-- Framework Exports and Inventory Identifiers
|
||||||
@@ -27,14 +27,15 @@ OXLibExport, QBXExport, QBExport, ESXExport, OXCoreExport =
|
|||||||
Exports.ESXExport or "",
|
Exports.ESXExport or "",
|
||||||
Exports.OXCoreExport or ""
|
Exports.OXCoreExport or ""
|
||||||
|
|
||||||
OXInv, QBInv, PSInv, QSInv, CoreInv, CodeMInv, OrigenInv =
|
OXInv, QBInv, PSInv, QSInv, CoreInv, CodeMInv, OrigenInv, TgiannInv =
|
||||||
Exports.OXInv or "",
|
Exports.OXInv or "",
|
||||||
Exports.QBInv or "",
|
Exports.QBInv or "",
|
||||||
Exports.PSInv or "",
|
Exports.PSInv or "",
|
||||||
Exports.QSInv or "",
|
Exports.QSInv or "",
|
||||||
Exports.CoreInv or "",
|
Exports.CoreInv or "",
|
||||||
Exports.CodeMInv or "",
|
Exports.CodeMInv or "",
|
||||||
Exports.OrigenInv or ""
|
Exports.OrigenInv or "",
|
||||||
|
Exports.TgiannInv or ""
|
||||||
|
|
||||||
RSGExport, RSGInv =
|
RSGExport, RSGInv =
|
||||||
Exports.RSGExport or "",
|
Exports.RSGExport or "",
|
||||||
@@ -72,6 +73,29 @@ local itemResource, jobResource, vehResource = "", "", ""
|
|||||||
if isStarted(OXInv) then
|
if isStarted(OXInv) then
|
||||||
itemResource = OXInv
|
itemResource = OXInv
|
||||||
Items = exports[OXInv]:Items()
|
Items = exports[OXInv]:Items()
|
||||||
|
|
||||||
|
-- Add weapons to Items from QBXCore if available
|
||||||
|
if isStarted(QBXExport) then
|
||||||
|
local tempWeapons = exports[QBExport]:GetCoreObject().Shared.Weapons
|
||||||
|
for k, v in pairs(tempWeapons) do
|
||||||
|
local tempWeaponInfo = exports[OXInv]:Items(v.name)
|
||||||
|
local weight = 0
|
||||||
|
if tempWeaponInfo then
|
||||||
|
weight = tempWeaponInfo.weight
|
||||||
|
end
|
||||||
|
if not Items[v.name] then
|
||||||
|
Items[v.name] = {
|
||||||
|
name = v.name,
|
||||||
|
label = v.label,
|
||||||
|
type = "weapon",
|
||||||
|
ammotype = v.ammotype or "AMMO_PISTOL",
|
||||||
|
weight = weight,
|
||||||
|
image = v.image or (v.name..".png"),
|
||||||
|
description = v.label or "",
|
||||||
|
}
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
for k, v in pairs(Items) do
|
for k, v in pairs(Items) do
|
||||||
if v.client and v.client.image then
|
if v.client and v.client.image then
|
||||||
Items[k].image = (v.client.image):gsub("nui://"..OXInv.."/web/images/", "")
|
Items[k].image = (v.client.image):gsub("nui://"..OXInv.."/web/images/", "")
|
||||||
@@ -86,6 +110,12 @@ elseif isStarted(QBExport) then
|
|||||||
itemResource = QBExport
|
itemResource = QBExport
|
||||||
Core = Core or exports[QBExport]:GetCoreObject()
|
Core = Core or exports[QBExport]:GetCoreObject()
|
||||||
Items = Core and Core.Shared.Items or nil
|
Items = Core and Core.Shared.Items or nil
|
||||||
|
CreateThread(function()
|
||||||
|
while not Items or not next(Items) do
|
||||||
|
Items = exports[QBExport]:GetCoreObject().Shared.Items
|
||||||
|
Wait(1000)
|
||||||
|
end
|
||||||
|
end)
|
||||||
if isStarted(QBExport) and not isStarted(QBXExport) then
|
if isStarted(QBExport) and not isStarted(QBXExport) then
|
||||||
RegisterNetEvent('QBCore:Client:UpdateObject', function()
|
RegisterNetEvent('QBCore:Client:UpdateObject', function()
|
||||||
Core = Core or exports[QBExport]:GetCoreObject()
|
Core = Core or exports[QBExport]:GetCoreObject()
|
||||||
@@ -95,13 +125,7 @@ elseif isStarted(QBExport) then
|
|||||||
|
|
||||||
elseif isStarted(ESXExport) then
|
elseif isStarted(ESXExport) then
|
||||||
itemResource = ESXExport
|
itemResource = ESXExport
|
||||||
ESX = exports[ESXExport]:getSharedObject()
|
|
||||||
while ESX == nil do
|
|
||||||
print("Waiting for ESX")
|
|
||||||
Wait(0)
|
|
||||||
end
|
|
||||||
CreateThread(function()
|
CreateThread(function()
|
||||||
while not ESX do Wait(0) end
|
|
||||||
if isServer() then
|
if isServer() then
|
||||||
Items = ESX.GetItems()
|
Items = ESX.GetItems()
|
||||||
while not createCallback do Wait(100) end
|
while not createCallback do Wait(100) end
|
||||||
@@ -119,12 +143,10 @@ elseif isStarted(RSGExport) then
|
|||||||
itemResource = RSGExport
|
itemResource = RSGExport
|
||||||
Core = Core or exports[RSGExport]:GetCoreObject()
|
Core = Core or exports[RSGExport]:GetCoreObject()
|
||||||
Items = Core and Core.Shared.Items or nil
|
Items = Core and Core.Shared.Items or nil
|
||||||
if isStarted(RSGExport) and not isStarted(QBXExport) then
|
RegisterNetEvent('RSGCore:Client:UpdateObject', function()
|
||||||
RegisterNetEvent('QBCore:Client:UpdateObject', function()
|
Core = Core or exports[RSGExport]:GetCoreObject()
|
||||||
Core = Core or exports[RSGExport]:GetCoreObject()
|
Items = Core and Core.Shared.Items or nil
|
||||||
Items = Core and Core.Shared.Items or nil
|
end)
|
||||||
end)
|
|
||||||
end
|
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -141,6 +163,7 @@ end
|
|||||||
-------------------------------------------------------------
|
-------------------------------------------------------------
|
||||||
-- Compile vehicles from the detected frameworks into a unified table.
|
-- Compile vehicles from the detected frameworks into a unified table.
|
||||||
if isStarted(QBXExport) or isStarted(QBExport) then
|
if isStarted(QBXExport) or isStarted(QBExport) then
|
||||||
|
vehResource = QBExport
|
||||||
Core = Core or exports[QBExport]:GetCoreObject()
|
Core = Core or exports[QBExport]:GetCoreObject()
|
||||||
Vehicles = Core and Core.Shared.Vehicles
|
Vehicles = Core and Core.Shared.Vehicles
|
||||||
if isStarted(QBExport) and not isStarted(QBXExport) then
|
if isStarted(QBExport) and not isStarted(QBXExport) then
|
||||||
@@ -149,26 +172,23 @@ if isStarted(QBXExport) or isStarted(QBExport) then
|
|||||||
Vehicles = Core and Core.Shared.Vehicles
|
Vehicles = Core and Core.Shared.Vehicles
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
vehResource = QBExport
|
|
||||||
|
|
||||||
elseif isStarted(OXCoreExport) then
|
elseif isStarted(OXCoreExport) then
|
||||||
|
vehResource = OXCoreExport
|
||||||
Vehicles = {}
|
Vehicles = {}
|
||||||
for k, v in pairs(Ox.GetVehicleData()) do
|
for k, v in pairs(Ox.GetVehicleData()) do
|
||||||
Vehicles[k] = { model = k, hash = GetHashKey(k), price = v.price, name = v.name, brand = v.make }
|
Vehicles[k] = { model = k, hash = GetHashKey(k), price = v.price, name = v.name, brand = v.make }
|
||||||
end
|
end
|
||||||
vehResource = OXCoreExport
|
|
||||||
|
|
||||||
elseif isStarted(ESXExport) then
|
elseif isStarted(ESXExport) then
|
||||||
|
vehResource = ESXExport
|
||||||
CreateThread(function()
|
CreateThread(function()
|
||||||
if isServer() then
|
if isServer() then
|
||||||
vehResource = ESXExport
|
|
||||||
createCallback(getScript()..":getVehiclesPrices", function(source)
|
createCallback(getScript()..":getVehiclesPrices", function(source)
|
||||||
return Vehicles
|
return Vehicles
|
||||||
end)
|
end)
|
||||||
while not MySQL do Wait(2000) print("^1Waiting for MySQL to exist") end
|
while not MySQL do Wait(2000) print("^1Waiting for MySQL to exist") end
|
||||||
Vehicles = MySQL.query.await('SELECT model, price, name FROM vehicles')
|
Vehicles = MySQL.query.await('SELECT model, price, name FROM vehicles')
|
||||||
--jsonPrint(Vehicles)
|
|
||||||
--while not createCallback do print("waiting") Wait(100) end
|
|
||||||
end
|
end
|
||||||
if not isServer() then
|
if not isServer() then
|
||||||
--while not triggerCallback do print("waiting") Wait(100) end
|
--while not triggerCallback do print("waiting") Wait(100) end
|
||||||
@@ -187,23 +207,19 @@ elseif isStarted(ESXExport) then
|
|||||||
end)
|
end)
|
||||||
|
|
||||||
elseif isStarted(RSGExport) then
|
elseif isStarted(RSGExport) then
|
||||||
|
vehResource = RSGExport
|
||||||
Core = Core or exports[RSGExport]:GetCoreObject()
|
Core = Core or exports[RSGExport]:GetCoreObject()
|
||||||
Vehicles = Core and Core.Shared.Vehicles
|
Vehicles = Core and Core.Shared.Vehicles
|
||||||
if isStarted(RSGExport) then
|
RegisterNetEvent('RSGCore:Client:UpdateObject', function()
|
||||||
RegisterNetEvent('RSGExport:Client:UpdateObject', function()
|
Core = Core or exports[RSGExport]:GetCoreObject()
|
||||||
Core = Core or exports[RSGExport]:GetCoreObject()
|
Vehicles = Core and Core.Shared.Vehicles
|
||||||
Vehicles = Core and Core.Shared.Vehicles
|
end)
|
||||||
end)
|
|
||||||
end
|
|
||||||
vehResource = RSGExport
|
|
||||||
end
|
end
|
||||||
if vehResource == nil then
|
if vehResource == nil then
|
||||||
print("^4ERROR^7: ^2No Vehicle info detected ^7- ^2Check ^3starter^1.^2lua^7")
|
print("^4ERROR^7: ^2No Vehicle info detected ^7- ^2Check ^3starter^1.^2lua^7")
|
||||||
else
|
else
|
||||||
CreateThread(function()
|
while not Vehicles do Wait(1000) end
|
||||||
while not Vehicles do Wait(1000) print("Waiting") end
|
debugPrint("^6Bridge^7: ^2Loading ^6"..countTable(Vehicles).." ^3Vehicles^2 from ^7"..vehResource)
|
||||||
debugPrint("^6Bridge^7: ^2Loading ^6"..countTable(Vehicles).." ^3Vehicles^2 from ^7"..vehResource)
|
|
||||||
end)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
-------------------------------------------------------------
|
-------------------------------------------------------------
|
||||||
@@ -216,23 +232,36 @@ if isStarted(QBXExport) then
|
|||||||
Jobs, Gangs = exports[QBXExport]:GetJobs(), exports[QBXExport]:GetGangs()
|
Jobs, Gangs = exports[QBXExport]:GetJobs(), exports[QBXExport]:GetGangs()
|
||||||
|
|
||||||
elseif isStarted(OXCoreExport) then
|
elseif isStarted(OXCoreExport) then
|
||||||
jobResource = OXExport
|
jobResource = OXCoreExport
|
||||||
CreateThread(function()
|
CreateThread(function()
|
||||||
if isServer() then
|
if isServer() then
|
||||||
|
Jobs = {}
|
||||||
createCallback(getScript()..":getOxGroups", function(source)
|
createCallback(getScript()..":getOxGroups", function(source)
|
||||||
Jobs = MySQL.query.await('SELECT * FROM `ox_groups`')
|
|
||||||
return Jobs
|
return Jobs
|
||||||
end)
|
end)
|
||||||
else
|
local tempJobs = MySQL.query.await('SELECT * FROM `ox_groups`')
|
||||||
local TempJobs = triggerCallback(getScript()..":getOxGroups")
|
local tempGrades = MySQL.query.await('SELECT * FROM `ox_group_grades`')
|
||||||
Jobs = {}
|
-- Index all grades by group
|
||||||
for k, v in pairs(TempJobs) do
|
local gradeMap = {}
|
||||||
local grades = {}
|
for _, grade in pairs(tempGrades) do
|
||||||
--for i = 1, #v.grades do
|
gradeMap[grade.group] = gradeMap[grade.group] or {}
|
||||||
-- grades[i] = { name = v.grades[i], isboss = (i == #v.grades) }
|
gradeMap[grade.group][grade.grade] = {
|
||||||
--end
|
name = grade.label
|
||||||
Jobs[v.name] = { label = v.label, grades = grades }
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- Process jobs and attach grades
|
||||||
|
for _, job in pairs(tempJobs) do
|
||||||
|
Jobs[job.name] = {
|
||||||
|
label = job.label,
|
||||||
|
grades = gradeMap[job.name] or {}
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Copy to Gangs
|
||||||
|
Gangs = Jobs
|
||||||
|
else
|
||||||
|
Jobs = triggerCallback(getScript()..":getOxGroups")
|
||||||
Gangs = Jobs
|
Gangs = Jobs
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
@@ -249,44 +278,69 @@ elseif isStarted(QBExport) then
|
|||||||
end
|
end
|
||||||
|
|
||||||
elseif isStarted(ESXExport) then
|
elseif isStarted(ESXExport) then
|
||||||
ESX = exports[ESXExport]:getSharedObject()
|
jobResource = ESXExport
|
||||||
if isServer() then
|
if isServer() then
|
||||||
|
-- If server, create callback to get jobs
|
||||||
|
createCallback(getScript()..":getESXJobs", function(source)
|
||||||
|
return Jobs
|
||||||
|
end)
|
||||||
|
-- Populate jobs table with ESX.GetJobs()
|
||||||
Jobs = ESX.GetJobs()
|
Jobs = ESX.GetJobs()
|
||||||
for k, v in pairs(Jobs) do
|
--jsonPrint(Jobs)
|
||||||
local count = countTable(Jobs[k].grades) - 1
|
--If retreived jobs is empty, wait for ESX to load
|
||||||
Jobs[k].grades[tostring(count)].isBoss = true
|
while countTable(Jobs) == 0 do
|
||||||
|
Jobs = ESX.GetJobs()
|
||||||
|
Wait(100)
|
||||||
end
|
end
|
||||||
|
-- Organise into a table the script can use
|
||||||
|
for Role, Grades in pairs(Jobs) do
|
||||||
|
|
||||||
|
-- Check for "Boss" in name of grades
|
||||||
|
for grade, info in pairs(Grades.grades) do
|
||||||
|
--print(grade)
|
||||||
|
--jsonPrint(info)
|
||||||
|
|
||||||
|
if info.label then
|
||||||
|
--print(info)
|
||||||
|
if info.label:find("boss") or info.label:find("Boss") then
|
||||||
|
--print("Found Boss label for:", Grades.label)
|
||||||
|
Jobs[Role].grades[grade].isBoss = true
|
||||||
|
goto continue
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
-- If no roles with "boss" in the name, revert to max grade
|
||||||
|
|
||||||
|
-- Count grades
|
||||||
|
local count = countTable(Grades.grades)
|
||||||
|
Jobs[Role].grades[tostring(count-1)].isBoss = true
|
||||||
|
--print(Grades.label.." Grade: "..count.." is Boss")
|
||||||
|
::continue::
|
||||||
|
end
|
||||||
|
-- ESX Default doesn't have gangs, so copy jobs to gangs
|
||||||
|
Gangs = Jobs
|
||||||
|
end
|
||||||
|
-- If client side, trigger callback to get jobs
|
||||||
|
if not isServer() then
|
||||||
|
Jobs = triggerCallback(getScript()..":getESXJobs")
|
||||||
Gangs = Jobs
|
Gangs = Jobs
|
||||||
end
|
end
|
||||||
CreateThread(function()
|
|
||||||
while not ESX do Wait(0) end
|
|
||||||
if isServer() then
|
|
||||||
createCallback(getScript()..":getJobs", function(source)
|
|
||||||
return Jobs
|
|
||||||
end)
|
|
||||||
end
|
|
||||||
if not isServer() then
|
|
||||||
Jobs = triggerCallback(getScript()..":getJobs")
|
|
||||||
Gangs = Jobs
|
|
||||||
end
|
|
||||||
end)
|
|
||||||
|
|
||||||
elseif isStarted(RSGExport) then
|
elseif isStarted(RSGExport) then
|
||||||
jobResource = RSGExport
|
jobResource = RSGExport
|
||||||
Core = Core or exports[RSGExport]:GetCoreObject()
|
Core = Core or exports[RSGExport]:GetCoreObject()
|
||||||
Jobs, Gangs = Core.Shared.Jobs, Core.Shared.Gangs
|
Jobs, Gangs = Core.Shared.Jobs, Core.Shared.Gangs
|
||||||
if isStarted(RSGExport) and not isStarted(QBXExport) then
|
RegisterNetEvent('RSGCore:Client:UpdateObject', function()
|
||||||
RegisterNetEvent('QBCore:Client:UpdateObject', function()
|
Core = exports[RSGExport]:GetCoreObject()
|
||||||
Core = exports[RSGExport]:GetCoreObject()
|
Jobs, Gangs = Core.Shared.Jobs, Core.Shared.Gangs
|
||||||
Jobs, Gangs = Core.Shared.Jobs, Core.Shared.Gangs
|
end)
|
||||||
end)
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
if jobResource == nil then
|
if jobResource == nil then
|
||||||
print("^4ERROR^7: ^2No Vehicle info detected ^7- ^2Check ^3starter^1.^2lua^7")
|
print("^4ERROR^7: ^2No Job info detected ^7- ^2Check ^3starter^1.^2lua^7")
|
||||||
else
|
else
|
||||||
while not Jobs do Wait(100) end
|
while not Jobs do Wait(1000) end
|
||||||
debugPrint("^6Bridge^7: ^2Loading ^6"..countTable(Jobs).." ^3Jobs^2 from ^7"..jobResource)
|
debugPrint("^6Bridge^7: ^2Loading ^6"..countTable(Jobs).." ^3Jobs^2 from ^7"..jobResource)
|
||||||
debugPrint("^6Bridge^7: ^2Loading ^6"..countTable(Gangs).." ^3Gangs^2 from ^7"..jobResource)
|
debugPrint("^6Bridge^7: ^2Loading ^6"..countTable(Gangs).." ^3Gangs^2 from ^7"..jobResource)
|
||||||
end
|
end
|
||||||
@@ -80,11 +80,6 @@ function craftingMenu(data)
|
|||||||
-- Build a table of all required ingredients (default quantity is 1).
|
-- Build a table of all required ingredients (default quantity is 1).
|
||||||
for i = 1, #Recipes do
|
for i = 1, #Recipes do
|
||||||
for k in pairs(Recipes[i]) do
|
for k in pairs(Recipes[i]) do
|
||||||
if k == "hasCrafted" and not data.craftable.craftedItems then
|
|
||||||
-- Retreive list of already crafted items from playermetadata to see if we should class this recipe as "new"
|
|
||||||
craftedItems = GetMetadata(nil, "craftedItems") or {}
|
|
||||||
data.craftable.craftedItems = craftedItems
|
|
||||||
end
|
|
||||||
if k ~= "amount" and k ~= "metadata" and k ~= "job" and k ~= "gang" then
|
if k ~= "amount" and k ~= "metadata" and k ~= "job" and k ~= "gang" then
|
||||||
tempCarryTable[k] = Recipes[i].amount or 1
|
tempCarryTable[k] = Recipes[i].amount or 1
|
||||||
end
|
end
|
||||||
@@ -114,7 +109,7 @@ function craftingMenu(data)
|
|||||||
settext = settext..(settext ~= "" and br or "")..(Items[l] and Items[l].label or "error - "..l)..(b > 1 and " x"..b or "")
|
settext = settext..(settext ~= "" and br or "")..(Items[l] and Items[l].label or "error - "..l)..(b > 1 and " x"..b or "")
|
||||||
metaTable[Items[l] and Items[l].label or "error - "..l] = b
|
metaTable[Items[l] and Items[l].label or "error - "..l] = b
|
||||||
itemTable[l] = b
|
itemTable[l] = b
|
||||||
Wait(0)
|
--Wait(0)
|
||||||
end
|
end
|
||||||
|
|
||||||
while not canCarryTable do Wait(0) end
|
while not canCarryTable do Wait(0) end
|
||||||
@@ -122,25 +117,16 @@ function craftingMenu(data)
|
|||||||
setheader = ((metadata and metadata.label) or (Items[tostring(k)] and Items[tostring(k)].label) or "error - "..tostring(k))
|
setheader = ((metadata and metadata.label) or (Items[tostring(k)] and Items[tostring(k)].label) or "error - "..tostring(k))
|
||||||
..(Recipes[i]["amount"] > 1 and " x"..Recipes[i]["amount"] or "")
|
..(Recipes[i]["amount"] > 1 and " x"..Recipes[i]["amount"] or "")
|
||||||
|
|
||||||
if not disable then
|
local statusEmoji = disable and " ❌" or not canCarryTable[k] and " 📦" or " ✔️"
|
||||||
if not canCarryTable[k] then
|
local isNew = (Recipes[i]["hasCrafted"] ~= nil and craftedItems[k] == nil) and "✨ " or ""
|
||||||
setheader = setheader.." 📦"
|
setheader = isNew .. setheader .. statusEmoji
|
||||||
else
|
|
||||||
setheader = setheader.." ✔️"
|
|
||||||
end
|
|
||||||
elseif not canCarryTable[k] then
|
|
||||||
setheader = setheader.." 📦"
|
|
||||||
end
|
|
||||||
if Recipes[i]["hasCrafted"] ~= nil and craftedItems[k] == nil then
|
|
||||||
setheader = "✨ "..setheader
|
|
||||||
end
|
|
||||||
|
|
||||||
Menu[#Menu + 1] = {
|
Menu[#Menu + 1] = {
|
||||||
arrow = not disable and canCarryTable[k],
|
arrow = not disable and canCarryTable[k],
|
||||||
isMenuHeader = disable or not canCarryTable[k],
|
isMenuHeader = disable or not canCarryTable[k],
|
||||||
icon = invImg((metadata and metadata.image) or tostring(k)),
|
icon = invImg((metadata and metadata.image) or tostring(k)),
|
||||||
image = invImg((metadata and metadata.image) or tostring(k)),
|
image = invImg((metadata and metadata.image) or tostring(k)),
|
||||||
header = setheader..((disable or not canCarryTable[k]) and " ❌" or ""),
|
header = setheader,
|
||||||
txt = (isStarted(QBMenuExport) or disable) and settext or nil,
|
txt = (isStarted(QBMenuExport) or disable) and settext or nil,
|
||||||
metadata = metaTable,
|
metadata = metaTable,
|
||||||
onSelect = (not disable and canCarryTable[k]) and function()
|
onSelect = (not disable and canCarryTable[k]) and function()
|
||||||
@@ -162,7 +148,7 @@ function craftingMenu(data)
|
|||||||
}
|
}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
Wait(0)
|
--Wait(0)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -208,16 +194,23 @@ end
|
|||||||
function multiCraft(data)
|
function multiCraft(data)
|
||||||
local max = 0
|
local max = 0
|
||||||
local stashName = nil
|
local stashName = nil
|
||||||
for i = 1, 100 do
|
local maxCreation = 100
|
||||||
local itemTable = {}
|
|
||||||
for l, b in pairs(data.craft[data.item]) do
|
|
||||||
debugPrint("")
|
|
||||||
itemTable[l] = (b * i)
|
|
||||||
end
|
|
||||||
|
|
||||||
|
-- Generate item table to check against stash or inventory
|
||||||
|
-- takes into account the ingredients needed for multiple items
|
||||||
|
local multiItemTable = {}
|
||||||
|
|
||||||
|
for i = 1, maxCreation do
|
||||||
|
multiItemTable[i] = {}
|
||||||
|
for l, b in pairs(data.craft[data.item]) do
|
||||||
|
multiItemTable[i][l] = (b * i)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
for i = 1, maxCreation do
|
||||||
|
-- if its received a stash name, check if the items are in the stash
|
||||||
if data.stashName then
|
if data.stashName then
|
||||||
debugPrint("")
|
local hasItems, stashname = checkStashItem(data.stashName, multiItemTable[i])
|
||||||
local hasItems, stashname = checkStashItem(data.stashName, itemTable)
|
|
||||||
if hasItems == true then
|
if hasItems == true then
|
||||||
max += 1
|
max += 1
|
||||||
stashName = stashname
|
stashName = stashname
|
||||||
@@ -225,31 +218,34 @@ function multiCraft(data)
|
|||||||
break
|
break
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
debugPrint("")
|
-- if not check the players inventory for the items
|
||||||
local has, _ = hasItem(itemTable, nil, nil)
|
local has, _ = hasItem(multiItemTable[i], nil, nil)
|
||||||
if has then
|
if has then
|
||||||
max += 1
|
max += 1
|
||||||
else
|
else
|
||||||
break
|
break
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
Wait(10)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
local dialog = createInput(data.craftable.Header, {
|
local carryMax = triggerCallback(getScript()..":server:getMaxCarryCraft", {
|
||||||
|
item = data.item,
|
||||||
|
max = max
|
||||||
|
})
|
||||||
|
|
||||||
|
local dialog = createInput(data.craftable.Header..(Config.System.Menu == "qb" and ": "..br.."How many to craft? "..br.."Max: "..carryMax or ""), {
|
||||||
((Config.System.Menu == "ox") and {
|
((Config.System.Menu == "ox") and {
|
||||||
type = "slider",
|
type = "slider",
|
||||||
label = "How many to craft?",
|
label = "How many to craft? "..br.."Max: "..carryMax,
|
||||||
required = true,
|
required = true,
|
||||||
default = 1,
|
default = 1,
|
||||||
min = 1,
|
min = 1,
|
||||||
max = max
|
max = carryMax
|
||||||
}) or nil,
|
}) or nil,
|
||||||
((Config.System.Menu == "qb") and {
|
((Config.System.Menu == "qb") and {
|
||||||
type = "number",
|
type = "number",
|
||||||
label = "How many to craft?"..br.."Max: "..max,
|
|
||||||
name = "amount",
|
name = "amount",
|
||||||
isRecuired = true,
|
isRequired = true,
|
||||||
default = 1,
|
default = 1,
|
||||||
}) or nil,
|
}) or nil,
|
||||||
})
|
})
|
||||||
@@ -259,14 +255,14 @@ function multiCraft(data)
|
|||||||
|
|
||||||
end
|
end
|
||||||
if Config.System.Menu == "qb" then
|
if Config.System.Menu == "qb" then
|
||||||
if dialog["amount"] > max or dialog["amount"] < 1 or dialog["amount"] == nil or dialog["amount"] == "" then
|
dialog["amount"] = tonumber(dialog["amount"])
|
||||||
|
if dialog["amount"] > carryMax or dialog["amount"] < 1 or dialog["amount"] == nil or dialog["amount"] == "" then
|
||||||
triggerNotify(nil, "Invalid Amount", "error")
|
triggerNotify(nil, "Invalid Amount", "error")
|
||||||
craftingMenu(data)
|
craftingMenu(data)
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
makeItem({
|
makeItem({
|
||||||
item = data.item,
|
item = data.item,
|
||||||
craft = data.craft,
|
craft = data.craft,
|
||||||
@@ -274,7 +270,6 @@ function multiCraft(data)
|
|||||||
amount = dialog["amount"] or dialog[1],
|
amount = dialog["amount"] or dialog[1],
|
||||||
coords = data.coords,
|
coords = data.coords,
|
||||||
stashName = stashName or nil,
|
stashName = stashName or nil,
|
||||||
--stashTable = data.stashName,
|
|
||||||
onBack = data.onBack,
|
onBack = data.onBack,
|
||||||
metadata = data.metadata,
|
metadata = data.metadata,
|
||||||
})
|
})
|
||||||
@@ -331,19 +326,23 @@ function makeItem(data)
|
|||||||
local crafted, crafting = true, true
|
local crafted, crafting = true, true
|
||||||
local cam = createTempCam(PlayerPedId(), data.coords)
|
local cam = createTempCam(PlayerPedId(), data.coords)
|
||||||
startTempCam(cam)
|
startTempCam(cam)
|
||||||
|
|
||||||
for i = 1, craftAmount do
|
for i = 1, craftAmount do
|
||||||
for k, v in pairs(data.craft) do
|
for k, v in pairs(data.craft) do
|
||||||
if not excludeKeys[k] then
|
if not excludeKeys[k] then
|
||||||
if type(v) == "table" then
|
if type(v) == "table" then
|
||||||
for l, b in pairs(v) do
|
for l, b in pairs(v) do
|
||||||
|
if isInventoryOpen() then
|
||||||
|
print("^1Error^7: ^2Inventory is open, you tried to break things")
|
||||||
|
crafted, crafting = false, false
|
||||||
|
return
|
||||||
|
end
|
||||||
if crafting and progressBar({
|
if crafting and progressBar({
|
||||||
label = "Using "..b.." "..Items[l].label,
|
label = "Using "..b.." "..Items[l].label,
|
||||||
time = 1000,
|
time = 1000,
|
||||||
cancel = true,
|
cancel = true,
|
||||||
dict = 'pickup_object',
|
dict = 'pickup_object',
|
||||||
anim = "putdown_low",
|
anim = "putdown_low",
|
||||||
flag = 48,
|
flag = 49,
|
||||||
icon = l,
|
icon = l,
|
||||||
}) then
|
}) then
|
||||||
TriggerEvent((isStarted(QBInv) and QBInvNew and "qb-" or "")..'inventory:client:ItemBox', Items[l], "use", b)
|
TriggerEvent((isStarted(QBInv) and QBInvNew and "qb-" or "")..'inventory:client:ItemBox', Items[l], "use", b)
|
||||||
@@ -353,6 +352,11 @@ function makeItem(data)
|
|||||||
end
|
end
|
||||||
Wait(200)
|
Wait(200)
|
||||||
end
|
end
|
||||||
|
if isInventoryOpen() then
|
||||||
|
--print("^1Error^7: ^2Inventory is open, you tried to break things")
|
||||||
|
crafted, crafting, CraftLock = false, false, false
|
||||||
|
return
|
||||||
|
end
|
||||||
if crafted then
|
if crafted then
|
||||||
local craftProp = nil
|
local craftProp = nil
|
||||||
if prop then
|
if prop then
|
||||||
@@ -363,6 +367,12 @@ function makeItem(data)
|
|||||||
local s = data.sound
|
local s = data.sound
|
||||||
PlaySoundFromEntity(s.soundId, s.audioName, PlayerPedId(), s.audioRef, true, 0)
|
PlaySoundFromEntity(s.soundId, s.audioName, PlayerPedId(), s.audioRef, true, 0)
|
||||||
end
|
end
|
||||||
|
if isInventoryOpen() then
|
||||||
|
--print("^1Error^7: ^2Inventory is open, you tried to break things")
|
||||||
|
crafted, crafting = false, false
|
||||||
|
crafted, crafting, CraftLock = false, false, false
|
||||||
|
return
|
||||||
|
end
|
||||||
if crafting and progressBar({
|
if crafting and progressBar({
|
||||||
label = bartext..((metadata and metadata.label) or Items[data.item].label),
|
label = bartext..((metadata and metadata.label) or Items[data.item].label),
|
||||||
time = bartime,
|
time = bartime,
|
||||||
@@ -371,8 +381,10 @@ function makeItem(data)
|
|||||||
anim = anim,
|
anim = anim,
|
||||||
flag = 49,
|
flag = 49,
|
||||||
icon = data.item,
|
icon = data.item,
|
||||||
|
request = true,
|
||||||
}) then
|
}) then
|
||||||
TriggerServerEvent(getScript()..":Crafting:GetItem", data.item, data.craft, data.stashName, metadata)
|
TriggerServerEvent(getScript()..":Crafting:GetItem", data.item, data.craft, data.stashName, metadata, currentToken)
|
||||||
|
currentToken = nil -- clear client cached token
|
||||||
CreateThread(function()
|
CreateThread(function()
|
||||||
if data.craft["hasCrafted"] ~= nil then
|
if data.craft["hasCrafted"] ~= nil then
|
||||||
debugPrint("hasCrafted Found, marking '"..data.item.."' as crafted for player")
|
debugPrint("hasCrafted Found, marking '"..data.item.."' as crafted for player")
|
||||||
@@ -412,7 +424,6 @@ function makeItem(data)
|
|||||||
end
|
end
|
||||||
stopTempCam()
|
stopTempCam()
|
||||||
CraftLock = false
|
CraftLock = false
|
||||||
lockInv(false)
|
|
||||||
if canReturn then craftingMenu(data) end
|
if canReturn then craftingMenu(data) end
|
||||||
ClearPedTasks(PlayerPedId())
|
ClearPedTasks(PlayerPedId())
|
||||||
end
|
end
|
||||||
@@ -431,8 +442,19 @@ end
|
|||||||
--- @param stashName string|table The stash name(s) to remove ingredients from.
|
--- @param stashName string|table The stash name(s) to remove ingredients from.
|
||||||
--- @param metadata table (optional) Metadata for the crafted item.
|
--- @param metadata table (optional) Metadata for the crafted item.
|
||||||
--- @usage
|
--- @usage
|
||||||
RegisterNetEvent(getScript()..":Crafting:GetItem", function(ItemMake, craftable, stashName, metadata)
|
RegisterNetEvent(getScript()..":Crafting:GetItem", function(ItemMake, craftable, stashName, metadata, token)
|
||||||
local src = source
|
local src = source
|
||||||
|
debugPrint(GetInvokingResource())
|
||||||
|
if GetInvokingResource() and GetInvokingResource() ~= getScript() and GetInvokingResource() ~= "qb-core" then
|
||||||
|
debugPrint("^1Error^7: ^1Possible exploit^7, ^1vital function was called from an external resource^7")
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
if not checkToken(src, token, "item", ItemMake) then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
local hasItems, hasTable = hasItem(ItemMake, 1, src)
|
local hasItems, hasTable = hasItem(ItemMake, 1, src)
|
||||||
if stashName then
|
if stashName then
|
||||||
local itemRemove = {}
|
local itemRemove = {}
|
||||||
@@ -441,7 +463,9 @@ RegisterNetEvent(getScript()..":Crafting:GetItem", function(ItemMake, craftable,
|
|||||||
stashItems = getStash(name)
|
stashItems = getStash(name)
|
||||||
for k, v in pairs(craftable[ItemMake] or {}) do
|
for k, v in pairs(craftable[ItemMake] or {}) do
|
||||||
for _, b in pairs(stashItems or {}) do
|
for _, b in pairs(stashItems or {}) do
|
||||||
if k == b.name then itemRemove[k] = v end
|
if k == b.name then
|
||||||
|
itemRemove[k] = v
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -449,7 +473,9 @@ RegisterNetEvent(getScript()..":Crafting:GetItem", function(ItemMake, craftable,
|
|||||||
stashItems = getStash(stashName)
|
stashItems = getStash(stashName)
|
||||||
for k, v in pairs(craftable[ItemMake] or {}) do
|
for k, v in pairs(craftable[ItemMake] or {}) do
|
||||||
for _, b in pairs(stashItems or {}) do
|
for _, b in pairs(stashItems or {}) do
|
||||||
if k == b.name then itemRemove[k] = v end
|
if k == b.name then
|
||||||
|
itemRemove[k] = v
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -21,6 +21,10 @@
|
|||||||
--- end
|
--- end
|
||||||
--- ```
|
--- ```
|
||||||
function isStarted(script)
|
function isStarted(script)
|
||||||
|
if not script then
|
||||||
|
print("^1Error^7: ^1Tried to check if ^3nil^2 was started^7, ^1returning ^4false^7")
|
||||||
|
return false
|
||||||
|
end
|
||||||
return GetResourceState(script):find("start") ~= nil
|
return GetResourceState(script):find("start") ~= nil
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -258,7 +262,7 @@ end
|
|||||||
--- ```
|
--- ```
|
||||||
function countTable(tbl)
|
function countTable(tbl)
|
||||||
local i = 0
|
local i = 0
|
||||||
for _ in pairs(tbl) do i = i + 1 end
|
for _ in pairs(tbl) do i += 1 end
|
||||||
return i
|
return i
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -546,6 +550,24 @@ end
|
|||||||
|
|
||||||
RegisterNetEvent(getScript()..":server:sendlog", sendServerLog)
|
RegisterNetEvent(getScript()..":server:sendlog", sendServerLog)
|
||||||
|
|
||||||
|
|
||||||
|
-- This function was created to help create random numbers
|
||||||
|
-- When you create a table of items with a random hunger value for example
|
||||||
|
-- `hunger = math.random(10, 20)` this will be set at script start and never change
|
||||||
|
-- using `hunger = {10, 20}` and then calling this function will make it generate a random number every time
|
||||||
|
-- It also fallsback if it simply recieved a number instead of a table
|
||||||
|
-- For example:
|
||||||
|
-- local hunger = {10, 20}
|
||||||
|
-- local hungerAmount = GetRandomTiming(hunger)
|
||||||
|
-- print(hungerAmount) -- number between 10, 20
|
||||||
|
function GetRandomTiming(tbl)
|
||||||
|
if type(tbl) == "table" then
|
||||||
|
return math.random(tbl[1], tbl[2])
|
||||||
|
else
|
||||||
|
return tbl
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
-------------------------------------------------------------
|
-------------------------------------------------------------
|
||||||
-- Material and Prop Functions
|
-- Material and Prop Functions
|
||||||
-------------------------------------------------------------
|
-------------------------------------------------------------
|
||||||
|
|||||||
@@ -15,6 +15,7 @@
|
|||||||
function lockInv(toggle)
|
function lockInv(toggle)
|
||||||
FreezeEntityPosition(PlayerPedId(), toggle)
|
FreezeEntityPosition(PlayerPedId(), toggle)
|
||||||
LocalPlayer.state:set("inv_busy", toggle, true)
|
LocalPlayer.state:set("inv_busy", toggle, true)
|
||||||
|
LocalPlayer.state:set("invBusy", toggle, true)
|
||||||
TriggerEvent('inventory:client:busy:status', toggle)
|
TriggerEvent('inventory:client:busy:status', toggle)
|
||||||
TriggerEvent('canUseInventoryAndHotbar:toggle', not toggle)
|
TriggerEvent('canUseInventoryAndHotbar:toggle', not toggle)
|
||||||
end
|
end
|
||||||
@@ -49,8 +50,9 @@ function hasItem(items, amount, src)
|
|||||||
|
|
||||||
local count = 0
|
local count = 0
|
||||||
for _, itemData in pairs(grabInv) do
|
for _, itemData in pairs(grabInv) do
|
||||||
|
jsonPrint(itemData)
|
||||||
if itemData and itemData.name == item then
|
if itemData and itemData.name == item then
|
||||||
count += (itemData.count or itemData.amount or 1)
|
count += (itemData.amount or itemData.count or 1)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
foundInv = foundInv:gsub("%-", "^7-^6"):gsub("%_", "^7_^6")
|
foundInv = foundInv:gsub("%-", "^7-^6"):gsub("%_", "^7_^6")
|
||||||
@@ -66,6 +68,9 @@ function hasItem(items, amount, src)
|
|||||||
end
|
end
|
||||||
return true, hasTable
|
return true, hasTable
|
||||||
end
|
end
|
||||||
|
-- if can't find inventory, return false
|
||||||
|
print("^1Error^7: ^1Can't find players inventory for some reason")
|
||||||
|
return false, {}
|
||||||
end
|
end
|
||||||
|
|
||||||
--- Retrieves a player's inventory based on the active inventory system.
|
--- Retrieves a player's inventory based on the active inventory system.
|
||||||
@@ -120,11 +125,19 @@ function getPlayerInv(src)
|
|||||||
elseif isStarted(CodeMInv) then
|
elseif isStarted(CodeMInv) then
|
||||||
foundInv = CodeMInv
|
foundInv = CodeMInv
|
||||||
if src then
|
if src then
|
||||||
grabInv = exports[CodeMInv]:GetInventory(src)
|
grabInv = exports[CodeMInv]:GetInventory(getPlayer(src).citizenId, src)
|
||||||
else
|
else
|
||||||
grabInv = exports[CodeMInv]:getUserInventory()
|
grabInv = exports[CodeMInv]:getUserInventory()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
elseif isStarted(TgiannInv) then
|
||||||
|
foundInv = TgiannInv
|
||||||
|
if src then
|
||||||
|
grabInv = exports[TgiannInv]:GetPlayerItems(src)
|
||||||
|
else
|
||||||
|
grabInv = exports[TgiannInv]:GetPlayerItems()
|
||||||
|
end
|
||||||
|
|
||||||
elseif isStarted(QBInv) then
|
elseif isStarted(QBInv) then
|
||||||
foundInv = QBInv
|
foundInv = QBInv
|
||||||
if src then
|
if src then
|
||||||
@@ -160,4 +173,91 @@ function getPlayerInv(src)
|
|||||||
print("^4ERROR^7: ^2No Inventory detected ^7- ^2Check ^3starter^1.^2lua^7")
|
print("^4ERROR^7: ^2No Inventory detected ^7- ^2Check ^3starter^1.^2lua^7")
|
||||||
end
|
end
|
||||||
return grabInv, foundInv
|
return grabInv, foundInv
|
||||||
|
end
|
||||||
|
|
||||||
|
function isInventoryOpen()
|
||||||
|
if isStarted(OXInv) then
|
||||||
|
return LocalPlayer.state.invBusy
|
||||||
|
|
||||||
|
elseif isStarted(QSInv) then
|
||||||
|
return exports[QSInv]:inInventory()
|
||||||
|
|
||||||
|
elseif isStarted(OrigenInv) then
|
||||||
|
return exports[OrigenInv]:IsInventoryOpen()
|
||||||
|
|
||||||
|
elseif isStarted(CoreInv) then
|
||||||
|
return exports[CoreInv]:isInventoryOpen()
|
||||||
|
|
||||||
|
elseif isStarted(CodeMInv) then
|
||||||
|
return false
|
||||||
|
-- CodeM doesn't have a function to check if the inventory is open
|
||||||
|
-- No idea what it uses, so it just skips the check
|
||||||
|
|
||||||
|
elseif isStarted(TgiannInv) then
|
||||||
|
return exports[TgiannInv]:IsInventoryActive()
|
||||||
|
|
||||||
|
elseif isStarted(QBInv) then
|
||||||
|
return LocalPlayer.state.inv_busy
|
||||||
|
|
||||||
|
elseif isStarted(PSInv) then
|
||||||
|
return LocalPlayer.state.inv_busy
|
||||||
|
|
||||||
|
elseif ESX and isStarted(ESXExport) then
|
||||||
|
return false
|
||||||
|
|
||||||
|
elseif isStarted(RSGInv) then
|
||||||
|
return LocalPlayer.state.inv_busy
|
||||||
|
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
-------------------------------------------------------------
|
||||||
|
-- Item Image Retrieval
|
||||||
|
-------------------------------------------------------------
|
||||||
|
|
||||||
|
--- Retrieves the NUI link for an item's image from the active inventory system.
|
||||||
|
---
|
||||||
|
--- @param item string The item name.
|
||||||
|
--- @return string string A `nui://` link to the item's image, or an empty string if not found.
|
||||||
|
---
|
||||||
|
--- @usage
|
||||||
|
--- ```lua
|
||||||
|
--- local imageLink = invImg("health_potion")
|
||||||
|
--- if imageLink ~= "" then print(imageLink) end
|
||||||
|
--- ```
|
||||||
|
function invImg(item)
|
||||||
|
local imgLink = ""
|
||||||
|
if item ~= "" and Items[item] then
|
||||||
|
if isStarted(OXInv) then
|
||||||
|
imgLink = "nui://"..OXInv.."/web/images/"..(Items[item].image or "")
|
||||||
|
|
||||||
|
elseif isStarted(QSInv) then
|
||||||
|
imgLink = "nui://"..QSInv.."/html/images/"..(Items[item].image or "")
|
||||||
|
|
||||||
|
elseif isStarted(CoreInv) then
|
||||||
|
imgLink = "nui://"..CoreInv.."/html/img/"..(Items[item].image or "")
|
||||||
|
|
||||||
|
elseif isStarted(CodeMInv) then
|
||||||
|
imgLink = "nui://"..CodeMInv.."/html/itemimages/"..(Items[item].image or "")
|
||||||
|
|
||||||
|
elseif isStarted(OrigenInv) then
|
||||||
|
imgLink = "nui://"..OrigenInv.."/html/img/"..(Items[item].image or "")
|
||||||
|
|
||||||
|
elseif isStarted(QBInv) then
|
||||||
|
imgLink = "nui://"..QBInv.."/html/images/"..(Items[item].image or "")
|
||||||
|
|
||||||
|
elseif isStarted(PSInv) then
|
||||||
|
imgLink = "nui://"..PSInv.."/html/images/"..(Items[item].image or "")
|
||||||
|
|
||||||
|
elseif isStarted(TgiannInv) then
|
||||||
|
imgLink = "nui://inventory_images/images/"..(Items[item].image or "")
|
||||||
|
|
||||||
|
elseif isStarted(RSGInv) then
|
||||||
|
imgLink = "nui://"..RSGInv.."/html/images/"..(Items[item].image or "")
|
||||||
|
|
||||||
|
else
|
||||||
|
print("^4ERROR^7: ^2No Inventory detected for invImg - Check starter.lua")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
return imgLink
|
||||||
end
|
end
|
||||||
@@ -31,57 +31,27 @@ validTokens = {}
|
|||||||
--- ```
|
--- ```
|
||||||
function createUseableItem(item, funct)
|
function createUseableItem(item, funct)
|
||||||
if isStarted(ESXExport) then
|
if isStarted(ESXExport) then
|
||||||
debugPrint("^6Bridge^7: ^2Registering item as ^3Usable^2 with ^7es_extended", item)
|
debugPrint("^6Bridge^7: ^2Registering item as ^3Usable^2 with ^7es_extended^7", item)
|
||||||
while not ESX do Wait(0) end
|
while not ESX do Wait(0) end
|
||||||
ESX.RegisterUsableItem(item, funct)
|
ESX.RegisterUsableItem(item, funct)
|
||||||
|
|
||||||
elseif isStarted(QBExport) and not isStarted(QBXExport) then
|
elseif isStarted(QBExport) and not isStarted(QBXExport) then
|
||||||
debugPrint("^6Bridge^7: ^2Registering item as ^3Usable^2 with ^7qb-core", item)
|
debugPrint("^6Bridge^7: ^2Registering item as ^3Usable^2 with ^7qb-core^7", item)
|
||||||
Core.Functions.CreateUseableItem(item, funct)
|
Core.Functions.CreateUseableItem(item, funct)
|
||||||
|
|
||||||
elseif isStarted(QBXExport) then
|
elseif isStarted(QBXExport) then
|
||||||
debugPrint("^6Bridge^7: ^2Registering item as ^3Usable^2 with ^7qbx_core", item)
|
debugPrint("^6Bridge^7: ^2Registering item as ^3Usable^2 with ^7qbx_core^7", item)
|
||||||
exports[QBXExport]:CreateUseableItem(item, funct)
|
exports[QBXExport]:CreateUseableItem(item, funct)
|
||||||
|
|
||||||
|
elseif isStarted(RSGExport) then
|
||||||
|
debugPrint("^6Bridge^7: ^2Registering item as ^3Usable^2 with ^1rsg-core^7", item)
|
||||||
|
Core.Functions.CreateUseableItem(item, funct)
|
||||||
|
|
||||||
else
|
else
|
||||||
print("^4ERROR^7: No supported framework detected for registering usable item: ^3"..item.."^7")
|
print("^4ERROR^7: No supported framework detected for registering usable item: ^3"..item.."^7")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
-------------------------------------------------------------
|
|
||||||
-- Item Image Retrieval
|
|
||||||
-------------------------------------------------------------
|
|
||||||
|
|
||||||
--- Retrieves the NUI link for an item's image from the active inventory system.
|
|
||||||
---
|
|
||||||
--- @param item string The item name.
|
|
||||||
--- @return string string A `nui://` link to the item's image, or an empty string if not found.
|
|
||||||
---
|
|
||||||
--- @usage
|
|
||||||
--- ```lua
|
|
||||||
--- local imageLink = invImg("health_potion")
|
|
||||||
--- if imageLink ~= "" then print(imageLink) end
|
|
||||||
--- ```
|
|
||||||
function invImg(item)
|
|
||||||
local imgLink = ""
|
|
||||||
if item ~= "" and Items[item] then
|
|
||||||
if isStarted(OXInv) then
|
|
||||||
imgLink = "nui://"..OXInv.."/web/images/"..(Items[item].image or "")
|
|
||||||
elseif isStarted(QSInv) then
|
|
||||||
imgLink = "nui://"..QSInv.."/html/images/"..(Items[item].image or "")
|
|
||||||
elseif isStarted(CoreInv) then
|
|
||||||
imgLink = "nui://"..CoreInv.."/html/img/"..(Items[item].image or "")
|
|
||||||
elseif isStarted(CodeMInv) then
|
|
||||||
imgLink = "nui://"..CodeMInv.."/html/itemimages/"..(Items[item].image or "")
|
|
||||||
elseif isStarted(OrigenInv) then
|
|
||||||
imgLink = "nui://"..OrigenInv.."/html/img/"..(Items[item].image or "")
|
|
||||||
elseif isStarted(QBInv) then
|
|
||||||
imgLink = "nui://"..QBInv.."/html/images/"..(Items[item].image or "")
|
|
||||||
elseif isStarted(RSGInv) then
|
|
||||||
imgLink = "nui://"..RSGInv.."/html/images/"..(Items[item].image or "")
|
|
||||||
else
|
|
||||||
print("^4ERROR^7: ^2No Inventory detected for invImg - Check starter.lua")
|
|
||||||
end
|
|
||||||
end
|
|
||||||
return imgLink
|
|
||||||
end
|
|
||||||
|
|
||||||
-------------------------------------------------------------
|
-------------------------------------------------------------
|
||||||
-- Adding and Removing Items
|
-- Adding and Removing Items
|
||||||
@@ -162,7 +132,7 @@ end
|
|||||||
--- TriggerServerEvent(getScript()..":server:toggleItem", true, "health_potion", 1)
|
--- TriggerServerEvent(getScript()..":server:toggleItem", true, "health_potion", 1)
|
||||||
--- ```
|
--- ```
|
||||||
RegisterNetEvent(getScript()..":server:toggleItem", function(give, item, amount, newsrc, info, slot, token)
|
RegisterNetEvent(getScript()..":server:toggleItem", function(give, item, amount, newsrc, info, slot, token)
|
||||||
debugPrint(GetInvokingResource())
|
--debugPrint(GetInvokingResource())
|
||||||
if GetInvokingResource() and GetInvokingResource() ~= getScript() and GetInvokingResource() ~= "qb-core" then
|
if GetInvokingResource() and GetInvokingResource() ~= getScript() and GetInvokingResource() ~= "qb-core" then
|
||||||
debugPrint("^1Error^7: ^1Possible exploit^7, ^1vital function was called from an external resource^7")
|
debugPrint("^1Error^7: ^1Possible exploit^7, ^1vital function was called from an external resource^7")
|
||||||
return
|
return
|
||||||
@@ -174,21 +144,9 @@ RegisterNetEvent(getScript()..":server:toggleItem", function(give, item, amount,
|
|||||||
|
|
||||||
local src = newsrc or source
|
local src = newsrc or source
|
||||||
if (give == true or give == 1) then
|
if (give == true or give == 1) then
|
||||||
if newsrc == nil then -- must be coming from client this would be blank
|
if newsrc == nil then -- this must be coming from client this would be blank
|
||||||
if token == nil then
|
if not checkToken(src, token, "item", item) then
|
||||||
debugPrint("^1Auth^7: ^1No token recieved^7")
|
return
|
||||||
dupeWarn(src, item, "Auth: Player "..src.." attempted to spawn "..item.." without an auth token")
|
|
||||||
else
|
|
||||||
if type(token) ~= "number" then -- checks if the newsrc is a source or token, if number its coming form the server itself
|
|
||||||
debugPrint("^1Auth^7: ^2Auth token received^7, ^2checking against server cache^7..")
|
|
||||||
if token ~= validTokens[src] then
|
|
||||||
debugPrint("^1Auth^7: ^1Tokens don't match! ^7", token, validTokens[src])
|
|
||||||
dupeWarn(src, item, "Auth: "..src.." attempted to spawn "..item.." with an incorrect auth token")
|
|
||||||
else
|
|
||||||
debugPrint("^1Auth^7: ^2Client and Server Auth tokens match^7!", token, validTokens[src])
|
|
||||||
validTokens[src] = nil
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -204,22 +162,32 @@ RegisterNetEvent(getScript()..":server:toggleItem", function(give, item, amount,
|
|||||||
dupeWarn(src, item, amount)
|
dupeWarn(src, item, amount)
|
||||||
|
|
||||||
else
|
else
|
||||||
if isStarted(OXInv) then invName = OXInv
|
if isStarted(OXInv) then
|
||||||
|
invName = OXInv
|
||||||
exports[OXInv]:RemoveItem(src, item, remamount, nil)
|
exports[OXInv]:RemoveItem(src, item, remamount, nil)
|
||||||
|
|
||||||
elseif isStarted(QSInv) then invName = QSInv
|
elseif isStarted(QSInv) then
|
||||||
|
invName = QSInv
|
||||||
exports[QSInv]:RemoveItem(src, item, remamount)
|
exports[QSInv]:RemoveItem(src, item, remamount)
|
||||||
|
|
||||||
elseif isStarted(CoreInv) then invName = CoreInv
|
elseif isStarted(CoreInv) then
|
||||||
|
invName = CoreInv
|
||||||
exports[CoreInv]:removeItem(src, item, remamount)
|
exports[CoreInv]:removeItem(src, item, remamount)
|
||||||
|
|
||||||
elseif isStarted(OrigenInv) then invName = OrigenInv
|
elseif isStarted(OrigenInv) then
|
||||||
|
invName = OrigenInv
|
||||||
exports[OrigenInv]:removeItem(src, item, remamount)
|
exports[OrigenInv]:removeItem(src, item, remamount)
|
||||||
|
|
||||||
elseif isStarted(CodeMInv) then invName = CodeMInv
|
elseif isStarted(CodeMInv) then
|
||||||
|
invName = CodeMInv
|
||||||
exports[CodeMInv]:RemoveItem(src, item, remamount)
|
exports[CodeMInv]:RemoveItem(src, item, remamount)
|
||||||
|
|
||||||
elseif isStarted(QBInv) then invName = QBInv
|
elseif isStarted(TgiannInv) then
|
||||||
|
invName = TgiannInv
|
||||||
|
exports[TgiannInv]:RemoveItem(src, item, remamount)
|
||||||
|
|
||||||
|
elseif isStarted(QBInv) then
|
||||||
|
invName = QBInv
|
||||||
while remamount > 0 do
|
while remamount > 0 do
|
||||||
if Core.Functions.GetPlayer(src).Functions.RemoveItem(item, 1, slot) then
|
if Core.Functions.GetPlayer(src).Functions.RemoveItem(item, 1, slot) then
|
||||||
remamount -= 1
|
remamount -= 1
|
||||||
@@ -231,7 +199,9 @@ RegisterNetEvent(getScript()..":server:toggleItem", function(give, item, amount,
|
|||||||
if Config.Crafting.showItemBox then
|
if Config.Crafting.showItemBox then
|
||||||
TriggerClientEvent((isStarted(QBInv) and QBInvNew and "qb-" or "").."inventory:client:ItemBox", src, Items[item], "remove", amount or 1)
|
TriggerClientEvent((isStarted(QBInv) and QBInvNew and "qb-" or "").."inventory:client:ItemBox", src, Items[item], "remove", amount or 1)
|
||||||
end
|
end
|
||||||
elseif isStarted(PSInv) then invName = PSInv
|
|
||||||
|
elseif isStarted(PSInv) then
|
||||||
|
invName = PSInv
|
||||||
while remamount > 0 do
|
while remamount > 0 do
|
||||||
if Core.Functions.GetPlayer(src).Functions.RemoveItem(item, 1, slot) then
|
if Core.Functions.GetPlayer(src).Functions.RemoveItem(item, 1, slot) then
|
||||||
remamount -= 1
|
remamount -= 1
|
||||||
@@ -282,6 +252,7 @@ RegisterNetEvent(getScript()..":server:toggleItem", function(give, item, amount,
|
|||||||
else
|
else
|
||||||
local amountToAdd = amount or 1
|
local amountToAdd = amount or 1
|
||||||
if isStarted(OXInv) then invName = OXInv
|
if isStarted(OXInv) then invName = OXInv
|
||||||
|
jsonPrint(info)
|
||||||
exports[OXInv]:AddItem(src, item, amountToAdd, info, slot)
|
exports[OXInv]:AddItem(src, item, amountToAdd, info, slot)
|
||||||
|
|
||||||
elseif isStarted(QSInv) then invName = QSInv
|
elseif isStarted(QSInv) then invName = QSInv
|
||||||
@@ -296,22 +267,26 @@ RegisterNetEvent(getScript()..":server:toggleItem", function(give, item, amount,
|
|||||||
elseif isStarted(OrigenInv) then invName = OrigenInv
|
elseif isStarted(OrigenInv) then invName = OrigenInv
|
||||||
exports[OrigenInv]:addItem(src, item, amountToAdd, info, slot)
|
exports[OrigenInv]:addItem(src, item, amountToAdd, info, slot)
|
||||||
|
|
||||||
|
elseif isStarted(TgiannInv) then invName = TgiannInv
|
||||||
|
exports[TgiannInv]:AddItem(src, item, amountToAdd, slot, info)
|
||||||
|
|
||||||
elseif isStarted(QBInv) then invName = QBInv
|
elseif isStarted(QBInv) then invName = QBInv
|
||||||
if Core.Functions.GetPlayer(src).Functions.AddItem(item, amountToAdd, nil, info) then
|
if Core.Functions.GetPlayer(src).Functions.AddItem(item, amountToAdd, nil, info) then
|
||||||
TriggerClientEvent((isStarted(QBInv) and QBInvNew and "qb-" or "").."inventory:client:ItemBox", src, Items[item], "add", amountToAdd)
|
TriggerClientEvent((isStarted(QBInv) and QBInvNew and "qb-" or "").."inventory:client:ItemBox", src, Items[item], "add", amountToAdd)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
elseif isStarted(PSInv) then invName = PSInv
|
||||||
|
if Core.Functions.GetPlayer(src).Functions.AddItem(item, amountToAdd, nil, info) then
|
||||||
|
if Config.Crafting.showItemBox then
|
||||||
|
TriggerClientEvent("ps-inventory:client:ItemBox", src, Items[item], "add", amountToAdd)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
elseif isStarted(RSGInv) then invName = RSGInv
|
elseif isStarted(RSGInv) then invName = RSGInv
|
||||||
if Core.Functions.GetPlayer(src).Functions.AddItem(item, amountToAdd, nil, info) then
|
if Core.Functions.GetPlayer(src).Functions.AddItem(item, amountToAdd, nil, info) then
|
||||||
TriggerClientEvent("rsg-inventory:client:ItemBox", src, Items[item], "add", amountToAdd)
|
TriggerClientEvent("rsg-inventory:client:ItemBox", src, Items[item], "add", amountToAdd)
|
||||||
end
|
end
|
||||||
|
|
||||||
elseif isStarted(PSInv) then invName = PSInv
|
|
||||||
if Core.Functions.GetPlayer(src).Functions.AddItem(item, amountToAdd, nil, info) then
|
|
||||||
if Config.Crafting.showItemBox then
|
|
||||||
TriggerClientEvent("inventory:client:ItemBox", src, Items[item], "add", amountToAdd)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
if invName == "" then
|
if invName == "" then
|
||||||
@@ -347,13 +322,13 @@ end)
|
|||||||
--- ```lua
|
--- ```lua
|
||||||
--- dupeWarn(playerId, "health_potion")
|
--- dupeWarn(playerId, "health_potion")
|
||||||
--- ```
|
--- ```
|
||||||
function dupeWarn(src, item, amount)
|
function dupeWarn(src, item, message)
|
||||||
local name = getPlayer(src).name
|
local name = getPlayer(src).name
|
||||||
print("^5DupeWarn^7: "..name.." (^1"..tostring(src).."^7) ^2Tried to remove item '^3"..item.."^7'^2 but it wasn't there^7")
|
print(message or "^5DupeWarn^7: "..name.." (^1"..tostring(src).."^7) ^2Tried to remove item '^3"..item.."^7'^2 but it wasn't there^7")
|
||||||
if not debugMode then
|
if not debugMode then
|
||||||
DropPlayer(src, name.."("..tostring(src)..") Kicked for suspected duplicating items: "..item)
|
DropPlayer(src, name.."("..tostring(src)..") kicked by exploit protection")
|
||||||
end
|
end
|
||||||
print("^5DupeWarn^7: "..name.."(^1"..tostring(src).."^7) ^2Dropped from server - exploit protection detected an item not being found in players inventory^7")
|
print("^5DupeWarn^7: "..name.."(^1"..tostring(src).."^7) ^2Dropped from server - exploit protection^7")
|
||||||
end
|
end
|
||||||
|
|
||||||
-------------------------------------------------------------
|
-------------------------------------------------------------
|
||||||
@@ -410,7 +385,7 @@ function getDurability(item)
|
|||||||
if v.name == item then
|
if v.name == item then
|
||||||
if v.slot <= lowestSlot then
|
if v.slot <= lowestSlot then
|
||||||
lowestSlot = v.slot
|
lowestSlot = v.slot
|
||||||
durability = itemcheck[k].info.durability
|
durability = itemcheck[k].info and itemcheck[k].info.durability or nil
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -422,7 +397,7 @@ function getDurability(item)
|
|||||||
if v.slot <= lowestSlot then
|
if v.slot <= lowestSlot then
|
||||||
debugPrint(v.slot, itemcheck[k].metadata.durability)
|
debugPrint(v.slot, itemcheck[k].metadata.durability)
|
||||||
lowestSlot = v.slot
|
lowestSlot = v.slot
|
||||||
durability = v.metadata.durability
|
durability = v.metadata and v.metadata.durability or nil
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -432,7 +407,7 @@ function getDurability(item)
|
|||||||
for _, v in pairs(itemcheck) do
|
for _, v in pairs(itemcheck) do
|
||||||
if v.name == item and v.slot <= lowestSlot then
|
if v.name == item and v.slot <= lowestSlot then
|
||||||
lowestSlot = v.slot
|
lowestSlot = v.slot
|
||||||
durability = v.info.durability
|
durability = v.info and v.info.durability or nil
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -442,7 +417,7 @@ function getDurability(item)
|
|||||||
for _, v in pairs(itemcheck) do
|
for _, v in pairs(itemcheck) do
|
||||||
if v.name == item and v.slot <= lowestSlot then
|
if v.name == item and v.slot <= lowestSlot then
|
||||||
lowestSlot = v.slot
|
lowestSlot = v.slot
|
||||||
durability = v.metadata.durability
|
durability = v.metadata and v.metadata.durability or nil
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -450,9 +425,9 @@ function getDurability(item)
|
|||||||
if isStarted(CodeMInv) then
|
if isStarted(CodeMInv) then
|
||||||
local itemcheck = exports[CodeMInv]:GetClientPlayerInventory()
|
local itemcheck = exports[CodeMInv]:GetClientPlayerInventory()
|
||||||
for _, v in pairs(itemcheck) do
|
for _, v in pairs(itemcheck) do
|
||||||
if v.name == item and v.slot <= lowestSlot then
|
if v.name == item and tonumber(v.slot) <= lowestSlot then
|
||||||
lowestSlot = v.slot
|
lowestSlot = tonumber(v.slot)
|
||||||
durability = v.info.durability
|
durability = v.info and v.info.durability or nil
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -462,7 +437,17 @@ function getDurability(item)
|
|||||||
for _, v in pairs(itemcheck) do
|
for _, v in pairs(itemcheck) do
|
||||||
if v.name == item and v.slot <= lowestSlot then
|
if v.name == item and v.slot <= lowestSlot then
|
||||||
lowestSlot = v.slot
|
lowestSlot = v.slot
|
||||||
durability = v.metadata.durability
|
durability = v.metadata and v.metadata.durability or nil
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
if isStarted(TgiannInv) then
|
||||||
|
local itemcheck = exports[TgiannInv]:GetPlayerItems()
|
||||||
|
for _, v in pairs(itemcheck) do
|
||||||
|
if v.name == item and v.slot <= lowestSlot then
|
||||||
|
lowestSlot = v.slot
|
||||||
|
durability = v.metadata and v.metadata.durability or nil
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -524,6 +509,9 @@ RegisterNetEvent(getScript()..":server:setMetaData", function(data)
|
|||||||
|
|
||||||
elseif isStarted(OrigenInv) then
|
elseif isStarted(OrigenInv) then
|
||||||
exports[OrigenInv]:setMetadata(src, data.slot, data.metadata)
|
exports[OrigenInv]:setMetadata(src, data.slot, data.metadata)
|
||||||
|
|
||||||
|
elseif isStarted(TgiannInv) then
|
||||||
|
exports[TgiannInv]:UpdateItemMetadata(src, data.item, data.slot, data.metadata)
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
|
|
||||||
@@ -633,9 +621,31 @@ function canCarry(itemTable, src)
|
|||||||
resultTable[k] = exports[OrigenInv]:canCarryItem(src, k, v)
|
resultTable[k] = exports[OrigenInv]:canCarryItem(src, k, v)
|
||||||
end
|
end
|
||||||
|
|
||||||
elseif isStarted(QBInv) then
|
elseif isStarted(TgiannInv) then
|
||||||
for k, v in pairs(itemTable) do
|
for k, v in pairs(itemTable) do
|
||||||
resultTable[k] = exports[QBInv]:CanAddItem(src, k, v)
|
resultTable[k] = exports[TgiannInv]:CanCarryItem(source, k, v)
|
||||||
|
end
|
||||||
|
|
||||||
|
elseif isStarted(QBInv) then
|
||||||
|
if QBInvNew then
|
||||||
|
for k, v in pairs(itemTable) do
|
||||||
|
resultTable[k] = exports[QBInv]:CanAddItem(src, k, v)
|
||||||
|
end
|
||||||
|
else
|
||||||
|
local items = getPlayerInv(src)
|
||||||
|
local totalWeight = 0
|
||||||
|
if not items then return false end
|
||||||
|
for _, item in pairs(items) do
|
||||||
|
totalWeight += (item.weight * item.amount)
|
||||||
|
end
|
||||||
|
for k, v in pairs(itemTable) do
|
||||||
|
local itemInfo = Items[k]
|
||||||
|
if not itemInfo then
|
||||||
|
resultTable[k] = true
|
||||||
|
else
|
||||||
|
resultTable[k] = (totalWeight + (itemInfo.weight * v)) <= InventoryWeight
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
elseif isStarted(PSInv) then
|
elseif isStarted(PSInv) then
|
||||||
@@ -647,7 +657,7 @@ function canCarry(itemTable, src)
|
|||||||
end
|
end
|
||||||
for k, v in pairs(itemTable) do
|
for k, v in pairs(itemTable) do
|
||||||
local itemInfo = Items[k]
|
local itemInfo = Items[k]
|
||||||
if not itemInfo and not Player.Offline then
|
if not itemInfo then
|
||||||
resultTable[k] = true
|
resultTable[k] = true
|
||||||
else
|
else
|
||||||
resultTable[k] = (totalWeight + (itemInfo.weight * v)) <= InventoryWeight
|
resultTable[k] = (totalWeight + (itemInfo.weight * v)) <= InventoryWeight
|
||||||
@@ -669,13 +679,33 @@ if isServer() then
|
|||||||
return result
|
return result
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
createCallback(getScript()..":server:getMaxCarryCraft", function(source, data)
|
||||||
|
local src = source
|
||||||
|
local item = data.item
|
||||||
|
local max = data.max or 100
|
||||||
|
|
||||||
|
local maxCanCarry = 0
|
||||||
|
for i = 1, max do
|
||||||
|
local checkTable = {
|
||||||
|
[item] = i
|
||||||
|
}
|
||||||
|
local result = canCarry(checkTable, src)
|
||||||
|
if result[item] == true then
|
||||||
|
maxCanCarry = i
|
||||||
|
else
|
||||||
|
break
|
||||||
|
end
|
||||||
|
end
|
||||||
|
return maxCanCarry
|
||||||
|
end)
|
||||||
|
|
||||||
local AuthEvent = getScript()..":"..keyGen()..keyGen()..keyGen()..keyGen()..":"..keyGen()..keyGen()..keyGen()..keyGen()
|
local AuthEvent = getScript()..":"..keyGen()..keyGen()..keyGen()..keyGen()..":"..keyGen()..keyGen()..keyGen()..keyGen()
|
||||||
validTokens = validTokens or {}
|
validTokens = validTokens or {}
|
||||||
|
|
||||||
createCallback(AuthEvent, function(source)
|
createCallback(AuthEvent, function(source)
|
||||||
local src = source
|
local src = source
|
||||||
local token = keyGen()..keyGen()..keyGen()..keyGen() -- Use a secure random generator here
|
local token = keyGen()..keyGen()..keyGen()..keyGen() -- Use a secure random generator here
|
||||||
debugPrint(GetInvokingResource())
|
--debugPrint(GetInvokingResource())
|
||||||
if GetInvokingResource() and GetInvokingResource() ~= getScript() and GetInvokingResource() ~= "qb-core" then
|
if GetInvokingResource() and GetInvokingResource() ~= getScript() and GetInvokingResource() ~= "qb-core" then
|
||||||
debugPrint("^1Error^7: ^1Possible exploit^7, ^1vital function was called from an external resource^7")
|
debugPrint("^1Error^7: ^1Possible exploit^7, ^1vital function was called from an external resource^7")
|
||||||
return ""
|
return ""
|
||||||
@@ -707,22 +737,63 @@ if isServer() then
|
|||||||
receivedEvent = {}
|
receivedEvent = {}
|
||||||
createCallback(getScript()..":callback:GetAuthEvent", function(source)
|
createCallback(getScript()..":callback:GetAuthEvent", function(source)
|
||||||
local src = source
|
local src = source
|
||||||
debugPrint(GetInvokingResource())
|
--debugPrint(GetInvokingResource())
|
||||||
if GetInvokingResource() and GetInvokingResource() ~= getScript() and GetInvokingResource() ~= "qb-core" then
|
if GetInvokingResource() and GetInvokingResource() ~= getScript() and GetInvokingResource() ~= "qb-core" then
|
||||||
debugPrint("^1Error^7: ^1Possible exploit^7, ^1vital callback was called from an external resource^7")
|
debugPrint("^1Error^7: ^1Possible exploit^7, ^1vital callback was called from an external resource^7")
|
||||||
return ""
|
return ""
|
||||||
end
|
end
|
||||||
debugPrint("^1Auth^7: ^2Player Source^7: "..src.." ^2requested ^3AuthEvent^7", AuthEvent)
|
debugPrint("^1Auth^7: ^2Player Source^7: "..src.." ^2requested ^3AuthEvent^7", AuthEvent)
|
||||||
if not receivedEvent[src] then receivedEvent[src] = true
|
if not receivedEvent[src] then
|
||||||
|
receivedEvent[src] = true
|
||||||
return AuthEvent
|
return AuthEvent
|
||||||
else
|
else
|
||||||
print("^1Auth^7: ^1Player ^7"..src.." ^1tried to request auth token more than once^7")
|
print("^1Auth^7: ^1Player ^7"..src.." ^1tried to request auth token more than once^7")
|
||||||
return ""
|
return ""
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
RegisterNetEvent(getScript()..":clearAuthEventRequest", function()
|
||||||
|
local src = source
|
||||||
|
debugPrint("^1Auth^7: ^2Manually clearing Auth Event for Player Source^7:", src, AuthEvent)
|
||||||
|
receivedEvent[src] = nil
|
||||||
|
end)
|
||||||
|
|
||||||
|
-- Multiuse function to check if the generated client token is valid
|
||||||
|
function checkToken(src, token, genType, name)
|
||||||
|
if token == nil then
|
||||||
|
debugPrint("^1Auth^7: ^1No token recieved^7")
|
||||||
|
if genType == "stash" then
|
||||||
|
dupeWarn(src, name, "^1Auth Error^7: ^3"..src.." ^1create a stash ^7"..name.." ^1without an auth token^7")
|
||||||
|
elseif genType == "item" then
|
||||||
|
dupeWarn(src, name, "^1Auth Error^7: ^3"..src.." ^1attempted to spawn an item ^7"..name.." ^1without an auth token^7")
|
||||||
|
end
|
||||||
|
return false
|
||||||
|
else
|
||||||
|
debugPrint("^1Auth^7: ^2Auth token received^7, ^2checking against server cache^7..")
|
||||||
|
if token ~= validTokens[src] then
|
||||||
|
debugPrint("^1Auth^7: ^1Tokens don't match! ^7", token, validTokens[src])
|
||||||
|
if genType == "stash" then
|
||||||
|
dupeWarn(src, name, "^1Auth Error^7: ^3"..src.." ^1create a stash ^7"..name.." ^1with an incorrect auth token^7")
|
||||||
|
elseif genType == "item" then
|
||||||
|
dupeWarn(src, name, "^1Auth Error^7: ^3"..src.." ^1attempted to spawn an item ^7"..name.." ^1with an incorrect auth token^7")
|
||||||
|
end
|
||||||
|
return false
|
||||||
|
else
|
||||||
|
debugPrint("^1Auth^7: ^2Client and Server Auth tokens match^7!", token, validTokens[src])
|
||||||
|
validTokens[src] = nil
|
||||||
|
return true
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
else
|
else
|
||||||
onPlayerLoaded(function()
|
onPlayerLoaded(function()
|
||||||
debugPrint("^1Auth^7: ^2Requesting ^3Auth Event^7")
|
debugPrint("^1Auth^7: ^2Requesting ^3Auth Event^7")
|
||||||
AuthEvent = triggerCallback(getScript()..":callback:GetAuthEvent")
|
AuthEvent = triggerCallback(getScript()..":callback:GetAuthEvent")
|
||||||
end, true)
|
end, true)
|
||||||
|
|
||||||
|
onPlayerUnload(function()
|
||||||
|
debugPrint("^1Auth^7: ^2Clearing Auth Event^7")
|
||||||
|
TriggerServerEvent(getScript()..":clearAuthEventRequest")
|
||||||
|
end, true)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -12,8 +12,16 @@
|
|||||||
-------------------------------------------------------------
|
-------------------------------------------------------------
|
||||||
-- Global Duty Status
|
-- Global Duty Status
|
||||||
-------------------------------------------------------------
|
-------------------------------------------------------------
|
||||||
|
-- This attempts to sync up with the players framework onDuty variable
|
||||||
|
-- This stops the script getting confused when one is false and one is true
|
||||||
onDuty = false
|
onDuty = false
|
||||||
|
|
||||||
|
if not isServer() then
|
||||||
|
onPlayerLoaded(function()
|
||||||
|
onDuty = getPlayer().onDuty
|
||||||
|
end, true)
|
||||||
|
end
|
||||||
|
|
||||||
-------------------------------------------------------------
|
-------------------------------------------------------------
|
||||||
-- Boss Role Detection
|
-- Boss Role Detection
|
||||||
-------------------------------------------------------------
|
-------------------------------------------------------------
|
||||||
@@ -38,7 +46,7 @@ function makeBossRoles(role)
|
|||||||
local data = (Jobs and Jobs[role]) or (Gangs and Gangs[role])
|
local data = (Jobs and Jobs[role]) or (Gangs and Gangs[role])
|
||||||
if data then
|
if data then
|
||||||
for grade, info in pairs(data.grades) do
|
for grade, info in pairs(data.grades) do
|
||||||
if info.isboss or info.bankAuth then
|
if info.isboss or info.bankAuth or info.isBoss then
|
||||||
boss[role] = boss[role] and math.min(boss[role], tonumber(grade)) or tonumber(grade)
|
boss[role] = boss[role] and math.min(boss[role], tonumber(grade)) or tonumber(grade)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -92,9 +100,14 @@ end
|
|||||||
--- toggleDuty() -- Player receives a notification of their new duty status.
|
--- toggleDuty() -- Player receives a notification of their new duty status.
|
||||||
--- ```
|
--- ```
|
||||||
function toggleDuty()
|
function toggleDuty()
|
||||||
onDuty = not onDuty
|
|
||||||
if isStarted(QBExport) or isStarted(QBXExport) then
|
if isStarted(QBExport) or isStarted(QBXExport) then
|
||||||
TriggerServerEvent("QBCore:ToggleDuty")
|
TriggerServerEvent("QBCore:ToggleDuty")
|
||||||
|
Wait(100)
|
||||||
|
onDuty = getPlayer().onDuty
|
||||||
|
elseif isStarted(RSGExport) then
|
||||||
|
TriggerServerEvent("RSGCore:ToggleDuty")
|
||||||
|
Wait(100)
|
||||||
|
onDuty = getPlayer().onDuty
|
||||||
else
|
else
|
||||||
if onDuty then
|
if onDuty then
|
||||||
triggerNotify(nil, "Now on duty", "success")
|
triggerNotify(nil, "Now on duty", "success")
|
||||||
@@ -104,6 +117,15 @@ function toggleDuty()
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- Framework specific functions to keep duty status synced
|
||||||
|
RegisterNetEvent("QBCore:Client:OnJobUpdate", function(JobInfo) onDuty = JobInfo.onduty end)
|
||||||
|
RegisterNetEvent("QBCore:Client:SetDuty", function(duty) onDuty = duty end)
|
||||||
|
|
||||||
|
RegisterNetEvent("qbx_core:client:onJobUpdate", function(JobInfo) onDuty = JobInfo.onduty end)
|
||||||
|
|
||||||
|
RegisterNetEvent("RSGCore:Client:OnJobUpdate", function(JobInfo) onDuty = JobInfo.onduty end)
|
||||||
|
RegisterNetEvent("RSGCore:Client:SetDuty", function(duty) onDuty = duty end)
|
||||||
|
|
||||||
-------------------------------------------------------------
|
-------------------------------------------------------------
|
||||||
-- Interaction Functions
|
-- Interaction Functions
|
||||||
-------------------------------------------------------------
|
-------------------------------------------------------------
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ function makeBlip(data)
|
|||||||
AddTextComponentString(tostring(data.name))
|
AddTextComponentString(tostring(data.name))
|
||||||
EndTextCommandSetBlipName(blip)
|
EndTextCommandSetBlipName(blip)
|
||||||
-- Handle preview image if certain resources are running
|
-- Handle preview image if certain resources are running
|
||||||
if isStarted("fs_smallresources") or isStarted("blip_info") or isStarted("blipinfo") then
|
if isStarted("jim-blipcontroller") then
|
||||||
if data.preview then
|
if data.preview then
|
||||||
local txname = string.gsub(tostring(data.name..'preview'..string.gsub(data.coords.z, "%.", "")), "[ ()~]", "")
|
local txname = string.gsub(tostring(data.name..'preview'..string.gsub(data.coords.z, "%.", "")), "[ ()~]", "")
|
||||||
if data.preview:find("http") or data.preview:find("nui") then
|
if data.preview:find("http") or data.preview:find("nui") then
|
||||||
@@ -62,8 +62,11 @@ function makeBlip(data)
|
|||||||
else
|
else
|
||||||
CreateRuntimeTextureFromImage(scriptTxd, txname, data.preview)
|
CreateRuntimeTextureFromImage(scriptTxd, txname, data.preview)
|
||||||
end
|
end
|
||||||
exports["fs_smallresources"]:SetBlipInfoImage(blip, getScript()..'scriptTxd', txname)
|
exports["jim-blipcontroller"]:ShowBlipInfo(blip, {
|
||||||
exports["fs_smallresources"]:SetBlipInfoTitle(blip, data.name, false)
|
title = data.name,
|
||||||
|
dict = getScript()..'scriptTxd',
|
||||||
|
tex = txname,
|
||||||
|
})
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ local Props = {}
|
|||||||
function makeProp(data, freeze, synced)
|
function makeProp(data, freeze, synced)
|
||||||
loadModel(data.prop)
|
loadModel(data.prop)
|
||||||
local prop = CreateObject(data.prop, data.coords.x, data.coords.y, data.coords.z-1.03, synced and synced or false, synced and synced or false, false)
|
local prop = CreateObject(data.prop, data.coords.x, data.coords.y, data.coords.z-1.03, synced and synced or false, synced and synced or false, false)
|
||||||
SetEntityHeading(prop, data.coords.w + 180.0)
|
SetEntityHeading(prop, (data.coords.w or 0) + 180.0)
|
||||||
FreezeEntityPosition(prop, freeze or false)
|
FreezeEntityPosition(prop, freeze or false)
|
||||||
|
|
||||||
debugPrint("^6Bridge^7: ^1Prop ^2Created^7: '^6"..prop.."^7' | ^2Hash^7: ^7'^6"..data.prop.."^7' | ^2Coord^7: "..formatCoord(data.coords))
|
debugPrint("^6Bridge^7: ^1Prop ^2Created^7: '^6"..prop.."^7' | ^2Hash^7: ^7'^6"..data.prop.."^7' | ^2Coord^7: "..formatCoord(data.coords))
|
||||||
|
|||||||
@@ -23,15 +23,23 @@ function GetPlayer(source)
|
|||||||
if isStarted(QBExport) then
|
if isStarted(QBExport) then
|
||||||
debugPrint("^6Bridge^7: ^3GetPlayer^7() QBExport")
|
debugPrint("^6Bridge^7: ^3GetPlayer^7() QBExport")
|
||||||
return exports[QBExport]:GetCoreObject().Functions.GetPlayer(source)
|
return exports[QBExport]:GetCoreObject().Functions.GetPlayer(source)
|
||||||
|
|
||||||
elseif isStarted(QBXExport) then
|
elseif isStarted(QBXExport) then
|
||||||
debugPrint("^6Bridge^7: ^3GetPlayer^7() QBOXExport")
|
debugPrint("^6Bridge^7: ^3GetPlayer^7() QBOXExport")
|
||||||
return exports[QBXExport]:GetCoreObject().Functions.GetPlayer(source)
|
return exports[QBXExport]:GetCoreObject().Functions.GetPlayer(source)
|
||||||
|
|
||||||
elseif isStarted(ESXExport) then
|
elseif isStarted(ESXExport) then
|
||||||
debugPrint("^6Bridge^7: ^3GetPlayer^7() ESXExport")
|
debugPrint("^6Bridge^7: ^3GetPlayer^7() ESXExport")
|
||||||
return ESX.GetPlayerFromId(source)
|
return ESX.GetPlayerFromId(source)
|
||||||
|
|
||||||
elseif isStarted(OXCoreExport) then
|
elseif isStarted(OXCoreExport) then
|
||||||
debugPrint("^6Bridge^7: ^3GetPlayer^7() OXCoreExport")
|
debugPrint("^6Bridge^7: ^3GetPlayer^7() OXCoreExport")
|
||||||
return exports[OXCoreExport]:GetPlayer(source)
|
return exports[OXCoreExport]:GetPlayer(source)
|
||||||
|
|
||||||
|
elseif isStarted(RSGExport) then
|
||||||
|
debugPrint("^6Bridge^7: ^3GetPlayer^7() RSGExport")
|
||||||
|
return exports[RSGExport]:GetCoreObject().Functions.GetPlayer(source)
|
||||||
|
|
||||||
end
|
end
|
||||||
return nil
|
return nil
|
||||||
end
|
end
|
||||||
@@ -58,14 +66,21 @@ function GetMetadata(player, key)
|
|||||||
return triggerCallback(getScript()..":server:GetMetadata", key)
|
return triggerCallback(getScript()..":server:GetMetadata", key)
|
||||||
else
|
else
|
||||||
if isStarted(QBExport) or isStarted(QBXExport) then
|
if isStarted(QBExport) or isStarted(QBXExport) then
|
||||||
debugPrint("^6Bridge^7: ^3GetMetadata^7() QBExport or QBXExport", key)
|
debugPrint("^6Bridge^7: ^3GetMetadata^7() QBExport/QBXExport", key)
|
||||||
return player.PlayerData.metadata[key]
|
return player.PlayerData.metadata[key]
|
||||||
|
|
||||||
elseif isStarted(ESXExport) then
|
elseif isStarted(ESXExport) then
|
||||||
debugPrint("^6Bridge^7: ^3GetMetadata^7() ESXExport", key)
|
debugPrint("^6Bridge^7: ^3GetMetadata^7() ESXExport", key)
|
||||||
return player.getMeta(key)
|
return player.getMeta(key)
|
||||||
|
|
||||||
elseif isStarted(OXCoreExport) then
|
elseif isStarted(OXCoreExport) then
|
||||||
debugPrint("^6Bridge^7: ^3GetMetadata^7() OXCoreExport", key)
|
debugPrint("^6Bridge^7: ^3GetMetadata^7() OXCoreExport", key)
|
||||||
return player.get(key)
|
return player.get(key)
|
||||||
|
|
||||||
|
elseif isStarted(RSGExport) then
|
||||||
|
debugPrint("^6Bridge^7: ^3GetMetadata^7() RSGExport", key)
|
||||||
|
return player.PlayerData.metadata[key]
|
||||||
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
return nil
|
return nil
|
||||||
@@ -112,12 +127,19 @@ function SetMetadata(player, key, value)
|
|||||||
if isStarted(QBExport) or isStarted(QBXExport) then
|
if isStarted(QBExport) or isStarted(QBXExport) then
|
||||||
debugPrint("^6Bridge^7: ^3SetMetadata^7() using QBExport/QBXExport")
|
debugPrint("^6Bridge^7: ^3SetMetadata^7() using QBExport/QBXExport")
|
||||||
player.Functions.SetMetaData(key, value)
|
player.Functions.SetMetaData(key, value)
|
||||||
|
|
||||||
elseif isStarted(ESXExport) then
|
elseif isStarted(ESXExport) then
|
||||||
debugPrint("^6Bridge^7: ^3SetMetadata^7() using ESXExport")
|
debugPrint("^6Bridge^7: ^3SetMetadata^7() using ESXExport")
|
||||||
player.setMeta(key, value)
|
player.setMeta(key, value)
|
||||||
|
|
||||||
elseif isStarted(OXCoreExport) then
|
elseif isStarted(OXCoreExport) then
|
||||||
debugPrint("^6Bridge^7: ^3SetMetadata^7() using OXCoreExport")
|
debugPrint("^6Bridge^7: ^3SetMetadata^7() using OXCoreExport")
|
||||||
player.set(key, value)
|
player.set(key, value)
|
||||||
|
|
||||||
|
elseif isStarted(RSGExport) then
|
||||||
|
debugPrint("^6Bridge^7: ^3SetMetadata^7() using RSGExport")
|
||||||
|
player.Functions.SetMetaData(key, value)
|
||||||
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -78,6 +78,11 @@ function sendPhoneMail(data)
|
|||||||
TriggerServerEvent(getScript()..":jpr:SendMail", mailData)
|
TriggerServerEvent(getScript()..":jpr:SendMail", mailData)
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
{ name = "ef-phone",
|
||||||
|
send = function(mailData)
|
||||||
|
TriggerServerEvent('qb-phone:server:sendNewMail', mailData)
|
||||||
|
end,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
local activePhone = nil
|
local activePhone = nil
|
||||||
|
|||||||
@@ -111,10 +111,16 @@ end)
|
|||||||
function setThirst(src, thirst)
|
function setThirst(src, thirst)
|
||||||
if isStarted(ESXExport) then
|
if isStarted(ESXExport) then
|
||||||
TriggerClientEvent('esx_status:add', src, 'thirst', thirst)
|
TriggerClientEvent('esx_status:add', src, 'thirst', thirst)
|
||||||
|
|
||||||
elseif isStarted(QBExport) or isStarted(QBXExport) then
|
elseif isStarted(QBExport) or isStarted(QBXExport) then
|
||||||
local Player = Core.Functions.GetPlayer(src)
|
local Player = Core.Functions.GetPlayer(src)
|
||||||
Player.Functions.SetMetaData('thirst', thirst)
|
Player.Functions.SetMetaData('thirst', thirst)
|
||||||
TriggerClientEvent("hud:client:UpdateNeeds", src, thirst, Player.PlayerData.metadata.thirst)
|
TriggerClientEvent("hud:client:UpdateNeeds", src, thirst, Player.PlayerData.metadata.thirst)
|
||||||
|
|
||||||
|
elseif isStarted(RSGExport) then
|
||||||
|
local Player = Core.Functions.GetPlayer(src)
|
||||||
|
Player.Functions.SetMetaData('thirst', thirst)
|
||||||
|
TriggerClientEvent("hud:client:UpdateNeeds", src, thirst, Player.PlayerData.metadata.thirst)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -130,10 +136,16 @@ end
|
|||||||
function setHunger(src, hunger)
|
function setHunger(src, hunger)
|
||||||
if isStarted(ESXExport) then
|
if isStarted(ESXExport) then
|
||||||
TriggerClientEvent('esx_status:add', src, 'hunger', hunger)
|
TriggerClientEvent('esx_status:add', src, 'hunger', hunger)
|
||||||
|
|
||||||
elseif isStarted(QBExport) or isStarted(QBXExport) then
|
elseif isStarted(QBExport) or isStarted(QBXExport) then
|
||||||
local Player = Core.Functions.GetPlayer(src)
|
local Player = Core.Functions.GetPlayer(src)
|
||||||
Player.Functions.SetMetaData('hunger', hunger)
|
Player.Functions.SetMetaData('hunger', hunger)
|
||||||
TriggerClientEvent("hud:client:UpdateNeeds", src, hunger, Player.PlayerData.metadata.hunger)
|
TriggerClientEvent("hud:client:UpdateNeeds", src, hunger, Player.PlayerData.metadata.hunger)
|
||||||
|
|
||||||
|
elseif isStarted(RSGExport) then
|
||||||
|
local Player = Core.Functions.GetPlayer(src)
|
||||||
|
Player.Functions.SetMetaData('hunger', hunger)
|
||||||
|
TriggerClientEvent("hud:client:UpdateNeeds", src, hunger, Player.PlayerData.metadata.hunger)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -161,20 +173,31 @@ function chargePlayer(cost, moneyType, newsrc)
|
|||||||
if moneyType == "cash" then
|
if moneyType == "cash" then
|
||||||
if isStarted(OXInv) then fundResource = OXInv
|
if isStarted(OXInv) then fundResource = OXInv
|
||||||
exports[OXInv]:RemoveItem(src, "money", cost)
|
exports[OXInv]:RemoveItem(src, "money", cost)
|
||||||
|
|
||||||
elseif isStarted(QBExport) or isStarted(QBXExport) then
|
elseif isStarted(QBExport) or isStarted(QBXExport) then
|
||||||
fundResource = QBExport
|
fundResource = QBExport
|
||||||
Core.Functions.GetPlayer(src).Functions.RemoveMoney("cash", cost)
|
Core.Functions.GetPlayer(src).Functions.RemoveMoney("cash", cost)
|
||||||
|
|
||||||
elseif isStarted(RSGExport) then
|
elseif isStarted(RSGExport) then
|
||||||
fundResource = QBExport
|
fundResource = RSGExport
|
||||||
Core.Functions.GetPlayer(src).Functions.RemoveMoney("cash", cost)
|
Core.Functions.GetPlayer(src).Functions.RemoveMoney("cash", cost)
|
||||||
|
|
||||||
elseif isStarted(ESXExport) then
|
elseif isStarted(ESXExport) then
|
||||||
fundResource = ESXExport
|
fundResource = ESXExport
|
||||||
ESX.GetPlayerFromId(src).removeMoney(cost, "")
|
ESX.GetPlayerFromId(src).removeMoney(cost, "")
|
||||||
|
|
||||||
end
|
end
|
||||||
elseif moneyType == "bank" then
|
elseif moneyType == "bank" then
|
||||||
if isStarted(QBExport) or isStarted(QBXExport) then fundResource = QBExport
|
if isStarted(QBExport) or isStarted(QBXExport) then
|
||||||
|
fundResource = QBExport
|
||||||
Core.Functions.GetPlayer(src).Functions.RemoveMoney("bank", cost)
|
Core.Functions.GetPlayer(src).Functions.RemoveMoney("bank", cost)
|
||||||
elseif isStarted(ESXExport) then fundResource = ESXExport
|
|
||||||
|
elseif isStarted(RSGExport) then
|
||||||
|
fundResource = RSGExport
|
||||||
|
Core.Functions.GetPlayer(src).Functions.RemoveMoney("bank", cost)
|
||||||
|
|
||||||
|
elseif isStarted(ESXExport) then
|
||||||
|
fundResource = ESXExport
|
||||||
ESX.GetPlayerFromId(src).removeMoney(cost, "")
|
ESX.GetPlayerFromId(src).removeMoney(cost, "")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -212,17 +235,29 @@ function fundPlayer(fund, moneyType, newsrc)
|
|||||||
if isStarted(OXInv) then
|
if isStarted(OXInv) then
|
||||||
fundResource = OXInv
|
fundResource = OXInv
|
||||||
exports[OXInv]:AddItem(src, "money", fund)
|
exports[OXInv]:AddItem(src, "money", fund)
|
||||||
|
|
||||||
elseif isStarted(QBExport) or isStarted(QBXExport) then
|
elseif isStarted(QBExport) or isStarted(QBXExport) then
|
||||||
fundResource = QBExport
|
fundResource = QBExport
|
||||||
Core.Functions.GetPlayer(src).Functions.AddMoney("cash", fund)
|
Core.Functions.GetPlayer(src).Functions.AddMoney("cash", fund)
|
||||||
|
|
||||||
|
elseif isStarted(RSGExport) then
|
||||||
|
fundResource = RSGExport
|
||||||
|
Core.Functions.GetPlayer(src).Functions.AddMoney("cash", fund)
|
||||||
|
|
||||||
elseif isStarted(ESXExport) then
|
elseif isStarted(ESXExport) then
|
||||||
fundResource = ESXExport
|
fundResource = ESXExport
|
||||||
PlayESX.GetPlayerFromId(src).addMoney(fund, "")
|
ESX.GetPlayerFromId(src).addMoney(fund, "")
|
||||||
|
|
||||||
end
|
end
|
||||||
elseif moneyType == "bank" then
|
elseif moneyType == "bank" then
|
||||||
if isStarted(QBExport) or isStarted(QBXExport) then
|
if isStarted(QBExport) or isStarted(QBXExport) then
|
||||||
fundResource = QBExport
|
fundResource = QBExport
|
||||||
Core.Functions.GetPlayer(src).Functions.AddMoney("bank", fund)
|
Core.Functions.GetPlayer(src).Functions.AddMoney("bank", fund)
|
||||||
|
|
||||||
|
elseif isStarted(RSGExport) then
|
||||||
|
fundResource = RSGExport
|
||||||
|
Core.Functions.GetPlayer(src).Functions.AddMoney("bank", fund)
|
||||||
|
|
||||||
elseif isStarted(ESXExport) then
|
elseif isStarted(ESXExport) then
|
||||||
fundResource = ESXExport
|
fundResource = ESXExport
|
||||||
ESX.GetPlayerFromId(src).addMoney(fund, "")
|
ESX.GetPlayerFromId(src).addMoney(fund, "")
|
||||||
@@ -266,17 +301,17 @@ function ConsumeSuccess(itemName, type, data)
|
|||||||
|
|
||||||
if isStarted(ESXExport) then
|
if isStarted(ESXExport) then
|
||||||
if hunger then
|
if hunger then
|
||||||
TriggerServerEvent(getScript()..":server:setNeed", "hunger", hunger * 10000)
|
TriggerServerEvent(getScript()..":server:setNeed", "hunger", tonumber(hunger) * 10000)
|
||||||
end
|
end
|
||||||
if thirst then
|
if thirst then
|
||||||
TriggerServerEvent(getScript()..":server:setNeed", "thirst", thirst * 10000)
|
TriggerServerEvent(getScript()..":server:setNeed", "thirst", tonumber(thirst) * 10000)
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
if hunger then
|
if hunger then
|
||||||
TriggerServerEvent(getScript()..":server:setNeed", "hunger", Core.Functions.GetPlayerData().metadata["hunger"] + hunger)
|
TriggerServerEvent(getScript()..":server:setNeed", "hunger", Core.Functions.GetPlayerData().metadata["hunger"] + tonumber(hunger))
|
||||||
end
|
end
|
||||||
if thirst then
|
if thirst then
|
||||||
TriggerServerEvent(getScript()..":server:setNeed", "thirst", Core.Functions.GetPlayerData().metadata["thirst"] + thirst)
|
TriggerServerEvent(getScript()..":server:setNeed", "thirst", Core.Functions.GetPlayerData().metadata["thirst"] + tonumber(thirst))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -290,7 +325,9 @@ function ConsumeSuccess(itemName, type, data)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
getRandomReward(itemName)
|
if Config.Reward then
|
||||||
|
getRandomReward(itemName)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
-------------------------------------------------------------
|
-------------------------------------------------------------
|
||||||
@@ -380,6 +417,35 @@ function hasJob(job, source, grade)
|
|||||||
if grade and not (grade <= ganginfo.grade.level) then hasJobFlag = false end
|
if grade and not (grade <= ganginfo.grade.level) then hasJobFlag = false end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
elseif isStarted(RSGExport) then
|
||||||
|
if Core.Functions.GetPlayer then
|
||||||
|
local player = Core.Functions.GetPlayer(src)
|
||||||
|
if not player then print("Player not found for src: "..src) end
|
||||||
|
local jobinfo = player.PlayerData.job
|
||||||
|
if jobinfo.name == job then
|
||||||
|
hasJobFlag = true
|
||||||
|
duty = player.PlayerData.job.onduty
|
||||||
|
if grade and not (grade <= jobinfo.grade.level) then hasJobFlag = false end
|
||||||
|
end
|
||||||
|
local ganginfo = player.PlayerData.gang
|
||||||
|
if ganginfo.name == job then
|
||||||
|
hasJobFlag = true
|
||||||
|
if grade and not (grade <= ganginfo.grade.level) then hasJobFlag = false end
|
||||||
|
end
|
||||||
|
else
|
||||||
|
local jobinfo = exports[RSGExport]:GetPlayer(src).PlayerData.job
|
||||||
|
if jobinfo.name == job then
|
||||||
|
hasJobFlag = true
|
||||||
|
duty = exports[RSGExport]:GetPlayer(src).PlayerData.job.onduty
|
||||||
|
if grade and not (grade <= jobinfo.grade.level) then hasJobFlag = false end
|
||||||
|
end
|
||||||
|
local ganginfo = exports[RSGExport]:GetPlayer(src).PlayerData.gang
|
||||||
|
if ganginfo.name == job then
|
||||||
|
hasJobFlag = true
|
||||||
|
if grade and not (grade <= ganginfo.grade.level) then hasJobFlag = false end
|
||||||
|
end
|
||||||
|
end
|
||||||
else
|
else
|
||||||
print("^4ERROR^7: ^2No Core detected for hasJob ^7- ^2Check ^3starter^1.^2lua^7")
|
print("^4ERROR^7: ^2No Core detected for hasJob ^7- ^2Check ^3starter^1.^2lua^7")
|
||||||
end
|
end
|
||||||
@@ -425,6 +491,22 @@ function hasJob(job, source, grade)
|
|||||||
hasJobFlag = true
|
hasJobFlag = true
|
||||||
if grade and not (grade <= ganginfo.grade.level) then hasJobFlag = false end
|
if grade and not (grade <= ganginfo.grade.level) then hasJobFlag = false end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
elseif isStarted(RSGExport) then
|
||||||
|
local info = nil
|
||||||
|
Core.Functions.GetPlayerData(function(PlayerData) info = PlayerData end)
|
||||||
|
local jobinfo = info.job
|
||||||
|
if jobinfo.name == job then
|
||||||
|
hasJobFlag = true
|
||||||
|
duty = jobinfo.onduty
|
||||||
|
if grade and not (grade <= jobinfo.grade.level) then hasJobFlag = false end
|
||||||
|
end
|
||||||
|
local ganginfo = info.gang
|
||||||
|
if ganginfo.name == job then
|
||||||
|
hasJobFlag = true
|
||||||
|
if grade and not (grade <= ganginfo.grade.level) then hasJobFlag = false end
|
||||||
|
end
|
||||||
|
|
||||||
else
|
else
|
||||||
print("^4ERROR^7: ^2No Core detected for hasJob() ^7- ^2Check ^3starter^1.^2lua^7")
|
print("^4ERROR^7: ^2No Core detected for hasJob() ^7- ^2Check ^3starter^1.^2lua^7")
|
||||||
end
|
end
|
||||||
@@ -457,6 +539,7 @@ function getPlayer(source)
|
|||||||
local src = tonumber(source)
|
local src = tonumber(source)
|
||||||
if isStarted(ESXExport) then
|
if isStarted(ESXExport) then
|
||||||
local info = ESX.GetPlayerFromId(src)
|
local info = ESX.GetPlayerFromId(src)
|
||||||
|
if not info then return {} end
|
||||||
Player = {
|
Player = {
|
||||||
name = info.getName(),
|
name = info.getName(),
|
||||||
cash = info.getMoney(),
|
cash = info.getMoney(),
|
||||||
@@ -481,9 +564,10 @@ function getPlayer(source)
|
|||||||
local chunk = assert(load(import, ('@@ox_core/%s'):format(file)))
|
local chunk = assert(load(import, ('@@ox_core/%s'):format(file)))
|
||||||
chunk()
|
chunk()
|
||||||
local player = Ox.GetPlayer(src)
|
local player = Ox.GetPlayer(src)
|
||||||
|
if not player then return {} end
|
||||||
Player = {
|
Player = {
|
||||||
firstname = player.firstName,
|
firstname = player.firstName,
|
||||||
lastname = player.lastName ,
|
lastname = player.lastName,
|
||||||
name = ('%s %s'):format(player.firstName, player.lastName),
|
name = ('%s %s'):format(player.firstName, player.lastName),
|
||||||
cash = exports[OXInv]:Search(src, 'count', "money"),
|
cash = exports[OXInv]:Search(src, 'count', "money"),
|
||||||
bank = 0,
|
bank = 0,
|
||||||
@@ -495,10 +579,11 @@ function getPlayer(source)
|
|||||||
--onDuty = info.job.onduty,
|
--onDuty = info.job.onduty,
|
||||||
--account = info.charinfo.account,
|
--account = info.charinfo.account,
|
||||||
citizenId = player.stateId,
|
citizenId = player.stateId,
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
elseif isStarted(QBXExport) then
|
elseif isStarted(QBXExport) then
|
||||||
local info = exports[QBXExport]:GetPlayer(src)
|
local info = exports[QBXExport]:GetPlayer(src)
|
||||||
|
if not info then return {} end
|
||||||
Player = {
|
Player = {
|
||||||
firstname = info.PlayerData.charinfo.firstname,
|
firstname = info.PlayerData.charinfo.firstname,
|
||||||
lastname = info.PlayerData.charinfo.lastname,
|
lastname = info.PlayerData.charinfo.lastname,
|
||||||
@@ -519,9 +604,11 @@ function getPlayer(source)
|
|||||||
isDown = info.PlayerData.metadata["inlaststand"],
|
isDown = info.PlayerData.metadata["inlaststand"],
|
||||||
charInfo = info.charinfo,
|
charInfo = info.charinfo,
|
||||||
}
|
}
|
||||||
|
|
||||||
elseif isStarted(QBExport) and not isStarted(QBXExport) then
|
elseif isStarted(QBExport) and not isStarted(QBXExport) then
|
||||||
if Core.Functions.GetPlayer then
|
if Core.Functions.GetPlayer(src) then
|
||||||
local info = Core.Functions.GetPlayer(src).PlayerData
|
local info = Core.Functions.GetPlayer(src).PlayerData
|
||||||
|
if not info then return {} end
|
||||||
Player = {
|
Player = {
|
||||||
firstname = info.charinfo.firstname,
|
firstname = info.charinfo.firstname,
|
||||||
lastname = info.charinfo.lastname,
|
lastname = info.charinfo.lastname,
|
||||||
@@ -543,9 +630,11 @@ function getPlayer(source)
|
|||||||
charInfo = info.charinfo,
|
charInfo = info.charinfo,
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
elseif isStarted(RSGExport) then
|
elseif isStarted(RSGExport) then
|
||||||
if Core.Functions.GetPlayer then
|
if Core.Functions.GetPlayer(src) then
|
||||||
local info = Core.Functions.GetPlayer(src).PlayerData
|
local info = Core.Functions.GetPlayer(src).PlayerData
|
||||||
|
if not info then return {} end
|
||||||
Player = {
|
Player = {
|
||||||
firstname = info.charinfo.firstname,
|
firstname = info.charinfo.firstname,
|
||||||
lastname = info.charinfo.lastname,
|
lastname = info.charinfo.lastname,
|
||||||
@@ -566,6 +655,7 @@ function getPlayer(source)
|
|||||||
isDown = info.metadata["inlaststand"],
|
isDown = info.metadata["inlaststand"],
|
||||||
charInfo = info.charinfo,
|
charInfo = info.charinfo,
|
||||||
}
|
}
|
||||||
|
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
print("^4ERROR^7: ^2No Core detected for getPlayer() - Check starter.lua")
|
print("^4ERROR^7: ^2No Core detected for getPlayer() - Check starter.lua")
|
||||||
@@ -574,6 +664,8 @@ function getPlayer(source)
|
|||||||
-- Client-side: Get current player info.
|
-- Client-side: Get current player info.
|
||||||
if isStarted(ESXExport) and ESX ~= nil then
|
if isStarted(ESXExport) and ESX ~= nil then
|
||||||
local info = ESX.GetPlayerData()
|
local info = ESX.GetPlayerData()
|
||||||
|
if not info.firstName then return {} end
|
||||||
|
|
||||||
local cash, bank = 0, 0
|
local cash, bank = 0, 0
|
||||||
for k, v in pairs(info.accounts) do
|
for k, v in pairs(info.accounts) do
|
||||||
if v.name == "money" then cash = v.money end
|
if v.name == "money" then cash = v.money end
|
||||||
@@ -596,7 +688,9 @@ function getPlayer(source)
|
|||||||
isDead = IsEntityDead(PlayerPedId()),
|
isDead = IsEntityDead(PlayerPedId()),
|
||||||
isDown = IsPedDeadOrDying(PlayerPedId(), true)
|
isDown = IsPedDeadOrDying(PlayerPedId(), true)
|
||||||
}
|
}
|
||||||
|
|
||||||
elseif isStarted(OXCoreExport) then
|
elseif isStarted(OXCoreExport) then
|
||||||
|
if not OxPlayer.userId then return {} end
|
||||||
Player = {
|
Player = {
|
||||||
firstname = OxPlayer.get("firstName"),
|
firstname = OxPlayer.get("firstName"),
|
||||||
lastname = OxPlayer.get("lastName"),
|
lastname = OxPlayer.get("lastName"),
|
||||||
@@ -614,8 +708,10 @@ function getPlayer(source)
|
|||||||
isDead = IsEntityDead(PlayerPedId()),
|
isDead = IsEntityDead(PlayerPedId()),
|
||||||
isDown = IsPedDeadOrDying(PlayerPedId(), true)
|
isDown = IsPedDeadOrDying(PlayerPedId(), true)
|
||||||
}
|
}
|
||||||
|
|
||||||
elseif isStarted(QBXExport) then
|
elseif isStarted(QBXExport) then
|
||||||
local info = exports[QBXExport]:GetPlayerData()
|
local info = exports[QBXExport]:GetPlayerData()
|
||||||
|
if not info.charinfo then return {} end
|
||||||
Player = {
|
Player = {
|
||||||
firstname = info.charinfo.firstname,
|
firstname = info.charinfo.firstname,
|
||||||
lastname = info.charinfo.lastname,
|
lastname = info.charinfo.lastname,
|
||||||
@@ -636,9 +732,12 @@ function getPlayer(source)
|
|||||||
isDown = info.metadata["inlaststand"],
|
isDown = info.metadata["inlaststand"],
|
||||||
charInfo = info.charinfo,
|
charInfo = info.charinfo,
|
||||||
}
|
}
|
||||||
|
|
||||||
elseif isStarted(QBExport) and not isStarted(QBXExport) then
|
elseif isStarted(QBExport) and not isStarted(QBXExport) then
|
||||||
local info = nil
|
local info = nil
|
||||||
Core.Functions.GetPlayerData(function(PlayerData) info = PlayerData end)
|
Core.Functions.GetPlayerData(function(PlayerData) info = PlayerData end)
|
||||||
|
if not info.charinfo then return {} end
|
||||||
|
|
||||||
Player = {
|
Player = {
|
||||||
firstname = info.charinfo.firstname,
|
firstname = info.charinfo.firstname,
|
||||||
lastname = info.charinfo.lastname,
|
lastname = info.charinfo.lastname,
|
||||||
@@ -659,9 +758,12 @@ function getPlayer(source)
|
|||||||
isDown = info.metadata["inlaststand"],
|
isDown = info.metadata["inlaststand"],
|
||||||
charInfo = info.charinfo,
|
charInfo = info.charinfo,
|
||||||
}
|
}
|
||||||
|
|
||||||
elseif isStarted(RSGExport) then
|
elseif isStarted(RSGExport) then
|
||||||
local info = nil
|
local info = nil
|
||||||
Core.Functions.GetPlayerData(function(PlayerData) info = PlayerData end)
|
Core.Functions.GetPlayerData(function(PlayerData) info = PlayerData end)
|
||||||
|
if not info.charinfo then return {} end
|
||||||
|
|
||||||
Player = {
|
Player = {
|
||||||
firstname = info.charinfo.firstname,
|
firstname = info.charinfo.firstname,
|
||||||
lastname = info.charinfo.lastname,
|
lastname = info.charinfo.lastname,
|
||||||
@@ -682,6 +784,7 @@ function getPlayer(source)
|
|||||||
isDown = info.metadata["inlaststand"],
|
isDown = info.metadata["inlaststand"],
|
||||||
charInfo = info.charinfo,
|
charInfo = info.charinfo,
|
||||||
}
|
}
|
||||||
|
|
||||||
else
|
else
|
||||||
print("^4ERROR^7: ^2No Core detected for hasJob ^7- ^2Check ^3starter^1.^2lua^7")
|
print("^4ERROR^7: ^2No Core detected for hasJob ^7- ^2Check ^3starter^1.^2lua^7")
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -149,8 +149,8 @@ function BigMessage:ShowColoredShard(msg, desc, textColor, bgColor, duration, ma
|
|||||||
BeginScaleformMovieMethod(self.scaleform, "SHOW_SHARD_CENTERED_MP_MESSAGE")
|
BeginScaleformMovieMethod(self.scaleform, "SHOW_SHARD_CENTERED_MP_MESSAGE")
|
||||||
ScaleformMovieMethodAddParamPlayerNameString(msg)
|
ScaleformMovieMethodAddParamPlayerNameString(msg)
|
||||||
ScaleformMovieMethodAddParamPlayerNameString(desc)
|
ScaleformMovieMethodAddParamPlayerNameString(desc)
|
||||||
ScaleformMovieMethodAddParamInt(bgColor)
|
|
||||||
ScaleformMovieMethodAddParamInt(textColor)
|
ScaleformMovieMethodAddParamInt(textColor)
|
||||||
|
ScaleformMovieMethodAddParamInt(bgColor)
|
||||||
EndScaleformMovieMethod()
|
EndScaleformMovieMethod()
|
||||||
|
|
||||||
self.duration = duration
|
self.duration = duration
|
||||||
|
|||||||
@@ -30,15 +30,18 @@ function sellMenu(data)
|
|||||||
for k, v in pairs(data.sellTable.Items) do itemList[k] = 1 end
|
for k, v in pairs(data.sellTable.Items) do itemList[k] = 1 end
|
||||||
local _, hasTable = hasItem(itemList)
|
local _, hasTable = hasItem(itemList)
|
||||||
for k, v in pairsByKeys(data.sellTable.Items) do
|
for k, v in pairsByKeys(data.sellTable.Items) do
|
||||||
Menu[#Menu + 1] = {
|
if Items[k] then
|
||||||
isMenuHeader = not hasTable[k].hasItem,
|
Menu[#Menu + 1] = {
|
||||||
icon = invImg(k),
|
isMenuHeader = not hasTable[k].hasItem,
|
||||||
header = Items[k].label..(hasTable[k].hasItem and "💰 (x"..hasTable[k].count..")" or ""),
|
icon = invImg(k),
|
||||||
txt = Loc[Config.Lan].info["sell_all"]..v.." "..Loc[Config.Lan].info["sell_each"],
|
header = Items[k].label..(hasTable[k].hasItem and "💰 (x"..hasTable[k].count..")" or ""),
|
||||||
onSelect = function()
|
txt = (Loc and Loc[Config.Lan]) and Loc[Config.Lan].info["sell_all"]..v.." "..Loc[Config.Lan].info["sell_each"]
|
||||||
sellAnim({ item = k, price = v, ped = data.ped, onBack = function() sellMenu(data) end })
|
or "Sell ALL at $"..v.." each",
|
||||||
end,
|
onSelect = function()
|
||||||
}
|
sellAnim({ item = k, price = v, ped = data.ped, onBack = function() sellMenu(data) end })
|
||||||
|
end,
|
||||||
|
}
|
||||||
|
end
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
for k, v in pairsByKeys(data.sellTable) do
|
for k, v in pairsByKeys(data.sellTable) do
|
||||||
@@ -48,7 +51,9 @@ function sellMenu(data)
|
|||||||
header = k,
|
header = k,
|
||||||
txt = "Amount of items: "..countTable(v.Items),
|
txt = "Amount of items: "..countTable(v.Items),
|
||||||
onSelect = function()
|
onSelect = function()
|
||||||
v.onBack = function() sellMenu(origData) end
|
v.onBack = function()
|
||||||
|
sellMenu(origData)
|
||||||
|
end
|
||||||
v.sellTable = data.sellTable[k]
|
v.sellTable = data.sellTable[k]
|
||||||
sellMenu(v)
|
sellMenu(v)
|
||||||
end,
|
end,
|
||||||
@@ -57,8 +62,8 @@ function sellMenu(data)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
openMenu(Menu, {
|
openMenu(Menu, {
|
||||||
header = data.sellTable.Header or "Amount of items: "..countTable(data.sellTable.Items),
|
header = data.sellTable.Header or "Amount of items: "..countTable(data.sellTable.Items or data.sellTable),
|
||||||
headertxt = data.sellTable.Header and "Amount of items: "..countTable(data.sellTable.Items) or "",
|
headertxt = data.sellTable.Header and "Amount of items: "..countTable(data.sellTable.Items or data.sellTable),
|
||||||
canClose = true,
|
canClose = true,
|
||||||
onBack = data.onBack,
|
onBack = data.onBack,
|
||||||
})
|
})
|
||||||
@@ -105,12 +110,14 @@ function sellAnim(data)
|
|||||||
TriggerServerEvent(getScript().."Sellitems", data)
|
TriggerServerEvent(getScript().."Sellitems", data)
|
||||||
lookEnt(data.ped)
|
lookEnt(data.ped)
|
||||||
local dict = "mp_common"
|
local dict = "mp_common"
|
||||||
playAnim(dict, "givetake2_a", 0.3, 2)
|
playAnim(dict, "givetake2_a", 0.3, 48)
|
||||||
playAnim(dict, "givetake2_b", 0.3, 2, data.ped)
|
playAnim(dict, "givetake2_b", 0.3, 48, data.ped)
|
||||||
Wait(2000)
|
Wait(2000)
|
||||||
StopAnimTask(PlayerPedId(), dict, "givetake2_a", 0.5)
|
StopAnimTask(PlayerPedId(), dict, "givetake2_a", 0.5)
|
||||||
StopAnimTask(data.ped, dict, "givetake2_b", 0.5)
|
StopAnimTask(data.ped, dict, "givetake2_b", 0.5)
|
||||||
if data.onBack then data.onBack() end
|
if data.onBack then
|
||||||
|
data.onBack()
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
--- Server event handler for processing item sales.
|
--- Server event handler for processing item sales.
|
||||||
@@ -157,29 +164,45 @@ function openShop(data)
|
|||||||
elseif isStarted(OXInv) then
|
elseif isStarted(OXInv) then
|
||||||
exports[OXInv]:openInventory('shop', { type = data.shop })
|
exports[OXInv]:openInventory('shop', { type = data.shop })
|
||||||
|
|
||||||
elseif isStarted(QSInv) then
|
elseif isStarted(QSInv) or isStarted(CodeMInv) then
|
||||||
TriggerServerEvent("inventory:server:OpenInventory", "shop", data.items.label, data.items)
|
TriggerServerEvent("inventory:server:OpenInventory", "shop", data.items.label, data.items)
|
||||||
|
|
||||||
|
elseif isStarted(TgiannInv) then
|
||||||
|
TriggerServerEvent(getScript()..':server:openServerShop', data.shop)
|
||||||
|
|
||||||
elseif isStarted(QBInv) then
|
elseif isStarted(QBInv) then
|
||||||
if QBInvNew then
|
if QBInvNew then
|
||||||
TriggerServerEvent(getScript()..':server:OpenShopNewQB', data.shop)
|
TriggerServerEvent(getScript()..':server:openServerShop', data.shop)
|
||||||
|
else
|
||||||
|
TriggerServerEvent("inventory:server:OpenInventory", "shop", data.items.label, data.items)
|
||||||
|
end
|
||||||
|
|
||||||
|
elseif isStarted(PSInv) then
|
||||||
|
if QBInvNew then
|
||||||
|
TriggerServerEvent(getScript()..':server:openServerShop', data.shop)
|
||||||
else
|
else
|
||||||
TriggerServerEvent("inventory:server:OpenInventory", "shop", data.items.label, data.items)
|
TriggerServerEvent("inventory:server:OpenInventory", "shop", data.items.label, data.items)
|
||||||
end
|
end
|
||||||
|
|
||||||
elseif isStarted(RSGInv) then
|
elseif isStarted(RSGInv) then
|
||||||
TriggerServerEvent(getScript()..':server:OpenShopNewRSG', data.shop)
|
TriggerServerEvent(getScript()..':server:openServerShop', data.shop)
|
||||||
end
|
end
|
||||||
lookEnt(data.coords)
|
lookEnt(data.coords)
|
||||||
end
|
end
|
||||||
|
|
||||||
--- Server event handler for opening a shop using the new QB inventory system.
|
RegisterNetEvent(getScript()..':server:openServerShop', function(data)
|
||||||
RegisterNetEvent(getScript()..':server:OpenShopNewQB', function(data)
|
if isStarted(QBInv) then
|
||||||
exports[QBInv]:OpenShop(source, data)
|
exports[QBInv]:OpenShop(source, data)
|
||||||
end)
|
end
|
||||||
|
if isStarted(PSInv) then
|
||||||
RegisterNetEvent(getScript()..':server:OpenShopNewRSG', function(data)
|
exports[PSInv]:OpenShop(source, data)
|
||||||
exports[RSGInv]:OpenShop(source, data)
|
end
|
||||||
|
if isStarted(TgiannInv) then
|
||||||
|
exports[TgiannInv]:OpenShop(source, data)
|
||||||
|
end
|
||||||
|
if isStarted(RSGInv) then
|
||||||
|
exports[RSGInv]:OpenShop(source, data)
|
||||||
|
end
|
||||||
end)
|
end)
|
||||||
|
|
||||||
--- Registers a shop with the active inventory system.
|
--- Registers a shop with the active inventory system.
|
||||||
@@ -201,6 +224,11 @@ function registerShop(name, label, items, society)
|
|||||||
inventory = items,
|
inventory = items,
|
||||||
society = society,
|
society = society,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
elseif isStarted(TgiannInv) then
|
||||||
|
debugPrint("^6Bridge^7: ^2Registering ^3Tgiann ^2Store^7:", name, label)
|
||||||
|
exports[TgiannInv]:RegisterShop(name, items)
|
||||||
|
|
||||||
elseif isStarted(QBInv) and QBInvNew then
|
elseif isStarted(QBInv) and QBInvNew then
|
||||||
debugPrint("^6Bridge^7: ^2Registering ^3QB ^2Store^7:", name, label)
|
debugPrint("^6Bridge^7: ^2Registering ^3QB ^2Store^7:", name, label)
|
||||||
exports[QBInv]:CreateShop({
|
exports[QBInv]:CreateShop({
|
||||||
@@ -211,6 +239,16 @@ function registerShop(name, label, items, society)
|
|||||||
society = society,
|
society = society,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
elseif isStarted(PSInv) and QBInvNew then
|
||||||
|
debugPrint("^6Bridge^7: ^2Registering ^3PS ^2Store^7:", name, label)
|
||||||
|
exports[PSInv]:CreateShop({
|
||||||
|
name = name,
|
||||||
|
label = label,
|
||||||
|
slots = #items,
|
||||||
|
items = items,
|
||||||
|
society = society,
|
||||||
|
})
|
||||||
|
|
||||||
elseif isStarted(RSGInv) then
|
elseif isStarted(RSGInv) then
|
||||||
debugPrint("^6Bridge^7: ^2Registering ^3RSG ^2Store^7:", name, label)
|
debugPrint("^6Bridge^7: ^2Registering ^3RSG ^2Store^7:", name, label)
|
||||||
exports[RSGInv]:CreateShop({
|
exports[RSGInv]:CreateShop({
|
||||||
|
|||||||
@@ -8,6 +8,7 @@
|
|||||||
• Renewed-Banking
|
• Renewed-Banking
|
||||||
• fd_banking
|
• fd_banking
|
||||||
• okokBanking
|
• okokBanking
|
||||||
|
• Tgiann-bank
|
||||||
]]
|
]]
|
||||||
|
|
||||||
--- Retrieves the current balance of a society's bank account.
|
--- Retrieves the current balance of a society's bank account.
|
||||||
@@ -54,6 +55,14 @@ function getSocietyAccount(society)
|
|||||||
elseif isStarted("okokBanking") then
|
elseif isStarted("okokBanking") then
|
||||||
bankScript = "okokBanking"
|
bankScript = "okokBanking"
|
||||||
amount = exports['okokBanking']:GetAccount(society)
|
amount = exports['okokBanking']:GetAccount(society)
|
||||||
|
|
||||||
|
elseif isStarted("tgiann-bank") then
|
||||||
|
bankScript = "tgiann-bank"
|
||||||
|
if Jobs[society] then
|
||||||
|
amount = exports["tgiann-bank"]:GetJobAccountBalance(society)
|
||||||
|
else
|
||||||
|
amount = exports["tgiann-bank"]:GetGangAccountBalance(society)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
if bankScript == "" then
|
if bankScript == "" then
|
||||||
@@ -104,6 +113,13 @@ function chargeSociety(society, amount)
|
|||||||
bankScript = "okokBanking"
|
bankScript = "okokBanking"
|
||||||
exports['okokBanking']:RemoveMoney(society, amount)
|
exports['okokBanking']:RemoveMoney(society, amount)
|
||||||
|
|
||||||
|
elseif isStarted("tgiann-bank") then
|
||||||
|
bankScript = "tgiann-bank"
|
||||||
|
if Jobs[society] then
|
||||||
|
exports["tgiann-bank"]:RemoveJobMoney(society, amount)
|
||||||
|
else
|
||||||
|
exports["tgiann-bank"]:RemoveGangMoney(society, amount)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
if bankScript == "" then
|
if bankScript == "" then
|
||||||
@@ -122,7 +138,7 @@ end
|
|||||||
--- fundSociety("police", 500)
|
--- fundSociety("police", 500)
|
||||||
--- ```
|
--- ```
|
||||||
function fundSociety(society, amount)
|
function fundSociety(society, amount)
|
||||||
local bankScript, newAmount = "", 0
|
local bankScript, newAmount, success = "", 0, false
|
||||||
|
|
||||||
|
|
||||||
if isStarted("qb-banking") then
|
if isStarted("qb-banking") then
|
||||||
@@ -159,6 +175,13 @@ function fundSociety(society, amount)
|
|||||||
bankScript = "okokBanking"
|
bankScript = "okokBanking"
|
||||||
exports['okokBanking']:AddMoney(society, amount)
|
exports['okokBanking']:AddMoney(society, amount)
|
||||||
|
|
||||||
|
elseif isStarted("tgiann-bank") then
|
||||||
|
bankScript = "tgiann-bank"
|
||||||
|
if Jobs[society] then
|
||||||
|
exports["tgiann-bank"]:AddJobMoney(society, amount)
|
||||||
|
else
|
||||||
|
exports["tgiann-bank"]:AddGangMoney(society, amount)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
if bankScript == "" then
|
if bankScript == "" then
|
||||||
|
|||||||
@@ -47,19 +47,19 @@ function GetStashTimeout(stashName, stop)
|
|||||||
stashCache[stashName] = { items = {}, timeout = 0 }
|
stashCache[stashName] = { items = {}, timeout = 0 }
|
||||||
stash = stashCache[stashName]
|
stash = stashCache[stashName]
|
||||||
else
|
else
|
||||||
debugPrint("^6Bridge^7: ^2Local Stash ^7'^3"..stashName.."^7'^2 cache found^7")
|
debugPrint("^6Bridge^7: ^2Local Stash for ^7'^3"..stashName.."^7'^2 cache found^7")
|
||||||
end
|
end
|
||||||
|
|
||||||
-- If there are already items in cache, skip recheck.
|
-- If there are already items in cache, skip recheck.
|
||||||
if countTable(stashCache[stashName].items) > 0 then
|
if countTable(stashCache[stashName].items) > 0 then
|
||||||
debugPrint("^6Bridge^7: '^3"..stashName.." ^2Items found in cache, skipping recheck")
|
debugPrint("^6Bridge^7: '^3"..stashName.."^7' ^2Items found in local cache, skipping server recheck")
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
|
||||||
-- If timeout has expired, update the stash items from the server.
|
-- If timeout has expired, update the stash items from the server.
|
||||||
if stashCache[stashName].timeout <= 0 then
|
if stashCache[stashName].timeout <= 0 then
|
||||||
stashCache[stashName].items = triggerCallback(getScript()..':server:GetStashItems', stashName)
|
stashCache[stashName].items = triggerCallback(getScript()..':server:GetStashItems', stashName)
|
||||||
stashCache[stashName].timeout = 15000 -- Timeout in milliseconds.
|
stashCache[stashName].timeout = 10000 -- Timeout in milliseconds.
|
||||||
CreateThread(function()
|
CreateThread(function()
|
||||||
while stashCache[stashName] and stashCache[stashName].timeout > 0 do
|
while stashCache[stashName] and stashCache[stashName].timeout > 0 do
|
||||||
stashCache[stashName].timeout -= 1000
|
stashCache[stashName].timeout -= 1000
|
||||||
@@ -90,20 +90,12 @@ function checkStashItem(stashes, itemTable)
|
|||||||
end
|
end
|
||||||
|
|
||||||
if type(stashes) == "table" then
|
if type(stashes) == "table" then
|
||||||
local successes = 0
|
debugPrint("^6Bridge^7: ^2Checking multiple stashes for ingredients^7")
|
||||||
local itemCount = countTable(itemTable)
|
|
||||||
-- Iterate over each provided stash name.
|
-- Iterate over each provided stash name.
|
||||||
for _, name in pairs(stashes) do
|
for _, name in pairs(stashes) do
|
||||||
Wait(10) -- Delay to avoid multiple callbacks issues.
|
|
||||||
GetStashTimeout(name)
|
GetStashTimeout(name)
|
||||||
for item, amount in pairs(itemTable) do
|
if stashhasItem(stashCache[name].items, itemTable, nil) then
|
||||||
debugPrint("^6Bridge^7: ^2Checking "..(name and " '^3"..name.."^7'" or "").." ingredients - ^6"..item.."^7")
|
return true, name
|
||||||
if stashhasItem(stashCache[name].items, item, amount) then
|
|
||||||
successes += 1
|
|
||||||
if successes == itemCount then
|
|
||||||
return true, name
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
@@ -151,9 +143,17 @@ function openStash(data)
|
|||||||
elseif isStarted(OrigenInv) then
|
elseif isStarted(OrigenInv) then
|
||||||
exports[OrigenInv]:openInventory('stash', data.stash, { label = data.label })
|
exports[OrigenInv]:openInventory('stash', data.stash, { label = data.label })
|
||||||
|
|
||||||
|
elseif isStarted(TgiannInv) then
|
||||||
|
TriggerServerEvent(getScript()..':server:openServerStash', {
|
||||||
|
stashName = data.stash,
|
||||||
|
label = data.label,
|
||||||
|
maxweight = data.maxWeight or 600000,
|
||||||
|
slots = data.slots or 40
|
||||||
|
})
|
||||||
|
|
||||||
elseif isStarted(QBInv) then
|
elseif isStarted(QBInv) then
|
||||||
if QBInvNew then
|
if QBInvNew then
|
||||||
TriggerServerEvent(getScript()..':server:OpenStashQB', {
|
TriggerServerEvent(getScript()..':server:openServerStash', {
|
||||||
stashName = data.stash,
|
stashName = data.stash,
|
||||||
label = data.label,
|
label = data.label,
|
||||||
maxweight = data.maxWeight or 600000,
|
maxweight = data.maxWeight or 600000,
|
||||||
@@ -161,11 +161,30 @@ function openStash(data)
|
|||||||
})
|
})
|
||||||
else
|
else
|
||||||
TriggerEvent("inventory:client:SetCurrentStash", data.stash)
|
TriggerEvent("inventory:client:SetCurrentStash", data.stash)
|
||||||
TriggerServerEvent("inventory:server:OpenInventory", "stash", data.stash, data.stashOptions)
|
TriggerServerEvent("inventory:server:OpenInventory", "stash", data.stash, {
|
||||||
|
slots = data.slots or 50,
|
||||||
|
maxWeight = data.maxWeight or 600000
|
||||||
|
})
|
||||||
|
end
|
||||||
|
|
||||||
|
elseif isStarted(PSInv) then
|
||||||
|
if QBInvNew then
|
||||||
|
TriggerServerEvent(getScript()..':server:openServerStash', {
|
||||||
|
stashName = data.stash,
|
||||||
|
label = data.label,
|
||||||
|
maxweight = data.maxWeight or 600000,
|
||||||
|
slots = data.slots or 40
|
||||||
|
})
|
||||||
|
else
|
||||||
|
TriggerEvent("inventory:client:SetCurrentStash", data.stash)
|
||||||
|
TriggerServerEvent("inventory:server:OpenInventory", "stash", data.stash, {
|
||||||
|
slots = data.slots or 50,
|
||||||
|
maxWeight = data.maxWeight or 600000
|
||||||
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
elseif isStarted(RSGInv) then
|
elseif isStarted(RSGInv) then
|
||||||
TriggerServerEvent(getScript()..':server:OpenStashRSG', {
|
TriggerServerEvent(getScript()..':server:openServerStash', {
|
||||||
stashName = data.stash,
|
stashName = data.stash,
|
||||||
label = data.label,
|
label = data.label,
|
||||||
maxweight = data.maxWeight or 600000,
|
maxweight = data.maxWeight or 600000,
|
||||||
@@ -175,19 +194,32 @@ function openStash(data)
|
|||||||
else
|
else
|
||||||
--Fallback to these commands
|
--Fallback to these commands
|
||||||
TriggerEvent("inventory:client:SetCurrentStash", data.stash)
|
TriggerEvent("inventory:client:SetCurrentStash", data.stash)
|
||||||
TriggerServerEvent("inventory:server:OpenInventory", "stash", data.stash, data.stashOptions)
|
TriggerServerEvent("inventory:server:OpenInventory", "stash", data.stash, {
|
||||||
|
slots = data.slots or 50,
|
||||||
|
maxWeight = data.maxWeight or 600000
|
||||||
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
lookEnt(data.coords)
|
lookEnt(data.coords)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Register an event for opening QB stashes.
|
|
||||||
RegisterNetEvent(getScript()..':server:OpenStashQB', function(data)
|
|
||||||
exports[QBInv]:OpenInventory(source, data.stashName, data)
|
|
||||||
end)
|
|
||||||
|
|
||||||
RegisterNetEvent(getScript()..':server:OpenStashRSG', function(data)
|
-- Wrapper function for opening stash from the server.
|
||||||
exports[RSGInv]:OpenInventory(source, data.stashName, data)
|
-- Messy but not much else I can do about it.
|
||||||
|
RegisterNetEvent(getScript()..":server:openServerStash", function(data)
|
||||||
|
local src = source
|
||||||
|
if isStarted(TgiannInv) then
|
||||||
|
exports[TgiannInv]:OpenInventory(source, 'stash', data.stashName, data)
|
||||||
|
end
|
||||||
|
if isStarted(QBInv) then
|
||||||
|
exports[QBInv]:OpenInventory(source, data.stashName, data)
|
||||||
|
end
|
||||||
|
if isStarted(PSInv) then
|
||||||
|
exports[PSInv]:OpenInventory(source, data.stashName, data)
|
||||||
|
end
|
||||||
|
if isStarted(RSGInv) then
|
||||||
|
exports[RSGInv]:OpenInventory(source, data.stashName, data)
|
||||||
|
end
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
|
||||||
@@ -216,7 +248,9 @@ function getStash(stashName)
|
|||||||
local stashItems, items = {}, {}
|
local stashItems, items = {}, {}
|
||||||
if isStarted(OXInv) then
|
if isStarted(OXInv) then
|
||||||
stashResource = OXInv
|
stashResource = OXInv
|
||||||
stashItems = exports[OXInv]:Inventory(stashName).items
|
local stash = exports[OXInv]:Inventory(stashName)
|
||||||
|
-- Add fallback if ox can't find the stash and returns a boolean
|
||||||
|
stashItems = type(stash) == "table" and stash.items or {}
|
||||||
|
|
||||||
elseif isStarted(QSInv) then
|
elseif isStarted(QSInv) then
|
||||||
stashResource = QSInv
|
stashResource = QSInv
|
||||||
@@ -234,6 +268,10 @@ function getStash(stashName)
|
|||||||
stashResource = OrigenInv
|
stashResource = OrigenInv
|
||||||
stashItems = exports[OrigenInv]:getInventory(stashName)
|
stashItems = exports[OrigenInv]:getInventory(stashName)
|
||||||
|
|
||||||
|
elseif isStarted(TgiannInv) then
|
||||||
|
stashResource = TgiannInv
|
||||||
|
stashItems = exports[TgiannInv]:GetSecondaryInventoryItems("stash", stashName)
|
||||||
|
|
||||||
elseif isStarted(PSInv) then
|
elseif isStarted(PSInv) then
|
||||||
stashResource = PSInv
|
stashResource = PSInv
|
||||||
local result = MySQL.scalar.await('SELECT items FROM stashitems WHERE stash = ?', { stashName })
|
local result = MySQL.scalar.await('SELECT items FROM stashitems WHERE stash = ?', { stashName })
|
||||||
@@ -241,8 +279,13 @@ function getStash(stashName)
|
|||||||
|
|
||||||
elseif isStarted(QBInv) then
|
elseif isStarted(QBInv) then
|
||||||
stashResource = QBInv
|
stashResource = QBInv
|
||||||
local result = MySQL.scalar.await("SELECT items FROM "..(QBInvNew and "inventories" or "stashitem").." WHERE identifier = ?", { stashName })
|
if QBInvNew then
|
||||||
if result then stashItems = json.decode(result) end
|
local result = exports[QBInv]:GetInventory(stashName) or {}
|
||||||
|
stashItems = result.items or {}
|
||||||
|
else
|
||||||
|
local result = MySQL.scalar.await("SELECT items FROM stashitems WHERE stash = ?", { stashName })
|
||||||
|
if result then stashItems = json.decode(result) end
|
||||||
|
end
|
||||||
|
|
||||||
elseif isStarted(RSGInv) then
|
elseif isStarted(RSGInv) then
|
||||||
stashResource = RSGInv
|
stashResource = RSGInv
|
||||||
@@ -298,39 +341,27 @@ function stashRemoveItem(stashItems, stashName, items)
|
|||||||
if type(stashName) ~= "table" then
|
if type(stashName) ~= "table" then
|
||||||
stashName = { stashName }
|
stashName = { stashName }
|
||||||
end
|
end
|
||||||
|
|
||||||
if isStarted(OXInv) then
|
if isStarted(OXInv) then
|
||||||
for k, v in pairs(items) do
|
for k, v in pairs(items) do
|
||||||
if type(stashName) == "table" then
|
for _, name in pairs(stashName) do
|
||||||
for _, name in pairs(stashName) do
|
local success = exports[OXInv]:RemoveItem(name, k, v)
|
||||||
local success = exports[OXInv]:RemoveItem(name, k, v)
|
if success then
|
||||||
if success then
|
debugPrint("^6Bridge^7: ^2Removing item from ^3Stash^2 with ^7"..OXInv, k, v)
|
||||||
debugPrint("^6Bridge^7: ^2Removing item from ^3Stash^2 with ^7"..OXInv, k, v)
|
break
|
||||||
break
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
else
|
|
||||||
exports[OXInv]:RemoveItem(stashName, k, v)
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
elseif isStarted(QSInv) then
|
elseif isStarted(QSInv) then
|
||||||
for k, v in pairs(items) do
|
for k, v in pairs(items) do
|
||||||
for l in pairs(stashItems) do
|
exports[QSInv]:RemoveItemIntoStash(stashName[1], k, v)
|
||||||
if stashItems[l].name == k then
|
debugPrint("^6Bridge^7: ^2Removing item from ^3Stash^2 with ^7"..QSInv, k, v)
|
||||||
if (stashItems[l].amount - v) <= 0 then
|
|
||||||
debugPrint("^6Bridge^7: ^2None of this item left in stash ^3Stash^7", k, v)
|
|
||||||
stashItems[l] = nil
|
|
||||||
else
|
|
||||||
debugPrint("^6Bridge^7: ^2Removing item from ^3Stash^2 with ^7"..QBInv, k, v)
|
|
||||||
exports[QSInv]:RemoveItemIntoStash(stashName[1], k, v, l)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
elseif isStarted(CoreInv) then
|
elseif isStarted(CoreInv) then
|
||||||
for k, v in pairs(items) do
|
for k, v in pairs(items) do
|
||||||
exports[CoreInv]:removeItemExact(stashName, k, v)
|
exports[CoreInv]:removeItemExact(stashName[1], k, v)
|
||||||
debugPrint("^6Bridge^7: ^2Removing item from ^3Stash^2 with ^7"..CoreInv, k, v)
|
debugPrint("^6Bridge^7: ^2Removing item from ^3Stash^2 with ^7"..CoreInv, k, v)
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -348,34 +379,21 @@ function stashRemoveItem(stashItems, stashName, items)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
exports[CodeMInv]:UpdateStash(stashName, stashItems)
|
exports[CodeMInv]:UpdateStash(stashName[1], stashItems)
|
||||||
debugPrint("^6Bridge^7: ^3saveStash^7: ^2Saving ^3CodeM^2 stash ^7'^6"..stashName.."^7'")
|
debugPrint("^6Bridge^7: ^3saveStash^7: ^2Saving ^3CodeM^2 stash ^7'^6"..stashName.."^7'")
|
||||||
|
|
||||||
elseif isStarted(OrigenInv) then
|
elseif isStarted(OrigenInv) then
|
||||||
for k, v in pairs(items) do
|
for k, v in pairs(items) do
|
||||||
exports[OrigenInv]:RemoveFromStash(stashName, k, v)
|
exports[OrigenInv]:RemoveFromStash(stashName[1], k, v)
|
||||||
debugPrint("^6Bridge^7: ^2Removing item from ^3Stash^2 with ^7"..OrigenInv, k, v)
|
debugPrint("^6Bridge^7: ^2Removing item from ^3Stash^2 with ^7"..OrigenInv, k, v)
|
||||||
end
|
end
|
||||||
|
|
||||||
elseif isStarted(PSInv) then
|
elseif isStarted(TgiannInv) then
|
||||||
for k, v in pairs(items) do
|
for k, v in pairs(items) do
|
||||||
for l in pairs(stashItems) do
|
local itemData = exports[TgiannInv]:GetItemByNameFromSecondaryInventory("stash", stashName[1], k)
|
||||||
if stashItems[l].name == k then
|
exports[TgiannInv]:RemoveItemFromSecondaryInventory("stash", stashName[1], k, v, itemData.slot, nil)
|
||||||
if (stashItems[l].amount - v) <= 0 then
|
debugPrint("^6Bridge^7: ^2Removing item from ^3Stash^2 with ^7"..TgiannInv, k, v)
|
||||||
debugPrint("^6Bridge^7: ^2None of this item left in stash ^3Stash^7", k, v)
|
|
||||||
stashItems[l] = nil
|
|
||||||
else
|
|
||||||
debugPrint("^6Bridge^7: ^2Removing item from ^3Stash^2 with ^7"..QBInv, k, v)
|
|
||||||
stashItems[l].amount -= v
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
debugPrint("^6Bridge^7: ^3saveStash^7: ^2Saving ^3QB^2 stash ^7'^6"..stashName.."^7'")
|
|
||||||
MySQL.Async.insert('INSERT INTO stashitems (stash, items) VALUES (:stash, :items) ON DUPLICATE KEY UPDATE items = :items', {
|
|
||||||
['stash'] = stashName,
|
|
||||||
['items'] = json.encode(stashItems)
|
|
||||||
})
|
|
||||||
|
|
||||||
elseif isStarted(QBInv) then
|
elseif isStarted(QBInv) then
|
||||||
if QBInvNew then
|
if QBInvNew then
|
||||||
@@ -383,11 +401,6 @@ function stashRemoveItem(stashItems, stashName, items)
|
|||||||
exports[QBInv]:RemoveItem(stashName[1], k, v, false, 'crafting')
|
exports[QBInv]:RemoveItem(stashName[1], k, v, false, 'crafting')
|
||||||
debugPrint("^6Bridge^7: ^2Removing item from ^3Stash^2 with ^7"..QBInv, k, v)
|
debugPrint("^6Bridge^7: ^2Removing item from ^3Stash^2 with ^7"..QBInv, k, v)
|
||||||
end
|
end
|
||||||
debugPrint("^6Bridge^7: ^3saveStash^7: ^2Saving ^3QB^2 stash ^7'^6"..stashName[1].."^7'")
|
|
||||||
MySQL.Async.insert('INSERT INTO inventories (identifier, items) VALUES (:stash, :items) ON DUPLICATE KEY UPDATE items = :items', {
|
|
||||||
['stash'] = stashName[1],
|
|
||||||
['items'] = json.encode(stashItems)
|
|
||||||
})
|
|
||||||
else
|
else
|
||||||
for k, v in pairs(items) do
|
for k, v in pairs(items) do
|
||||||
for l in pairs(stashItems) do
|
for l in pairs(stashItems) do
|
||||||
@@ -402,13 +415,38 @@ function stashRemoveItem(stashItems, stashName, items)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
debugPrint("^6Bridge^7: ^3saveStash^7: ^2Saving ^3QB^2 stash '^6"..stashName.."^7'")
|
debugPrint("^6Bridge^7: ^3saveStash^7: ^2Saving ^3QB^2 stash '^6"..stashName[1].."^7'")
|
||||||
MySQL.Async.insert('INSERT INTO stashitems (stash, items) VALUES (:stash, :items) ON DUPLICATE KEY UPDATE items = :items', {
|
MySQL.Async.insert('INSERT INTO stashitems (stash, items) VALUES (:stash, :items) ON DUPLICATE KEY UPDATE items = :items', {
|
||||||
['stash'] = stashName,
|
['stash'] = stashName[1],
|
||||||
['items'] = json.encode(stashItems)
|
['items'] = json.encode(stashItems)
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
|
elseif isStarted(PSInv) then
|
||||||
|
for k, v in pairs(items) do
|
||||||
|
for l in pairs(stashItems) do
|
||||||
|
if stashItems[l].name == k then
|
||||||
|
if (stashItems[l].amount - v) <= 0 then
|
||||||
|
debugPrint("^6Bridge^7: ^2None of this item left in stash ^3Stash^7", k, v)
|
||||||
|
stashItems[l] = nil
|
||||||
|
else
|
||||||
|
debugPrint("^6Bridge^7: ^2Removing item from ^3Stash^2 with ^7"..PSInv, k, v)
|
||||||
|
stashItems[l].amount -= v
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
debugPrint("^6Bridge^7: ^3saveStash^7: ^2Saving ^3PS^2 stash ^7'^6"..stashName[1].."^7'")
|
||||||
|
MySQL.Async.insert('INSERT INTO stashitems (stash, items) VALUES (:stash, :items) ON DUPLICATE KEY UPDATE items = :items', {
|
||||||
|
['stash'] = stashName[1],
|
||||||
|
['items'] = json.encode(stashItems)
|
||||||
|
})
|
||||||
|
|
||||||
|
elseif isStarted(RSGInv) then
|
||||||
|
for k, v in pairs(items) do
|
||||||
|
exports[RSGInv]:RemoveItem(stashName[1], k, v, false, 'crafting')
|
||||||
|
debugPrint("^6Bridge^7: ^2Removing item from ^3Stash^2 with ^7"..RSGInv, k, v)
|
||||||
|
end
|
||||||
else
|
else
|
||||||
print("^4ERROR^7: ^2No Inventory detected ^7- ^2Check ^3starter^1.^2lua^7")
|
print("^4ERROR^7: ^2No Inventory detected ^7- ^2Check ^3starter^1.^2lua^7")
|
||||||
end
|
end
|
||||||
@@ -433,7 +471,7 @@ RegisterNetEvent(getScript()..":server:stashRemoveItem", stashRemoveItem)
|
|||||||
--- local hasAll, details = stashhasItem(currentStashItems, { iron = 2, wood = 5 })
|
--- local hasAll, details = stashhasItem(currentStashItems, { iron = 2, wood = 5 })
|
||||||
--- ```
|
--- ```
|
||||||
function stashhasItem(stashItems, items, amount)
|
function stashhasItem(stashItems, items, amount)
|
||||||
local invs = { OXInv, QSInv, CoreInv, CodeMInv, OrigenInv, QBInv, PSInv }
|
local invs = { OXInv, QSInv, CoreInv, CodeMInv, OrigenInv, TgiannInv, QBInv, PSInv, RSGInv }
|
||||||
local foundInv = ""
|
local foundInv = ""
|
||||||
for _, inv in ipairs(invs) do
|
for _, inv in ipairs(invs) do
|
||||||
if isStarted(inv) then
|
if isStarted(inv) then
|
||||||
@@ -464,3 +502,90 @@ function stashhasItem(stashItems, items, amount)
|
|||||||
|
|
||||||
return true, hasTable
|
return true, hasTable
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
--- Registers a stash with the active inventory system.
|
||||||
|
--- Supports either OXInv or QSInv.
|
||||||
|
---
|
||||||
|
--- @param name string Unique stash identifier.
|
||||||
|
--- @param label string Display name for the stash.
|
||||||
|
--- @param slots number|nil (Optional) Number of slots (default 50).
|
||||||
|
--- @param weight number|nil (Optional) Maximum weight (default 4000000).
|
||||||
|
--- @param owner string|nil (Optional) Owner identifier for personal stashes.
|
||||||
|
--- @param coords table|nil (Optional) Coordinates for the stash location.
|
||||||
|
--- @usage
|
||||||
|
--- ```lua
|
||||||
|
--- registerStash(
|
||||||
|
--- "playerStash",
|
||||||
|
--- "Player Stash",
|
||||||
|
--- 100,
|
||||||
|
--- 8000000,
|
||||||
|
--- "player123",
|
||||||
|
--- { x = 100.0, y = 200.0, z = 30.0 }
|
||||||
|
--- )
|
||||||
|
--- ```
|
||||||
|
function registerStash(name, label, slots, weight, owner, coords)
|
||||||
|
if isStarted(OXInv) then
|
||||||
|
debugPrint("^6Bridge^7: ^2Registering ^3OX ^2Stash^7:", name, label, owner or nil)
|
||||||
|
exports[OXInv]:RegisterStash(name, label, slots or 50, weight or 4000000, owner or nil)
|
||||||
|
|
||||||
|
--elseif isStarted(QSInv) then
|
||||||
|
-- debugPrint("^6Bridge^7: ^2Registering ^3QS ^2Stash^7:", name, label)
|
||||||
|
-- exports[QSInv]:RegisterStash(name, label, slots or 50, weight or 4000000)
|
||||||
|
|
||||||
|
--elseif isStarted(CoreInv) then
|
||||||
|
-- debugPrint("^6Bridge^7: ^2Registering ^3CoreInv ^2Stash^7:", name, label)
|
||||||
|
-- exports[CoreInv]:openHolder(nil, name, 'stash', nil, nil, false, nil)
|
||||||
|
|
||||||
|
elseif isStarted(OrigenInv) then
|
||||||
|
debugPrint("^6Bridge^7: ^2Registering ^3OrigenInv ^2Stash^7:", name, label)
|
||||||
|
exports["origen_inventory"]:registerStash(name, label, slots or 50, weight or 4000000)
|
||||||
|
|
||||||
|
elseif isStarted(TgiannInv) then
|
||||||
|
debugPrint("^6Bridge^7: ^2Registering ^3TgiannInv ^2Stash^7:", name, label)
|
||||||
|
exports[TgiannInv]:RegisterStash(name, label, slots or 50, weight or 4000000)
|
||||||
|
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
if isServer() then
|
||||||
|
--- Registers an event to create an OX stash from the server.
|
||||||
|
--- When triggered, it calls registerStash with the provided parameters.
|
||||||
|
---
|
||||||
|
--- @event server:makeOXStash
|
||||||
|
--- @param name string Unique stash identifier.
|
||||||
|
--- @param label string Display name for the stash.
|
||||||
|
--- @param slots number|nil (Optional) Number of slots.
|
||||||
|
--- @param weight number|nil (Optional) Maximum weight.
|
||||||
|
--- @param owner string|nil (Optional) Owner identifier.
|
||||||
|
--- @param coords table|nil (Optional) Stash coordinates.
|
||||||
|
--- @usage
|
||||||
|
--- ```lua
|
||||||
|
--- TriggerEvent(getScript()..":server:makeOXStash", name, label, slots, weight, owner, coords, token)
|
||||||
|
--- ```
|
||||||
|
RegisterNetEvent(getScript()..":server:makeOXStash", function(name, label, slots, weight, owner, coords, token)
|
||||||
|
local src = source or nil
|
||||||
|
if src then
|
||||||
|
if not checkToken(src, token, "stash", name) then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
registerStash(name, label, slots, weight, owner, coords)
|
||||||
|
end)
|
||||||
|
end
|
||||||
|
|
||||||
|
RegisterNetEvent(getScript()..":openGrabBox", function(data)
|
||||||
|
if isStarted(OXInv) then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
local id = ""
|
||||||
|
if data.metadata then
|
||||||
|
id = data.metadata.id
|
||||||
|
elseif data.info then
|
||||||
|
id = data.info.id
|
||||||
|
end
|
||||||
|
openStash({
|
||||||
|
stash = id,
|
||||||
|
})
|
||||||
|
end)
|
||||||
@@ -121,7 +121,7 @@ function createEntityTarget(entity, opts, dist)
|
|||||||
options[i] = {
|
options[i] = {
|
||||||
icon = opts[i].icon,
|
icon = opts[i].icon,
|
||||||
label = opts[i].label,
|
label = opts[i].label,
|
||||||
item = opts[i].item or nil,
|
items = opts[i].item or nil,
|
||||||
groups = opts[i].job or opts[i].gang,
|
groups = opts[i].job or opts[i].gang,
|
||||||
onSelect = opts[i].action,
|
onSelect = opts[i].action,
|
||||||
distance = dist,
|
distance = dist,
|
||||||
@@ -230,7 +230,7 @@ function createBoxTarget(data, opts, dist)
|
|||||||
options[i] = {
|
options[i] = {
|
||||||
icon = opts[i].icon,
|
icon = opts[i].icon,
|
||||||
label = opts[i].label,
|
label = opts[i].label,
|
||||||
item = opts[i].item or nil,
|
items = opts[i].item or nil,
|
||||||
groups = opts[i].job or opts[i].gang,
|
groups = opts[i].job or opts[i].gang,
|
||||||
onSelect = opts[i].onSelect or opts[i].action,
|
onSelect = opts[i].onSelect or opts[i].action,
|
||||||
distance = dist,
|
distance = dist,
|
||||||
@@ -336,7 +336,7 @@ function createCircleTarget(data, opts, dist)
|
|||||||
options[i] = {
|
options[i] = {
|
||||||
icon = opts[i].icon,
|
icon = opts[i].icon,
|
||||||
label = opts[i].label,
|
label = opts[i].label,
|
||||||
item = opts[i].item or nil,
|
items = opts[i].item or nil,
|
||||||
groups = opts[i].job or opts[i].gang,
|
groups = opts[i].job or opts[i].gang,
|
||||||
onSelect = opts[i].onSelect or opts[i].action,
|
onSelect = opts[i].onSelect or opts[i].action,
|
||||||
distance = dist,
|
distance = dist,
|
||||||
@@ -418,7 +418,7 @@ function createModelTarget(models, opts, dist)
|
|||||||
options[i] = {
|
options[i] = {
|
||||||
icon = opts[i].icon,
|
icon = opts[i].icon,
|
||||||
label = opts[i].label,
|
label = opts[i].label,
|
||||||
item = opts[i].item or nil,
|
items = opts[i].item or nil,
|
||||||
groups = opts[i].job or opts[i].gang,
|
groups = opts[i].job or opts[i].gang,
|
||||||
onSelect = opts[i].action,
|
onSelect = opts[i].action,
|
||||||
distance = dist,
|
distance = dist,
|
||||||
|
|||||||
@@ -108,6 +108,7 @@ function getVehicleProperties(vehicle)
|
|||||||
if isStarted(QBExport) and not isStarted(QBXExport) then
|
if isStarted(QBExport) and not isStarted(QBXExport) then
|
||||||
properties = Core.Functions.GetVehicleProperties(vehicle)
|
properties = Core.Functions.GetVehicleProperties(vehicle)
|
||||||
debugPrint("^6Bridge^7: ^2Getting Vehicle Properties ^7[^6"..QBExport.."^7] - [^3"..vehicle.."^7] - [^3"..GetEntityModel(vehicle).."^7/^3"..properties.model.."^7] - [^3"..properties.plate.."^7]")
|
debugPrint("^6Bridge^7: ^2Getting Vehicle Properties ^7[^6"..QBExport.."^7] - [^3"..vehicle.."^7] - [^3"..GetEntityModel(vehicle).."^7/^3"..properties.model.."^7] - [^3"..properties.plate.."^7]")
|
||||||
|
|
||||||
elseif isStarted(OXLibExport) then
|
elseif isStarted(OXLibExport) then
|
||||||
properties = lib.getVehicleProperties(vehicle)
|
properties = lib.getVehicleProperties(vehicle)
|
||||||
debugPrint("^6Bridge^7: ^2Getting Vehicle Properties ^7[^6"..OXLibExport.."^7] - [^3"..vehicle.."^7] - [^3"..GetEntityModel(vehicle).."^7/^3"..properties.model.."^7] - [^3"..properties.plate.."^7]")
|
debugPrint("^6Bridge^7: ^2Getting Vehicle Properties ^7[^6"..OXLibExport.."^7] - [^3"..vehicle.."^7] - [^3"..GetEntityModel(vehicle).."^7/^3"..properties.model.."^7] - [^3"..properties.plate.."^7]")
|
||||||
@@ -134,6 +135,7 @@ function setVehicleProperties(vehicle, props)
|
|||||||
if isStarted(QBExport) and not isStarted(QBXExport) then
|
if isStarted(QBExport) and not isStarted(QBXExport) then
|
||||||
Core.Functions.SetVehicleProperties(vehicle, props)
|
Core.Functions.SetVehicleProperties(vehicle, props)
|
||||||
debugPrint("^6Bridge^7: ^2Setting Vehicle Properties ^7[^6"..QBExport.."^7] - [^3"..vehicle.."^7] - [^3"..GetEntityModel(vehicle).."^7/^3"..props.model.."^7] - [^3"..props.plate.."^7]")
|
debugPrint("^6Bridge^7: ^2Setting Vehicle Properties ^7[^6"..QBExport.."^7] - [^3"..vehicle.."^7] - [^3"..GetEntityModel(vehicle).."^7/^3"..props.model.."^7] - [^3"..props.plate.."^7]")
|
||||||
|
|
||||||
elseif isStarted(OXLibExport) then
|
elseif isStarted(OXLibExport) then
|
||||||
lib.setVehicleProperties(vehicle, props, false)
|
lib.setVehicleProperties(vehicle, props, false)
|
||||||
debugPrint("^6Bridge^7: ^2Setting Vehicle Properties ^7[^6"..OXLibExport.."^7] - [^3"..vehicle.."^7] - [^3"..GetEntityModel(vehicle).."^7/^3"..props.model.."^7] - [^3"..props.plate.."^7]")
|
debugPrint("^6Bridge^7: ^2Setting Vehicle Properties ^7[^6"..OXLibExport.."^7] - [^3"..vehicle.."^7] - [^3"..GetEntityModel(vehicle).."^7/^3"..props.model.."^7] - [^3"..props.plate.."^7]")
|
||||||
|
|||||||
@@ -21,85 +21,24 @@
|
|||||||
--- })
|
--- })
|
||||||
--- ```
|
--- ```
|
||||||
function registerCommand(command, options)
|
function registerCommand(command, options)
|
||||||
|
|
||||||
if isStarted(OXLibExport) then
|
if isStarted(OXLibExport) then
|
||||||
debugPrint("^6Bridge^7: ^2Registering ^3Command^2 with ^7"..OXLibExport, command)
|
debugPrint("^6Bridge^7: ^2Registering ^3Command^2 with ^7"..OXLibExport, command)
|
||||||
lib.addCommand(command, { help = options[1], restricted = options[5] and "group."..options[5] or nil }, options[4])
|
lib.addCommand(command, { help = options[1], restricted = options[5] and "group."..options[5] or nil }, options[4])
|
||||||
|
|
||||||
elseif isStarted(QBExport) and not isStarted(QBXExport) then
|
elseif isStarted(QBExport) and not isStarted(QBXExport) then
|
||||||
debugPrint("^6Bridge^7: ^2Registering ^3Command^2 with ^7"..QBExport, command)
|
debugPrint("^6Bridge^7: ^2Registering ^3Command^2 with ^7"..QBExport, command)
|
||||||
Core.Commands.Add(command, options[1], options[2], options[3], options[4], options[5] or nil)
|
Core.Commands.Add(command, options[1], options[2], options[3], options[4], options[5] or nil)
|
||||||
|
|
||||||
|
elseif isStarted(RSGExport) then
|
||||||
|
debugPrint("^6Bridge^7: ^2Registering ^3Command^2 with ^7"..RSGExport, command)
|
||||||
|
Core.Commands.Add(command, options[1], options[2], options[3], options[4], options[5] or nil)
|
||||||
|
|
||||||
elseif isStarted(ESXExport) then
|
elseif isStarted(ESXExport) then
|
||||||
debugPrint("^6Bridge^7: ^2Registering ^3Command^2 with ^7ESX Legacy", command)
|
debugPrint("^6Bridge^7: ^2Registering ^3Command^2 with ^7ESX Legacy", command)
|
||||||
ESX.RegisterCommand(command, options[5] or 'admin', function(xPlayer, args, showError)
|
ESX.RegisterCommand(command, options[5] or 'admin', function(xPlayer, args, showError)
|
||||||
options[4](xPlayer.source, args, showError)
|
options[4](xPlayer.source, args, showError)
|
||||||
end, false, { help = options[1] })
|
end, false, { help = options[1] })
|
||||||
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
--- Registers a stash with the active inventory system.
|
|
||||||
--- Supports either OXInv or QSInv.
|
|
||||||
---
|
|
||||||
--- @param name string Unique stash identifier.
|
|
||||||
--- @param label string Display name for the stash.
|
|
||||||
--- @param slots number|nil (Optional) Number of slots (default 50).
|
|
||||||
--- @param weight number|nil (Optional) Maximum weight (default 4000000).
|
|
||||||
--- @param owner string|nil (Optional) Owner identifier for personal stashes.
|
|
||||||
--- @param coords table|nil (Optional) Coordinates for the stash location.
|
|
||||||
--- @usage
|
|
||||||
--- ```lua
|
|
||||||
--- registerStash(
|
|
||||||
--- "playerStash",
|
|
||||||
--- "Player Stash",
|
|
||||||
--- 100,
|
|
||||||
--- 8000000,
|
|
||||||
--- "player123",
|
|
||||||
--- { x = 100.0, y = 200.0, z = 30.0 }
|
|
||||||
--- )
|
|
||||||
--- ```
|
|
||||||
function registerStash(name, label, slots, weight, owner, coords)
|
|
||||||
if isStarted(OXInv) then
|
|
||||||
debugPrint("^6Bridge^7: ^2Registering ^3OX ^2Stash^7:", name, label, owner or nil)
|
|
||||||
exports[OXInv]:RegisterStash(name, label, slots or 50, weight or 4000000, owner or nil)
|
|
||||||
elseif isStarted(QSInv) then
|
|
||||||
debugPrint("^6Bridge^7: ^2Registering ^3QS ^2Stash^7:", name, label)
|
|
||||||
exports[QSInv]:RegisterStash(name, label, slots or 50, weight or 4000000)
|
|
||||||
|
|
||||||
--elseif isStarted(CoreInv) then
|
|
||||||
-- debugPrint("^6Bridge^7: ^2Registering ^3CoreInv ^2Stash^7:", name, label)
|
|
||||||
-- exports[CoreInv]:openHolder(nil, name, 'stash', nil, nil, false, nil)
|
|
||||||
|
|
||||||
elseif isStarted(OrigenInv) then
|
|
||||||
debugPrint("^6Bridge^7: ^2Registering ^3OrigenInv ^2Stash^7:", name, label)
|
|
||||||
exports["origen_inventory"]:registerStash(name, label, slots or 50, weight or 4000000)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
if isServer() then
|
|
||||||
--- Registers an event to create an OX stash from the server.
|
|
||||||
--- When triggered, it calls registerStash with the provided parameters.
|
|
||||||
---
|
|
||||||
--- @event server:makeOXStash
|
|
||||||
--- @param name string Unique stash identifier.
|
|
||||||
--- @param label string Display name for the stash.
|
|
||||||
--- @param slots number|nil (Optional) Number of slots.
|
|
||||||
--- @param weight number|nil (Optional) Maximum weight.
|
|
||||||
--- @param owner string|nil (Optional) Owner identifier.
|
|
||||||
--- @param coords table|nil (Optional) Stash coordinates.
|
|
||||||
--- @usage
|
|
||||||
--- ```lua
|
|
||||||
--- TriggerEvent(getScript()..":server:makeOXStash", name, label, slots, weight, owner, coords)
|
|
||||||
--- ```
|
|
||||||
RegisterNetEvent(getScript()..":server:makeOXStash", function(name, label, slots, weight, owner, coords, token)
|
|
||||||
local src = source or nil
|
|
||||||
if src then
|
|
||||||
debugPrint("^1Auth^7: ^2Auth token received^7, ^2checking against server cache^7..")
|
|
||||||
if token ~= validTokens[src] then
|
|
||||||
debugPrint("^1Auth^7: ^1Tokens don't match! ^7", token, validTokens[src])
|
|
||||||
else
|
|
||||||
debugPrint("^1Auth^7: ^2Client and Server Auth tokens match^7!", token, validTokens[src])
|
|
||||||
validTokens[src] = nil
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
registerStash(name, label, slots, weight, owner, coords)
|
|
||||||
end)
|
|
||||||
end
|
|
||||||
97
starter.lua
97
starter.lua
@@ -13,6 +13,7 @@ Exports = {
|
|||||||
CoreInv = "core_inventory",
|
CoreInv = "core_inventory",
|
||||||
CodeMInv = "codem-inventory",
|
CodeMInv = "codem-inventory",
|
||||||
OrigenInv = "origen_inventory",
|
OrigenInv = "origen_inventory",
|
||||||
|
TgiannInv = "tgiann-inventory",
|
||||||
|
|
||||||
OXLibExport = "ox_lib",
|
OXLibExport = "ox_lib",
|
||||||
|
|
||||||
@@ -29,7 +30,12 @@ Exports = {
|
|||||||
-- Required variables
|
-- Required variables
|
||||||
debugMode = Config.System.Debug
|
debugMode = Config.System.Debug
|
||||||
|
|
||||||
-- Check server convars for hard set defaults
|
QBInvNew = true
|
||||||
|
|
||||||
|
InventoryWeight = 120000
|
||||||
|
|
||||||
|
-- [[ Server.Cfg Convar Check ]]--
|
||||||
|
-- Check server convars for hard set defaults, otherwise it uses per script configurations
|
||||||
if Config and Config.System then
|
if Config and Config.System then
|
||||||
if Config.System.Debug then
|
if Config.System.Debug then
|
||||||
if GetConvar("jim_DisableDebug", "false") == "true" then
|
if GetConvar("jim_DisableDebug", "false") == "true" then
|
||||||
@@ -41,38 +47,75 @@ if Config and Config.System then
|
|||||||
end
|
end
|
||||||
|
|
||||||
Config.System.Menu = GetConvar("jim_menuScript", Config.System.Menu)
|
Config.System.Menu = GetConvar("jim_menuScript", Config.System.Menu)
|
||||||
Config.System.Notify = GetConvar("jim_notifyScript", Config.System.Notify)
|
Config.System.Notify = GetConvar("jim_notifyScript", Config.System.Notify or "gta")
|
||||||
Config.System.ProgressBar = GetConvar("jim_progressBarScript", Config.System.ProgressBar)
|
Config.System.ProgressBar = GetConvar("jim_progressBarScript", Config.System.ProgressBar or "gta")
|
||||||
Config.System.drawText = GetConvar("jim_drawTextScript", Config.System.drawText)
|
Config.System.drawText = GetConvar("jim_drawTextScript", Config.System.drawText or "gta")
|
||||||
Config.System.skillCheck = GetConvar("jim_skillCheckScript", Config.System.skillCheck)
|
Config.System.skillCheck = GetConvar("jim_skillCheckScript", Config.System.skillCheck or "gta")
|
||||||
|
|
||||||
if GetConvar("jim_dontUseTarget", "false") == "true" then
|
if GetConvar("jim_dontUseTarget", "false") == "true" then
|
||||||
Config.System.DontUseTarget = true
|
Config.System.DontUseTarget = true
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
QBInvNew = true
|
-- Load the core files here instead of in fxmanifests
|
||||||
|
-- Forcefully loads the files and quietly, compared to fxmanifest complaining if they don't exist when you don't need them all
|
||||||
|
local filesToLoad = {
|
||||||
|
Shared = {
|
||||||
|
[Exports.OXLibExport] = { "init.lua" },
|
||||||
|
[Exports.OXCoreExport] = { "lib/init.lua" },
|
||||||
|
[Exports.ESXExport] = { "imports.lua" },
|
||||||
|
[Exports.QBXExport] = { "modules/playerdata.lua" },
|
||||||
|
},
|
||||||
|
Client = {
|
||||||
|
["PolyZone"] = { "client.lua", "BoxZone.lua", "EntityZone.lua", "CircleZone.lua", "ComboZone.lua" },
|
||||||
|
["warmenu"] = { "warmenu.lua", },
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
InventoryWeight = 120000
|
-- Shared framework file loader
|
||||||
|
for Type, ScriptTable in pairs(filesToLoad) do
|
||||||
|
if Type == "Client" and IsDuplicityVersion() then
|
||||||
|
goto continue
|
||||||
|
else
|
||||||
|
for scriptName, files in pairs(ScriptTable) do
|
||||||
|
local state = GetResourceState(scriptName)
|
||||||
|
-- if the resource is started, load the file
|
||||||
|
if state == "started" then
|
||||||
|
if scriptName == Exports.OXLibExport and GetResourceState(Exports.OXCoreExport):find("start") then
|
||||||
|
if debugMode then print("OX_Core found, skipping OX_Lib loading") end
|
||||||
|
goto skip
|
||||||
|
end
|
||||||
|
-- Force items into a table if they are not
|
||||||
|
if type(files) == "string" then
|
||||||
|
files = { files }
|
||||||
|
end
|
||||||
|
for _, file in pairs(files) do
|
||||||
|
--print("^5CoreLoader^7: '"..scriptName.."/"..file.."' ^2into ^7'"..GetCurrentResourceName().."' ...")
|
||||||
|
local fileLoader = assert(load(LoadResourceFile(scriptName, (file)), ('@@'..scriptName..'/'..file)))
|
||||||
|
fileLoader()
|
||||||
|
if debugMode then
|
||||||
|
print("^5CoreLoader^7: ^2loaded ^1Core ^2file^7: ^3"..scriptName.."^7/^3"..(file):gsub("/", "^7/^3"):gsub("%.lua", "^7.lua").." ^2into ^7'"..GetCurrentResourceName().."'")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
::skip::
|
||||||
|
end
|
||||||
|
|
||||||
-- Testing loading the core files here instead of in fxmanifests
|
-- if script is in server, but not started warn the user
|
||||||
--for k, v in pairs({ -- This is a specific load order
|
if state == "uninitialized" or state == "stopped" then
|
||||||
-- [Exports.OXLibExport] = "init.lua",
|
print("^5CoreLoader^7: ^3"..scriptName.." ^1 found but it wasn't started^7.")
|
||||||
-- [Exports.OXCoreExport] = "lib/init.lua",
|
print("^1Check your ^3server^7.^3cfg ^1load order^7")
|
||||||
-- [Exports.ESXExport] = "imports.lua",
|
end
|
||||||
-- [Exports.QBXExport] = "modules/playerdata.lua",
|
|
||||||
--}) do
|
-- debugging only, if the script is missing, warn the user
|
||||||
-- if GetResourceState(k) == "started" then
|
if state == "missing" then
|
||||||
-- print("^5Loading^7: '"..k.."/"..v.."' ^2into ^7'"..GetCurrentResourceName().."' ...")
|
if debugMode then
|
||||||
-- local fileLoader = assert(load(LoadResourceFile(k, (v)), ('@@'..k..'/'..v)))
|
print("^5CoreLoader^7: ^3"..scriptName.." ^2not found^7, ^2skipping")
|
||||||
-- fileLoader()
|
end
|
||||||
-- print("^2Success^7: ^2loaded ^1Core ^2file^7: ^3"..k.."^7/^3"..(v):gsub("/", "^7/^3"):gsub("%.lua", "^7.lua").."^7")
|
end
|
||||||
-- else
|
end
|
||||||
-- if debugMode then
|
end
|
||||||
-- print("^3Warning^7: ^3"..k.." ^2not found^7, ^2skipping")
|
::continue::
|
||||||
-- end
|
end
|
||||||
-- end
|
|
||||||
--end
|
|
||||||
|
|
||||||
-- Load files here into the invoking script
|
-- Load files here into the invoking script
|
||||||
for _, v in pairs({ -- This is a specific load order
|
for _, v in pairs({ -- This is a specific load order
|
||||||
@@ -82,7 +125,7 @@ for _, v in pairs({ -- This is a specific load order
|
|||||||
|
|
||||||
'_eventDebug.lua',
|
'_eventDebug.lua',
|
||||||
'callback.lua',
|
'callback.lua',
|
||||||
'coreloader.lua', -- needs to be second to load all core related stuff before everything else
|
'coreloader.lua',
|
||||||
|
|
||||||
'duifunctions.lua',
|
'duifunctions.lua',
|
||||||
|
|
||||||
@@ -143,4 +186,4 @@ for _, v in pairs({ -- This is a specific load order
|
|||||||
if debugMode then
|
if debugMode then
|
||||||
print("^5Success^7: ^2loaded file^7: ^3"..(v):gsub("/", "^7/^3"):gsub("%.lua", "^7.lua").."^7")
|
print("^5Success^7: ^2loaded file^7: ^3"..(v):gsub("/", "^7/^3"):gsub("%.lua", "^7.lua").."^7")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
13
version.txt
13
version.txt
@@ -1 +1,12 @@
|
|||||||
2.0.03
|
2.0.14
|
||||||
|
|
||||||
|
- Add getPlayer() fallbacks for if player isn't loaded
|
||||||
|
- Add fallback for sellMenu missing locales
|
||||||
|
- Change blip preview export to "jim-blipcontroller"
|
||||||
|
- Support for tgiann-bank
|
||||||
|
- Fixes for OX_Core COX version
|
||||||
|
- Fix QBOX weapons not being added to "Items" cache
|
||||||
|
- Remove Player.Offline from canCarry() as it was erroring
|
||||||
|
- Possible fix for QS_Inv stashes wiping on script start
|
||||||
|
|
||||||
|
https://github.com/jimathy/jim_bridge
|
||||||
Reference in New Issue
Block a user