Instalează Steam
conectare
|
limbă
简体中文 (chineză simplificată)
繁體中文 (chineză tradițională)
日本語 (japoneză)
한국어 (coreeană)
ไทย (thailandeză)
български (bulgară)
Čeština (cehă)
Dansk (daneză)
Deutsch (germană)
English (engleză)
Español - España (spaniolă - Spania)
Español - Latinoamérica (spaniolă - America Latină)
Ελληνικά (greacă)
Français (franceză)
Italiano (italiană)
Bahasa Indonesia (indoneziană)
Magyar (maghiară)
Nederlands (neerlandeză)
Norsk (norvegiană)
Polski (poloneză)
Português (portugheză - Portugalia)
Português - Brasil (portugheză - Brazilia)
Русский (rusă)
Suomi (finlandeză)
Svenska (suedeză)
Türkçe (turcă)
Tiếng Việt (vietnameză)
Українська (ucraineană)
Raportează o problemă de traducere
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.