Nainstalovat Steam
přihlásit se
|
jazyk
简体中文 (Zjednodušená čínština)
繁體中文 (Tradiční čínština)
日本語 (Japonština)
한국어 (Korejština)
ไทย (Thajština)
български (Bulharština)
Dansk (Dánština)
Deutsch (Němčina)
English (Angličtina)
Español-España (Evropská španělština)
Español-Latinoamérica (Latin. španělština)
Ελληνικά (Řečtina)
Français (Francouzština)
Italiano (Italština)
Bahasa Indonesia (Indonéština)
Magyar (Maďarština)
Nederlands (Nizozemština)
Norsk (Norština)
Polski (Polština)
Português (Evropská portugalština)
Português-Brasil (Brazilská portugalština)
Română (Rumunština)
Русский (Ruština)
Suomi (Finština)
Svenska (Švédština)
Türkçe (Turečtina)
Tiếng Việt (Vietnamština)
Українська (Ukrajinština)
Nahlásit problém s překladem
it has great fishing though.
Only works on OCEAN Fish/Crabs (NOT on freshwater fish ponds)
Pressing X locks you in the Auto fish stance once Fish/Crab caught have to press X again to be able to break stance & be able to move to grab crab before it runs back into ocean = Annoying part!
"SteamLibrary\steamapps\workshop\content\322330\1936478401" and edit modmain.lua with Notepad or Notepadd++ and find the line.
I really like this mod. :) But now I noticed that I get immobilized (lilke when fishing) when I hit the hotkey while typing in the search field of the crafting menu. Can you please fix that? :)
Thanks!
(Btw, I'd really like to set F keys for the hotkey, I'm running out of keys! :) )
if you need to discuss more, you can also write me at klei forum https://forums.kleientertainment.com/profile/881349-serpens/
local TheNet = GLOBAL.TheNet
local SERVER_SIDE, DEDICATED_SIDE, CLIENT_SIDE, ONLY_CLIENT_SIDE
if TheNet:GetIsServer() then
SERVER_SIDE = true
if TheNet:IsDedicated() then
DEDICATED_SIDE = true -- ==ONLY_SERVER_SIDE
else
CLIENT_SIDE = true
end
elseif TheNet:GetIsClient() then
SERVER_SIDE = false
CLIENT_SIDE = true
ONLY_CLIENT_SIDE = true
end
if TASK~=nil then
TASK:Cancel()
TASK=nil
Say("Disabled")
if not ONLY_CLIENT_SIDE then
GLOBAL.ThePlayer.components.playercontroller:Activate()
end
else
TASK=GLOBAL.ThePlayer:DoPeriodicTask(.5,FishingTask)
Say("Enabled")
if not ONLY_CLIENT_SIDE then
GLOBAL.ThePlayer.components.playercontroller:Deactivate()
end
end
Within playercontroller the remoterightclick does only work when self.handler is nil. To acheive this you simply have to deactivate the playercontroller when the fishingmode is enabled,
In addition: Could you fix the bait code? I have berries and seeds in my inventory and none at the rod, but the mod does not put berries to the rod. And if I put some into it and it was consumed after a successfull fish, the mod tries again to fish, but without putting a new bait into it.