Healers Codex Profile Setter by itzrobd
Description from the author:
# Healers Codex Profile
# Author: ItzRobD
# Set your desired skill points for the Healer's Codex
# There is no check if the number of points exceeds your max
# You should only need to change the skill amounts
@setvar! combatMedic 0
@setvar! immunize 0
@setvar! overheal 0
@setvar! pressurePoints 0
@setvar! triage 0
@setvar! selfTreatment 0
@setvar! specialist 0
@setvar! withoutBorders 0
############################################
## You should not have to edit below this ##
############################################
@setvar! hcGump 1244441914
@setvar! prevPage 2
@setvar! nextPage 3
@setvar! resetButton 4
if findtype "healers codex" backpack as hc
dclick hc
waitforgump hcGump
while not ingump "Immunize" 1244441914
gumpresponse prevPage hcGump
waitforgump hcGump
endwhile
for 3
gumpresponse resetButton hcGump
waitforgump hcGump
endfor
if accumulation > 0
for 3
if index < combatMedic
gumpresponse 20 hcGump
wait 200
endif
endfor
endif
if airborne > 0
for 3
if index < immunize
gumpresponse 21 hcGump
wait 200
endif
endfor
endif
if directDose > 0
for 3
if index < overheal
gumpresponse 22 hcGump
wait 200
endif
endfor
endif
if efficient > 0
for 3
if index < pressurePoints
gumpresponse 23 hcGump
wait 200
endif
endfor
endif
while not ingump "Triage" 1244441914
gumpresponse nextPage hcGump
waitforgump hcGump
endwhile
if enfeeble > 0
for 3
if index < triage
gumpresponse 20 hcGump
wait 200
endif
endfor
endif
if susceptible > 0
for 3
if index < selfTreatment
gumpresponse 21 hcGump
wait 200
endif
endfor
endif
if targetedVenom > 0
for 3
if index < specialist
gumpresponse 22 hcGump
wait 200
endif
endfor
endif
if terminal > 0
for 3
if index < withoutBorders
gumpresponse 23 hcGump
wait 200
endif
endfor
endif
endifA script designed to quickly set the point allocations for your healers codex. You can duplicate the script to have different profiles.