forked from Simnation/Main
ed
This commit is contained in:
parent
8fab0a4bcf
commit
69f16def72
2 changed files with 10 additions and 7 deletions
|
@ -18,6 +18,9 @@ Config.SupportedBoats = {
|
|||
`suntrap`,
|
||||
`squalo`,
|
||||
`longfin`,
|
||||
|
||||
|
||||
`rboatrb`,
|
||||
`donator_42ftyellowfin`,
|
||||
`donator_gradywhite`,
|
||||
`frauscher16`,
|
||||
`donator_hydrasport53`,
|
||||
}
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue