View Single Post
ShadowChemosh
Senior Member
Volunteer Data File Contributor
 
Join Date: Jan 2010
Location: Chicago, IL (USA)
Posts: 10,729

Old May 17th, 2018, 10:03 AM
Here is the item text:
Quote:
Originally Posted by Ring of Monkey
The {i}ring of the monkey{/i} allows you to add your Dexterity bonus as a competence bonus on all Climb checks. As well, once per day, you may activate the ring as a swift action to gain a climb speed equal to your land speed until the start of your next turn.

If you have the Athletics feat, the ring’s properties improve. You gain a climb speed equal to your land speed for as long as you wear the ring, and you gain a +8 enhancement bonus on Climb checks. You may also choose to take 10 on Climb checks even if rushed or threatened.
And here is the script
Post-Attributes/4000:
Code:
      doneif (field[gIsEquip].value = 0)

      ~ Dex bonus to Climb
      field[abValue].value += #attrmod[aDEX]
      #applybonus[BonComp,hero.child[skClimb],field[abValue].value]

      if (#hasfeat[fAthletic] = 0) then
        perform assign[User.Activation]
        perform assign[Usage.Day]
        perform assign[User.Tracker]
        field[trkMax].value = 1

        if (field[abilActive].value <> 0) then
          perform hero.childfound[xClimb].assign[SpeedMult.Full]
          endif

      else
        perform hero.childfound[xClimb].assign[SpeedMult.Full]
        #applybonus[BonEnhance, hero.childfound[skClimb], 8]
        endif
This all looks correct. You are getting +2 bonus from Dex, +8 racial bonus from Climb speed and finally a +8 enhancement bonus from the ring.

Hero Lab Resources:
Pathfinder - d20pfsrd and Pathfinder Pack Setup
3.5 D&D (d20) - Community Server Setup
5E D&D - Community Server Setup
Hero Lab Help - Hero Lab FAQ, Editor Tutorials and Videos, Editor & Scripting Resources.
Created by the community for the community
- Realm Works kickstarter backer (Alpha Wolf) and Beta tester.
- d20 HL package volunteer editor.
ShadowChemosh is offline   #7 Reply With Quote