mirror of
https://github.com/jimathy/jim_bridge.git
synced 2026-08-17 05:56:02 +01:00
Compare commits
12 Commits
v2.1.08
...
9ec7bddfe6
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9ec7bddfe6 | ||
|
|
d46aa8c2cb | ||
|
|
0793554855 | ||
|
|
9efc3c94cd | ||
|
|
9c66499fab | ||
|
|
258a510452 | ||
|
|
2ac3843fb2 | ||
|
|
696b469309 | ||
|
|
8d48b0d692 | ||
|
|
40ca0eb04d | ||
|
|
f53f29a4b2 | ||
|
|
2cf80881e4 |
@@ -64,6 +64,7 @@ function createInput(title, opts)
|
||||
label = (opts[i].label or opts[i].text)..(opts[i].txt and " - "..opts[i].txt or ""),
|
||||
isRequired = opts[i].isRequired,
|
||||
name = opts[i].name,
|
||||
default = opts[i].default,
|
||||
options = opts[i].options,
|
||||
}
|
||||
end
|
||||
|
||||
@@ -221,6 +221,10 @@ local billPlayerFunc = {
|
||||
function(data)
|
||||
TriggerEvent("codem-billing:client:OpenMenu")
|
||||
end,
|
||||
tgg =
|
||||
function(data)
|
||||
exports["tgg-billing"]:OpenBillingMenu()
|
||||
end,
|
||||
}
|
||||
|
||||
--- BillPlayer
|
||||
@@ -605,6 +609,8 @@ local getPlayerFunc = {
|
||||
onDuty = info.job.onDuty,
|
||||
--account = info.charinfo.account,
|
||||
citizenId = info.identifier,
|
||||
hunger = info.status.hunger,
|
||||
thirst = info.status.thirst,
|
||||
}
|
||||
return Player
|
||||
end,
|
||||
@@ -635,7 +641,9 @@ local getPlayerFunc = {
|
||||
--account = info.charinfo.account,
|
||||
citizenId = info.identifier,
|
||||
isDead = IsEntityDead(PlayerPedId()),
|
||||
isDown = IsPedDeadOrDying(PlayerPedId(), true)
|
||||
isDown = IsPedDeadOrDying(PlayerPedId(), true),
|
||||
hunger = info.status.hunger,
|
||||
thirst = info.status.thirst,
|
||||
}
|
||||
return Player
|
||||
end,
|
||||
@@ -719,6 +727,8 @@ local getPlayerFunc = {
|
||||
isDead = info.PlayerData.metadata["isdead"],
|
||||
isDown = info.PlayerData.metadata["inlaststand"],
|
||||
charInfo = info.charinfo,
|
||||
hunger = info.metadata["hunger"],
|
||||
thirst = info.metadata["thirst"],
|
||||
}
|
||||
return Player
|
||||
end,
|
||||
@@ -747,6 +757,8 @@ local getPlayerFunc = {
|
||||
isDead = info.metadata["isdead"],
|
||||
isDown = info.metadata["inlaststand"],
|
||||
charInfo = info.charinfo,
|
||||
hunger = info.metadata["hunger"],
|
||||
thirst = info.metadata["thirst"],
|
||||
}
|
||||
return Player
|
||||
end,
|
||||
@@ -778,6 +790,8 @@ local getPlayerFunc = {
|
||||
isDead = info.metadata["isdead"],
|
||||
isDown = info.metadata["inlaststand"],
|
||||
charInfo = info.charinfo,
|
||||
hunger = info.metadata["hunger"],
|
||||
thirst = info.metadata["thirst"],
|
||||
}
|
||||
end
|
||||
return Player
|
||||
@@ -809,6 +823,8 @@ local getPlayerFunc = {
|
||||
isDead = info.metadata["isdead"],
|
||||
isDown = info.metadata["inlaststand"],
|
||||
charInfo = info.charinfo,
|
||||
hunger = info.metadata["hunger"],
|
||||
thirst = info.metadata["thirst"],
|
||||
}
|
||||
return Player
|
||||
end,
|
||||
@@ -840,6 +856,8 @@ local getPlayerFunc = {
|
||||
isDead = info.metadata["isdead"],
|
||||
isDown = info.metadata["inlaststand"],
|
||||
charInfo = info.charinfo,
|
||||
hunger = info.metadata["hunger"],
|
||||
thirst = info.metadata["thirst"],
|
||||
}
|
||||
end
|
||||
return Player
|
||||
@@ -871,6 +889,8 @@ local getPlayerFunc = {
|
||||
isDead = info.metadata["isdead"],
|
||||
isDown = info.metadata["inlaststand"],
|
||||
charInfo = info.charinfo,
|
||||
hunger = info.metadata["hunger"],
|
||||
thirst = info.metadata["thirst"],
|
||||
}
|
||||
return Player
|
||||
end,
|
||||
@@ -972,6 +992,12 @@ local wardrobeFunc = {
|
||||
TriggerEvent("illenium-appearance:client:openOutfitMenu")
|
||||
end,
|
||||
},
|
||||
{
|
||||
name = "rcore_clothing",
|
||||
openWardrobe = function()
|
||||
TriggerEvent('rcore_clothing:openChangingRoom')
|
||||
end,
|
||||
}
|
||||
}
|
||||
|
||||
--- Opens the clothing customization menu
|
||||
@@ -984,4 +1010,5 @@ function openClothing()
|
||||
break
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user