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`,
|
`suntrap`,
|
||||||
`squalo`,
|
`squalo`,
|
||||||
`longfin`,
|
`longfin`,
|
||||||
|
`rboatrb`,
|
||||||
|
`donator_42ftyellowfin`,
|
||||||
|
`donator_gradywhite`,
|
||||||
|
`frauscher16`,
|
||||||
|
`donator_hydrasport53`,
|
||||||
}
|
}
|
|
@ -179,7 +179,7 @@ CreateThread(function()
|
||||||
type = "client",
|
type = "client",
|
||||||
event = "re_boat_winch:client:controlRope",
|
event = "re_boat_winch:client:controlRope",
|
||||||
icon = 'fas fa-clipboard',
|
icon = 'fas fa-clipboard',
|
||||||
label = "Control the rope",
|
label = "Winde bedienen",
|
||||||
canInteract = function(entity)
|
canInteract = function(entity)
|
||||||
if closestTrailer ~= entity or not isTrailer(entity) then
|
if closestTrailer ~= entity or not isTrailer(entity) then
|
||||||
return false
|
return false
|
||||||
|
@ -191,7 +191,7 @@ CreateThread(function()
|
||||||
type = "client",
|
type = "client",
|
||||||
event = "re_boat_winch:client:detachBoat",
|
event = "re_boat_winch:client:detachBoat",
|
||||||
icon = 'fas fa-clipboard',
|
icon = 'fas fa-clipboard',
|
||||||
label = "Detach boat from trailer",
|
label = "Boot vom Hänger lösen",
|
||||||
canInteract = function(entity)
|
canInteract = function(entity)
|
||||||
if closestTrailer ~= entity or not isTrailer(entity) then
|
if closestTrailer ~= entity or not isTrailer(entity) then
|
||||||
return false
|
return false
|
||||||
|
@ -203,7 +203,7 @@ CreateThread(function()
|
||||||
type = "client",
|
type = "client",
|
||||||
event = "re_boat_winch:client:hookUpRope",
|
event = "re_boat_winch:client:hookUpRope",
|
||||||
icon = 'fas fa-clipboard',
|
icon = 'fas fa-clipboard',
|
||||||
label = "Hook up the rope",
|
label = "Seil befestigen",
|
||||||
canInteract = function(entity)
|
canInteract = function(entity)
|
||||||
if closestBoat ~= entity or not isSupportedBoat(entity) then
|
if closestBoat ~= entity or not isSupportedBoat(entity) then
|
||||||
return false
|
return false
|
||||||
|
@ -215,7 +215,7 @@ CreateThread(function()
|
||||||
type = "client",
|
type = "client",
|
||||||
event = "re_boat_winch:client:unHookRope",
|
event = "re_boat_winch:client:unHookRope",
|
||||||
icon = 'fas fa-clipboard',
|
icon = 'fas fa-clipboard',
|
||||||
label = "Unhook the rope",
|
label = "Seil lösen",
|
||||||
canInteract = function(entity)
|
canInteract = function(entity)
|
||||||
if closestBoat ~= entity or not isSupportedBoat(entity) then
|
if closestBoat ~= entity or not isSupportedBoat(entity) then
|
||||||
return false
|
return false
|
||||||
|
@ -227,7 +227,7 @@ CreateThread(function()
|
||||||
type = "client",
|
type = "client",
|
||||||
event = "re_boat_winch:client:selfDockBoat",
|
event = "re_boat_winch:client:selfDockBoat",
|
||||||
icon = 'fas fa-anchor',
|
icon = 'fas fa-anchor',
|
||||||
label = "Secure boat to trailer",
|
label = "Boot auf Hänger sichern",
|
||||||
canInteract = function(entity)
|
canInteract = function(entity)
|
||||||
if not isSupportedBoat(entity) then
|
if not isSupportedBoat(entity) then
|
||||||
return false
|
return false
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue