0 of 0

File information

Last updated

Original upload

Created by

ZMods

Uploaded by

xxZxxMods

Virus scan

Safe to use

Tags for this mod

32 comments

  1. ASDAS12111
    ASDAS12111
    • member
    • 0 kudos
    it won't work because the enum is wrong.
    open main.lua. replace with below content:

    RegisterKeyBind(Key.LEFT_ARROW, {ModifierKey.CONTROL}, function()
        local PlayerController = FindFirstOf("PalPlayerController")
        local PalUtility = StaticFindObject("/Script/Pal.Default__PalUtility")
        PalUtility:SendSystemAnnounce(PlayerController, "All Fast Travel Points Unlocked...")

        ExecuteAsync(function()
            local PalLevelObjectUnlockableFastTravelPoints = FindAllOf("PalLevelObjectUnlockableFastTravelPoint")
            for Index, FastTravelPoint in pairs(PalLevelObjectUnlockableFastTravelPoints) do
                if not FastTravelPoint:IsUnlocked() then
                    FastTravelPoint.EnableRequestUnlock = true
                    FastTravelPoint.bUnlocked = true
                    FastTravelPoint:OnTriggerInteract(FindFirstOf("PalPlayerCharacter"), 26)
                    FastTravelPoint:OnCompleteSyncPlayer(FindFirstOf("PalPlayerState"))
                end
                local sec = tonumber(os.clock() + 1);
                while (os.clock() < sec) do
                end
            end
        end)
    end)
    1. GwGwGZ
      GwGwGZ
      • member
      • 0 kudos
      ty works
    2. AleaD5
      AleaD5
      • member
      • 0 kudos
      fixed it. thank you
    3. Anonymoogs
      Anonymoogs
      • member
      • 0 kudos
      Huh. I tried this, but still no dice for me. Darn, this would be really convenient for my second playthrough.
    4. Swoosh90
      Swoosh90
      • supporter
      • 0 kudos
      tried this and it crashed
      still worked, had to do it twice to get the rest of them after first crash though
    5. Raizil05
      Raizil05
      • supporter
      • 0 kudos
      This just locked all my waypoints to grey and I can not teleport to any, nor can I activate them now...
      Talk about an accidental hardcore run lol
  2. gimpxors
    gimpxors
    • member
    • 0 kudos
    It crashed my game twice. It doesn't seem like the delay is working, at least for me. I watched your video to see what it's suppose to look like and sure enough it was very noticeably slower than when I did it. 

    On a positive note, the third attempt, while still being giga fast, didn't crash my game lol.
  3. Kaneki9377
    Kaneki9377
    • member
    • 0 kudos
    It isn't working for me on Steam. Please help!
  4. FireboyR1
    FireboyR1
    • member
    • 0 kudos
    there is no pak file
  5. ilias1403
    ilias1403
    • member
    • 0 kudos
    How to remove mod?
  6. redlady2242
    redlady2242
    • member
    • 0 kudos
    There is no pak file in the download.
  7. LesterLikee
    LesterLikee
    • member
    • 1 kudos
    Can we use this on dedicated server?
    1. Scor9ion
      Scor9ion
      • member
      • 0 kudos
      Yes
    2. LesterLikee
      LesterLikee
      • member
      • 1 kudos
      That's great 👍
    3. MrMadmer
      MrMadmer
      • premium
      • 9 kudos
      No, not working
    4. Scor9ion
      Scor9ion
      • member
      • 0 kudos
      I have no idea, it works for me.
    5. Xalandriel
      Xalandriel
      • supporter
      • 0 kudos
      If no Anti Cheat, yeah it works
      If there is a Anti Cheat, it will most probably kick you
      (However Always Fast Travel was working for me at least)
    6. fieriMalum
      fieriMalum
      • member
      • 0 kudos
      According the video in the description, you need an external download installed before this mod works (despite the mod listing no requirements).
  8. Dracotyr78
    Dracotyr78
    • member
    • 0 kudos
    No pak file included to put in LogicMods File? Unlock not activating upon hitting left control.
    1. Dracotyr78
      Dracotyr78
      • member
      • 0 kudos
      User error. Working correctly.
  9. JtheDuelist
    JtheDuelist
    • premium
    • 79 kudos
    Says it unlocked all the fast travel points and that it gave points for them, but when I check my point count and map, it did not.

    EDIT: Oh, turns out it did, but for them to appear on the map, I have to actually visit near them first, which kind of honestly kills the point of installing this mod in the first place.
    1. batmegh
      batmegh
      • member
      • 0 kudos
      would a mod that unlocks the whole map solve this problem?
    2. xxZxxMods
      xxZxxMods
      • member
      • 17 kudos
      As matmegh said, there's a mod to unlock the map that goes well with this. I throw a link to it in the description. I didn't want to add that to this mod because it felt wrong when it's not something I did myself. 
    3. JtheDuelist
      JtheDuelist
      • premium
      • 79 kudos
      Oh.
    4. xxZxxMods
      xxZxxMods
      • member
      • 17 kudos
      Here you go. https://www.nexusmods.com/palworld/mods/16
  10. RaiderofGames
    RaiderofGames
    • member
    • 0 kudos
    Crashes everytime i use it
    1. xxZxxMods
      xxZxxMods
      • member
      • 17 kudos
      If you're on gamepass, I haven't been able to test it there. If not, I'm unsure what could be causing it. I did multiple tests before uploading to ensure it was as stable as it can be before posting. I tried multiple worlds as well and it worked flawlessly on my end. I feel like a lot of mods on here are hit and miss due to the early access nature of the game. I'll have some buddies try it out and see if they have similar issues. One potential fix could be extending the wait time before unlocks. Inside of Scripts/main.lua, line 18: local sec = tonumber(os.clock() + 0.1), 0.1 is the wait time in seconds. So you can replace it with something like: local sec = tonumber(os.clock() + 0.5) to make it wait half a second before unlocking the next one. 
    2. RaiderofGames
      RaiderofGames
      • member
      • 0 kudos
      Worked thanks i tried 0.8 and it was fine
    3. craetoss
      craetoss
      • member
      • 0 kudos
      Hello not working for steam
    4. xxZxxMods
      xxZxxMods
      • member
      • 17 kudos
      Sorry for the late reply, I assume you tried the above fix?