1
0
Fork 0
forked from Simnation/Main
This commit is contained in:
Nordi98 2025-07-02 07:08:25 +02:00
parent 8fab0a4bcf
commit 69f16def72
2 changed files with 10 additions and 7 deletions

View file

@ -18,6 +18,9 @@ Config.SupportedBoats = {
`suntrap`,
`squalo`,
`longfin`,
`rboatrb`,
`donator_42ftyellowfin`,
`donator_gradywhite`,
`frauscher16`,
`donator_hydrasport53`,
}

View file

@ -179,7 +179,7 @@ CreateThread(function()
type = "client",
event = "re_boat_winch:client:controlRope",
icon = 'fas fa-clipboard',
label = "Control the rope",
label = "Winde bedienen",
canInteract = function(entity)
if closestTrailer ~= entity or not isTrailer(entity) then
return false
@ -191,7 +191,7 @@ CreateThread(function()
type = "client",
event = "re_boat_winch:client:detachBoat",
icon = 'fas fa-clipboard',
label = "Detach boat from trailer",
label = "Boot vom Hänger lösen",
canInteract = function(entity)
if closestTrailer ~= entity or not isTrailer(entity) then
return false
@ -203,7 +203,7 @@ CreateThread(function()
type = "client",
event = "re_boat_winch:client:hookUpRope",
icon = 'fas fa-clipboard',
label = "Hook up the rope",
label = "Seil befestigen",
canInteract = function(entity)
if closestBoat ~= entity or not isSupportedBoat(entity) then
return false
@ -215,7 +215,7 @@ CreateThread(function()
type = "client",
event = "re_boat_winch:client:unHookRope",
icon = 'fas fa-clipboard',
label = "Unhook the rope",
label = "Seil lösen",
canInteract = function(entity)
if closestBoat ~= entity or not isSupportedBoat(entity) then
return false
@ -227,7 +227,7 @@ CreateThread(function()
type = "client",
event = "re_boat_winch:client:selfDockBoat",
icon = 'fas fa-anchor',
label = "Secure boat to trailer",
label = "Boot auf Hänger sichern",
canInteract = function(entity)
if not isSupportedBoat(entity) then
return false