Palworld
0 of 0

File information

Last updated

Original upload

Created by

yakuzadeso

Uploaded by

yakuzadeso

Virus scan

Safe to use

Tags for this mod

About this mod

Customize your experience with a bunch of hidden settings! Can modify rare pal spawn rate, stamina consumption per activity, health regeneration, hunger, default weight, movement speed, respawn time, stats per level up and more!

Requirements
Permissions and credits
Changelogs
Donations
Customize your experience with a bunch of hidden settings! Can modify rare pal spawn rate, stamina consumption per activity, health regeneration, hunger, default weight, movement speed, respawn time, stats per level up and more!


Once you've installed the mod open config.lua with Notepad or whatever editor you use to find a bunch of options like these:



To modify the settings all you have to do is change their values and save the file. For example if you want to stop sprinting from consuming stamina you do:
-- Stamina for sprinting
SprintSP = 0.0 -- Default value 7.0.

Currently implemented options
Spoiler:  
Show

--------------------------------------------------------------------------------
-- Player settings

-- Speed reduction percentage when overburdened
config.OverWeightSpeedZero_AddPercent = 50.0 -- Default value 50.0. Not tested.

-- Automatic HP regeneration percentage per second
config.AutoHPRegene_Percent_perSecond = 0.3 -- Default value 0.3. Not tested.

-- Automatic HP regeneration percentage per second while sleeping
config.AutoHPRegene_Percent_perSecond_Sleeping = 1.0 -- Default value 1.0. Not tested.

-- HP decrease percentage per second when starving
config.Starvation_DecreaseHP_Percent_perSecond = 3.0 -- Default value 3.0. Not tested.

-- Stomach decrease per second for players
config.StomachDecreace_perSecond_Player = 0.05 -- Default value 0.05. Not tested.

-- Stomach decrease for auto-healing
config.StomachDecreace_AutoHealing = 2.0 -- Default value 2.0. Not tested.

-- Stomach decrease for working activities
config.StomachDecreace_WorkingRate = 2.0 -- Default value 2.0. Not tested.

-- Initial stomach value when hungry
config.HungerStart_StomachValue = 30 -- Default value 30. Not tested.

-- Percentage of health to have after respawn
config.PlayerHPRateFromRespawn = 0.5 -- Default 0.5. Looks like percentage so should go up to 1.0 (100)

-- Percentage of hunger meter after respawn
config.PlayerStomachRateFromRespawn = 0.8 -- Default 0.8. Looks like percentage so should go up to 1.0 (100)

-- Stamina recovery percentage per second
config.StaminaRecover_PercentPerSecond = 20.0 -- Default value 20.0. Not tested.

-- Percentage of health to trigger low health effect
config.lowHealthEffectParcent = 50 -- Default value 50. Not tested.

-- Wait time to respawn
config.BlockRespawnTime = 5.0 -- Default value 5.0. Lowest value you can set is 0.1 which is essentially instant respawns.

-- Default starting inventory weight
config.DefaultMaxInventoryWeight = 300.0 -- Default value 300.0.

-- Default starting Technology points
config.DefaultTechnologyPoint = 0 -- Default value 0.

-- Seconds to stay in revive state?
config.RemainderOfLife_Second = 300 -- Default value 300. Not tested.


--------------------------------------------------------------------------------
-- Technology points settings

-- Technology points gained per tower boss?
config.bossTechnologyPointPerTowerBoss = 5 -- Default value 5.

-- Technology points gained per normal boss?
config.bossTechnologyPointPerNormalBoss = 1 -- Default value 1.

-- Technology points gained per fast travel point?
config.TechnologyPoint_UnlockFastTravel = 1 -- Default value 1. Not tested.


--------------------------------------------------------------------------------
-- Player level settings

-- Status points gained per level
config.StatusPointPerLevel = 1 -- Default value 1. Not tested.

-- Additional maximum HP per status point
config.AddMaxHPPerStatusPoint = 100.0 -- Default value 100.0. Not tested.

-- Additional maximum Stamina per status point
config.AddMaxSPPerStatusPoint = 10.0 -- Default value 10.0. Not tested.

-- Additional power per status point
config.AddPowerPerStatusPoint = 2.0 -- Default value 2.0. Not tested.

-- Additional maximum inventory weight per status point
config.AddMaxInventoryWeightPerStatusPoint = 50.0 -- Default value 50.0. Not tested.

-- Additional capture level per status point
config.AddCaptureLevelPerStatusPoint = 0.5 -- Default value 0.5. Not tested.

-- Additional work speed per status point
config.AddWorkSpeedPerStatusPoint = 50.0 -- Default value 50.0. Not tested.

-- Additional maximum HP per HP rank
--AddMaxHPPerHPRank = 0.03 -- Default value 0.03. Not tested.

-- Additional attack power per attack rank
--AddAttackPerAttackRank = 0.03 -- Default value 0.03. Not tested.

-- Additional defense per defense rank
--AddDefencePerDefenceRank = 0.03 -- Default value 0.03. Not tested.

-- Additional work speed per work speed rank
--AddWorkSpeedPerWorkSpeedRank = 0.03 -- Default value 0.03. Not tested.

-- Additional technology points to gain per level
config.technologyPointPerLevel = 6 -- Default value 6. Not tested.


--------------------------------------------------------------------------------

-- Movement settings

-- Max walking speed
config.MaxWalkSpeed = 350.0 -- Default value 350.0.

-- Max sprinting speed
config.SprintMaxSpeed = 500.0 -- Default value 500.0.

-- Max climbing speed
config.ClimbMaxSpeed = 100.0 -- Default value 100.0.

-- Max swimming speed
config.MaxSwimSpeed = 250.0 -- Default value 250.0.

-- Max dash swimming speed
config.DashSwimMaxSpeed = 500.0 -- Default value 500.0.

--------------------------------------------------------------------------------

-- Stamina Settings

-- Climbing stamina consumption for movement
config.ClimbingStamina_Move = 10.0 -- Default value 10.0.

-- Climbing stamina consumption for jumping
config.ClimbingStamina_Jump = 10.0 -- Default value 10.0.

-- Stamina rate for ride waza
config.RideWazaStaminaRate = 0.3 -- Default value 0.3.

-- Stamina consumption for flying in hover mode
config.FlyHover_SP = 0.1 -- Default value 0.1.

-- Stamina for flying horizontally
config.FlyHorizon_SP = 2.5 -- Default value 2.5.

-- Stamina for dashing in horizontal flying
config.FlyHorizon_Dash_SP = 10.0 -- Default value 10.0.

-- Stamina for flying vertically
config.FlyVertical_SP = 5.0 -- Default value 5.0.

-- Stamina for jumping
config.JumpSP = 10 -- Default value 10.

-- Stamina for melee attacks
config.MeleeAttackSP = 5 -- Default value 5.

-- Stamina for sprinting
config.SprintSP = 7.0 -- Default value 7.0.

-- Stamina for gliding
config.GliderSP = 15.0 -- Default value 15.0.

-- Stamina for idle swimming
config.Swimming_SP_Idle = 1.5 -- Default value 1.5.

-- Stamina for regular swimming
config.Swimming_SP_Swim = 1.5 -- Default value 1.5.

-- Stamina for dashing while swimming
config.Swimming_SP_DashSwim = 3.0 -- Default value 3.0.


--------------------------------------------------------------------------------

-- Base camp settings

-- Max area range considered base camp. Need to dismantle palbox and rebuild it to take effect.
config.BaseCampAreaRange = 3500.0 -- Default value 3500.0.

-- Max range in which pals can find work
config.BaseCampPalFindWorkRange = 400.0 -- Default value 400.0.

-- Max range to find workable foliage
config.BaseCampFoliageWorkableRange = 200.0 -- Default value 200.0.

-- ???????????????????????
config.WorkAmountBySecForPlayer = 100.0 -- Default value 100.0. Not tested.

-- Max range of the pal box. Need to dismantle and rebuild it to take effect.
config.palboxAreaRange = 1500.0 -- Default value 1500.0.

-- ??????????????????????
config.BaseCampAreaRangeStorage = 5000.0 -- Default value 5000.0.

-- Max slots in camp chests?
config.ChestSlotNum = 100 -- Default value 100. Not tested.

-- Max resource stacks for workers?
config.WorkerCollectResourceStackMaxNum = 10 -- Default value 10. Not tested.

-- Rate at which the crops grow
config.FarmCropGrowupSpeedBySec = 1.0 -- Default value 1.0. Not tested.

-- Multiplier for crop growth base on their watered state?
config.FarmCropIncreaseRateByWaterFillRate = 3.0 -- Default value 3.0. Not tested.

-- Probability for camp invansions?
config.InvadeProbability = 0.8 -- Default value 0.8. Not tested.

-- Probability for npc visitations?
config.VisitorNPCProbability = 0.5 -- Default value 0.5. Not tested.


--------------------------------------------------------------------------------

-- Time settings

-- How much is 1 irl minute in game minutes
config.PalWorldMinutes_RealOneMinute = 45 -- Default value 45. Not tested.


--------------------------------------------------------------------------------

-- World map settings

-- Amount of "fog of war" to remove from the map while exploring
config.worldmapUIMaskClearSize = 36.0 -- Default value 36.0.

-- Max amount of map markers you can place.
config.worldmapUIMaxMarker = 99 -- Default value 99.


--------------------------------------------------------------------------------

-- Pal settings

-- Probability of rare pal appearance
config.RarePal_AppearanceProbability = 0.1 -- Default 0.1. Not tested.

-- level multiplier for spawned rare pals?
config.RarePal_LevelMultiply = 1.5 -- Default 1.5. Not tested.

config.BossOrRarePal_TalentMin = 50 -- Default 50. Not tested.

-- Should be the time you need to wait before reviving pals.
config.PalBoxReviveTime = 10.0 -- Default value 10.0. Not tested.

-- Sanity auto regen in pal storage
config.AutoSANRegene_Percent_perSecond_PalStorage = 0.02 -- Default value 0.02. Not tested.

-- Stomach decrease per second for monsters
config.StomachDecreace_perSecond_Monster = 0.025 -- Default value 0.025. Not tested.

--------------------------------------------------------------------------------

-- Uncategorized

-- Pal or player stomach decrease rate while ground riding?
config.StomachDecreaceRate_GroundRide_Sprint = 2.0 -- Default value 2.0. Not tested.

-- Pal or player stomach decrease rate while water riding?
config.StomachDecreaceRate_WaterRide = 3.0 -- Default value 3.0. Not tested.

-- Pal or player stomach decrease rate while water sprint riding?
config.StomachDecreaceRate_WaterRide_Sprint = 5.0 -- Default value 5.0. Not tested.

-- Pal or player stomach decrease rate while water flying?
config.StomachDecreaceRate_FlyRide = 3.0 -- Default value 3.0. Not tested.

-- Pal or player stomach decrease rate while water sprint flying?
config.StomachDecreaceRate_FlyRide_Sprint = 5.0 -- Default value 5.0. Not tested.

-- Cool-down time for enemy camp respawn
config.EnemyCampRespawnCoolTime = 120.0 -- Default value 120.0. Not tested.

-- Pal or player sanity to decrease based on hunger?
config.DecreaseSanity_Hunger = 0.1 -- Default value 0.1. Not tested.

-- Pal or player sanity to decrease based on starvation?
config.DecreaseSanity_Starvation = 0.3 -- Default value 0.3. Not tested.

-- Experience gain for building
config.BuildExp = 3 -- Default value 3. Not tested.

-- Experience gain for crafting
config.CraftExp = 2 -- Default value 2. Not tested.

--????????????????????????????
config.ResuscitationTime = 10.0 --Default 10.0. Not Tested

--------------------------------------------------------------------------------
--------------------------------------------------------------------------------


Installation 

  • Read "Correct folder and file structure".
  • Delete xinput1_3.dll in \Palword\Pal\Binaries\Win64 if you installed the xinput version of REUE4SS.
  • Download REUE4SS: Releases · UE4SS-RE/RE-UE4SS (github.com). Latest version is 3, direct link to 3: Release v3.0.0 · UE4SS-RE/RE-UE4SS (github.com). File name: "UE4SS_v3.0.0.zip".
  • Drop its files to \Palword\Pal\Binaries\Win64.
  • Download the mod.
  • Drop its folder in \Palword\Pal\Binaries\Win64\Mods.
  • Read "Notes".
  • Correct folder and file structure
  • \Palword\Pal\Binaries\Win64\UE4SS.dll
  • \Palword\Pal\Binaries\Win64\UE4SS-settings.ini
  • \Palword\Pal\Binaries\Win64\dwmapi.dll
  • \Palword\Pal\Binaries\Win64\Mods\GameplayTweaks\Scripts\main.lua

Installation for dedicated server

  • Correct folder and file structure
  • <wherever your server is>/Pal/Binaries/Win64/UE4SS.dll
  • <wherever your server is>/Pal/Binaries/Win64/UE4SS-settings.ini
  • <wherever your server is>/Pal/Binaries/Win64\dwmapi.dll
  • <wherever your server is>/Pal/Binaries/Win6/Mods/GameplayTweaks/Scripts/main.lua




Notes

Tested on singleplayer and dedicated server. Works fine on both so I would assume it works fine on co op as well. Needs to be installed on both the server and the clients if you want to use this with your server.

I suggest using Notepad++ since its way better than Notepad. Makes messing with all kinds of text files easier. 

If you want help, info on modding the game and your server you can join the Palworld modding discord server: Invite for Palworld modding discord  

REUE4SS generates a log file named UE4SS.log in \Palword\Pal\Binaries\Win64\. You can open it with Notepad to see for errors.

If you installed everything correctly you should something like "Mod 'Pause' has enabled.txt, starting mod." in your log file.

If the mod isn't working for you or if you have any errors you can share the contents of your log file on Pastebin.com and share the link in the bugs section of the mod.

To help with crashes open UE4SS-settings.ini in \Pal\Binaries\Win64 and set bUseUObjectArrayCache to false.


Check out my other mods

Gameplay tweaks 
Fast travel from anywhere 
Better building - Instant and automatic 
Capturable tower bosses 
No food decay 
Pause - Freeze time 
Disable motion blur and vignette 
100 percent capture rate and custom capture rate Re-upload 
Disable item durability mechanic 
No item weight

Making testing easier

To make testing easier you can open UE4SS-settings.ini in \Palword\Pal\Binaries\Win64 with Notepad to enable GuiConsoleEnabled and GuiConsoleVisible (GuiConsoleEnabled = 1 GuiConsoleVisible = 1). bUseUObjectArrayCache must be set to true as well. Be aware that these settings might make the game unstable and cause crashes.

With the console enabled, you can make changes to the mod's settings, save the file and then hit the Restart all Mods button of the console. Once done, exit to the main menu and reload back to your world. Your changes have now taken effect without having to restart the game!