Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
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.