Installer Steam
log på
|
sprog
简体中文 (forenklet kinesisk)
繁體中文 (traditionelt kinesisk)
日本語 (japansk)
한국어 (koreansk)
ไทย (thai)
Български (bulgarsk)
Čeština (tjekkisk)
Deutsch (tysk)
English (engelsk)
Español – España (spansk – Spanien)
Español – Latinoamérica (spansk – Latinamerika)
Ελληνικά (græsk)
Français (fransk)
Italiano (italiensk)
Bahasa indonesia (indonesisk)
Magyar (ungarsk)
Nederlands (hollandsk)
Norsk
Polski (polsk)
Português (portugisisk – Portugal)
Português – Brasil (portugisisk – Brasilien)
Română (rumænsk)
Русский (russisk)
Suomi (finsk)
Svenska (svensk)
Türkçe (tyrkisk)
Tiếng Việt (Vietnamesisk)
Українська (ukrainsk)
Rapporter et oversættelsesproblem
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.