Instalar Steam
iniciar sesión
|
idioma
简体中文 (chino simplificado)
繁體中文 (chino tradicional)
日本語 (japonés)
한국어 (coreano)
ไทย (tailandés)
Български (búlgaro)
Čeština (checo)
Dansk (danés)
Deutsch (alemán)
English (inglés)
Español de Hispanoamérica
Ελληνικά (griego)
Français (francés)
Italiano
Bahasa Indonesia (indonesio)
Magyar (húngaro)
Nederlands (holandés)
Norsk (noruego)
Polski (polaco)
Português (Portugués de Portugal)
Português-Brasil (portugués de Brasil)
Română (rumano)
Русский (ruso)
Suomi (finés)
Svenska (sueco)
Türkçe (turco)
Tiếng Việt (vietnamita)
Українська (ucraniano)
Comunicar un error de traducción
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.