0 of 0

File information

Last updated

Original upload

Created by

daidangodan

Uploaded by

daidangodan

Virus scan

Safe to use

46 comments

  1. ttommington
    ttommington
    • member
    • 0 kudos
    Sticky
    This is a godsend, thank you very much.

    putting this here for an example of how good guard slash is :)
    https://youtu.be/aMw0ldV5vyk
    1. daidangodan
      daidangodan
      • member
      • 0 kudos
      Dude I really enjoyed Zen's latest speedrun lol :D
  2. alicetokyo
    alicetokyo
    • member
    • 0 kudos
    My game's been crashing since I installed this mod. It's not frequent so it might be tolerable but it's a shame because this is one of the best mods for SNS. (the only mods I have installed rn are stracker's loader, souvenir light pillars and this so it has to be this one)
  3. 256725672567
    256725672567
    • member
    • 0 kudos
    非常好的MOD,使我的SNS旋转。爱来自中国
    1. hyouka3366
      hyouka3366
      • member
      • 0 kudos
      :)
  4. hatefulvirgo
    hatefulvirgo
    • member
    • 0 kudos
    w
  5. niyaruza
    niyaruza
    • member
    • 1 kudos
    Hey guys, I'm having a problemy opening the .fsm

    • I installed python
    • I downloaded MHW-Fsm-main
    • did pip install construct
    • then, I opened powershell, I run command (where i have installed/put files) python G:\MHW-Fsm-main\fsm_handling.py G:\wp02_action.fsm

      and i have a problem D:
    1. Urgentus
      Urgentus
      • supporter
      • 0 kudos
      I'm having this same issue. Cant seem to resolve it.

      Edit: FIXED IT. 
      run these two commands in powershell/terminal, newer versions of construct apparently run into issues.
      pip uninstall construct
      pip install construct==2.10.67
    2. niyaruza
      niyaruza
      • member
      • 1 kudos
      Hey, I just did the same and meant to post it here, haha!
      Good thing it's done!

      I managed to create a json file but I have no idea how to edit what I want -_-, Wasn't expecting it to be this complicated
    3. rager2k
      rager2k
      • member
      • 0 kudos
      even after installing construct, still does the same for me.
    4. Hecateo
      Hecateo
      • member
      • 1 kudos
      i did that and im still getting the same error :C 
    5. InfiniteZX50
      InfiniteZX50
      • member
      • 0 kudos
      I have the same problem with StreamError. Can someone plz help me?
    6. daidangodan
      daidangodan
      • member
      • 0 kudos
      Did you make sure to have the right version of construct installed. niyaruza and Urgentus are correct. Looks like the latest release of construct doesn't play well w/ the script. Can use the previous construct release and it works fine

      pip uninstall construct
      pip install construct==2.10.69
  6. thegabrix
    thegabrix
    • member
    • 0 kudos
    Hey there thanks for the mod, anyone knows of a way to make this work with the ice mod?
  7. mostyfar
    mostyfar
    • member
    • 0 kudos
    Anyone else having a black screen with this mod after the update ?
    EDIT: the game fixed itself after verifying files
  8. Mthyz
    Mthyz
    • member
    • 0 kudos
    Hi there! This mod is amazing. I just wanna ask how does one edit the action.fsm files? I'm looking at the github and I'm completely clueless as to how it works. Could you give me some tips to point me in the right direction? 
    1. daidangodan
      daidangodan
      • member
      • 0 kudos
      For something basic like this it's fairly simple, assuming you've figured out how to extract the fsm you want to modify. This is more or less what I did:

      • Download and unzip the files from the github here: https://github.com/Strackeror/MHW-Fsm/archive/main.zip
      • Install python on your computer if you don't already have it: https://www.python.org/downloads/
      • Using your terminal/powershell or whatever you have run python path\to\fsm_handling.py path\to\wp_action.fsm

      • Go to wherever that fsm file was and you will find a newly generated .json file
      • Edit that with whatever text editor you have. There will be a bunch of moves, each with a mId and a list of moves it is linked to
      • Once you are done editing go back to the terminal and runpython path\to\fsm_handling.py path\to\wp_action.fsm.json
      • This will write the changes you made in the json to the fsm file
      • Put the fsm file in your nativePC directory the same way I did and you should be good to go
    2. reyzapper
      reyzapper
      • member
      • 2 kudos
       Hey i follow your step but it gives me error like this, and no .json file generated, i think there's no module name construct, but when i open the fsm_handling.py file with text editor, the module exists
      File "Desktop\MHW-Fsm-main\fsm_handling.py", line 5, in <module>
      from construct import *
      ModuleNotFoundError: No module named 'construct'
    3. daidangodan
      daidangodan
      • member
      • 0 kudos
      To get around that just run this. Hopefully you installed pip along with pythonpip install construct
    4. reyzapper
      reyzapper
      • member
      • 2 kudos
      Ok thx dude it works, the json file is generated :D
    5. bad3ip420
      bad3ip420
      • supporter
      • 1 kudos
      SyntaxError: invalid syntax
      >>> python path\to\fsm_handling.py D:\GS\wp00_action.fsm
        File "<stdin>", line 1
          python path\to\fsm_handling.py D:\GS\wp00_action.fsm
                 ^
      SyntaxError: invalid syntax
      >>>


      any help with this? just started using python
    6. daidangodan
      daidangodan
      • member
      • 0 kudos
      You prob fixed it already but just in case. Same thing you did with the fsm file. Just replace path\to\ with the actual path to the python file
    7. bad3ip420
      bad3ip420
      • supporter
      • 1 kudos
      yep just realized that lol. problem is I've been searching the python folder for fsm_handling.fsm but cannot find any so I went to python github but I'm still lost.
    8. daidangodan
      daidangodan
      • member
      • 0 kudos
      Hmm? You basically had it. It will be like thispython D:\Downloads\MHW-Fsm-main\fsm_handling.py D:\GS\wp00_action.fsm

      Oh, maybe you haven't downloaded the MHW-Fsm files yet. The github download link is here: https://github.com/Strackeror/MHW-Fsm/archive/main.zip

      Also just noticed you are in the python interpreter. If you are on Windows just use command prompt or powershell or something
    9. SolidusOce
      SolidusOce
      • member
      • 0 kudos
      Hello, I've followed the steps and I'm confused about the linked moves. Am I looking for "mpLinkList" to change the linked moves or am i supposed to look elsewhere and If so, how would I go about replacing the moves?
    10. daidangodan
      daidangodan
      • member
      • 0 kudos
      Yeah you have the right idea. I don't know much about the limits of what moves are allowed to go where, but for the most part it seems like you just need to do a few things:
      Find the id of the move you want to transition to (e.g. if you want to make a shortcut to perfect rush, you would find mId 60).
      Find the mpLinkList for the move you want to transition from.
      In that list, find the move you want to replace and just swap the mDestinationNodeId with the id you found in the beginning (e.g. 60)

      Have fun with it
    11. bad3ip420
      bad3ip420
      • supporter
      • 1 kudos


      You've been really helpful good sir. Did everything right and followed instructions (installed python, downloaded fsm_handling, etc) but there is no json file on the fsm folder.

      NVM, got it working thank you!

      Have you ever tried adding a new link move instead of replacing? did it work?
    12. daidangodan
      daidangodan
      • member
      • 0 kudos
      Haven't experimented with that. Seems like that would be a bit more complicated to get working
    13. Romslayer
      Romslayer
      • member
      • 0 kudos
      How'd you get it to work? I have this same problem.
    14. deleted119558228
      deleted119558228
      • account closed
      • 10 kudos
      can you tell me how did u get it to work ?
    15. deleted119558228
      deleted119558228
      • account closed
      • 10 kudos
      hello do you mind if i requested a merge between two files ? cause i cant seem to get it to work ;/ 
      https://drive.google.com/file/d/1nbN2aBmx2QDBtO8tcL5H-q1tg7aaFXwj/view
    16. mikel1234568
      mikel1234568
      • member
      • 0 kudos

      I followed every step but I'm stuck with this error. Any idea what the problem is?
    17. dmofficial
      dmofficial
      • member
      • 0 kudos
      where ur install python.exe ?
      C / D ?
  9. ChimpWhisperer
    ChimpWhisperer
    • member
    • 0 kudos
    BRAVO! S-Tier mod! You've truly saved the day. I love SnS 10x more now.
  10. Khyuzue
    Khyuzue
    • supporter
    • 13 kudos
    Okay i manage to make it work but it said there's no file or directory and i can't generate fsm file :D
  11. tapmcshoe
    tapmcshoe
    • member
    • 1 kudos
    this is absolutely great! if you dont mind my asking, is it possible for you to make a version that also removes spiral slash/jab from the moveset? the move that activates when you move your thumbstick during a combo. I find it messes me up pretty bad most of the time. either way, sick mod!