Author Topic: How to remove Mount Actions from special abilities?  (Read 307 times)

Legacy_WhiteTiger

  • Hero Member
  • *****
  • Posts: 889
  • Karma: +0/-0
How to remove Mount Actions from special abilities?
« on: May 03, 2014, 08:05:57 pm »


               

How to remove "Character/Special Abilities/Mount Actions" option (all classes have) and except "Character/Special Abilities/Paladin/Mount Actions" (paladin have double mount actions, the above and this).



               
               

               
            

Legacy_Shadooow

  • Hero Member
  • *****
  • Posts: 7698
  • Karma: +0/-0
How to remove Mount Actions from special abilities?
« Reply #1 on: May 04, 2014, 01:32:56 pm »


               

Ive made an override for this, however that would also disabled it for a paladin which you don't want to.


 


If you have a NWNX_Funcs, and you have afaik, you can use RemoveFeat/AddFeat method. For a new character, remove horse menu (feat id 1089). And in OnLevelUp event, check whether character has five or more levels of paladin, and if does, whether he does not have horse menu and in those cases add it via NWNX_AddFeat or HorseAddHorseMenu(oPC);


 


Also, if you are using x3_mod_def_enter script in your module, uncomment the line "HorseAddHorseMenu(oPC);" there.



               
               

               
            

Legacy_WhiteTiger

  • Hero Member
  • *****
  • Posts: 889
  • Karma: +0/-0
How to remove Mount Actions from special abilities?
« Reply #2 on: May 04, 2014, 05:29:21 pm »


               

yes, I have NWNX_Funcs XD. 


how to use RemoveFeat/AddFeat with NWNX_Funcs? Is it to throw in to override?  ':huh:'