• Please note: In an effort to ensure that all of our users feel welcome on our forums, we’ve updated our forum rules. You can review the updated rules here: http://forums.wolflair.com/showthread.php?t=5528.

    If a fellow Community member is not following the forum rules, please report the post by clicking the Report button (the red yield sign on the left) located on every post. This will notify the moderators directly. If you have any questions about these new rules, please contact support@wolflair.com.

    - The Lone Wolf Development Team

Innate Grapple Bonus

Check out the thread where I was asking about CMD/CMB for weapons as it has most of the information you need in it.

Basically their are new picks now for each different Maneuver type. So if you want to just add a bonus to both CMD/CMB, but only for grapple you can do the following:

Code:
~Final Phase 20,500
  hero.child[manGrapple].field[manBonus].value += 2

Just for CMB
Code:
~Final Phase 20,500
  hero.child[manGrapple].field[tCMB].value += 2

Just for CMD
Code:
~Final Phase 20,500
  hero.child[manGrapple].field[tCMD].value += 2

So as I am not near HL right now I am only 90% sure that child[manGrapple] is correct, but that is easy to double check in the editor.
 
I'd recommend checking out the script for the Improved grapple feat and the Greater Grapple feat - those give examples of how to apply a grapple maneuver bonus. You can pretty much copy those scripts over to a script on your ability.

Also, the "Improved Grab" ability from 3.5 was renamed "Grab" in Pathfinder - it's already been entered, and it already aplies the grapple modifier, so just select it for your race from the "Racial Special Abilities" list.
 
Also, the "Improved Grab" ability from 3.5 was renamed "Grab" in Pathfinder - it's already been entered, and it already aplies the grapple modifier, so just select it for your race from the "Racial Special Abilities" list.


Thanks i might need to go back and fix a few of my monsters
 
Back
Top