Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Minor fixes for the crafting system #736

Merged
merged 5 commits into from
Jun 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ INSERT INTO `bpt_items` (`name`, `label`) VALUES
('WEAPON_APPISTOL', 'WEAPON APPISTOL'),
('iron', 'iron'),
('hammer', 'hammer'),
('legnatagliata', 'asse di legno'),
('wood', 'Legna'),
('fixkit', 'fixkit'),
('almondmilk', 'almondmilk'),
('ice', 'ice'),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ RegisterNUICallback("craft", function(data)
end)

function SendTextMessage(msg)
exports["mythic_notify"]:DoHudText("inform", msg)
exports["mythic_notify"]:SendAlert("inform", msg)
end

function DrawText3D(x, y, z, text)
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ CreateThread(function()
SetBlipAsShortRange(blip, true)

BeginTextCommandSetBlipName("STRING")
AddTextComponentSubstringPlayerName(TranslateCap("blipTranslateCapnicorn"))
AddTextComponentSubstringPlayerName(TranslateCap("blip_unicorn"))
EndTextCommandSetBlipName(blip)
end)

Expand Down
17 changes: 8 additions & 9 deletions server-data/resources/[maps]/SLBK11_MissionRow/fxmanifest.lua
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
fx_version 'adamant'
fx_version("adamant")
version "1.0.1"

game 'gta5'
game("gta5")

description 'mission row police map'

this_is_a_map 'yes'

client_script {
"client/main.lua"
}
description("mission row police map")

this_is_a_map("yes")

client_script({
"client/*.lua",
})

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading