Thieves Codex Profile Setter by itzrobd
Description from the author:
# Thieves Codex Profile
# Author: ItzRobD
# Set your desired skill points for the Thieves Codex
# There is no check if the number of points exceeds your max
# You should only need to change the skill amounts
@setvar! camouflage 0
@setvar! distraction 0
@setvar! extortion 0
@setvar! overlooked 0
@setvar! ransack 0
@setvar! ruffian 0
@setvar! shadowhands 0
@setvar! withoutatrace 0
############################################
## You should not have to edit below this ##
############################################
@setvar! tcGump 2955404556
@setvar! prevPage 2
@setvar! nextPage 3
@setvar! resetButton 4
if findtype "thief codex" backpack as tc
dclick tc
waitforgump tcGump
while not ingump "Distraction" 2955404556
gumpresponse prevPage tcGump
waitforgump tcGump
endwhile
for 3
gumpresponse resetButton tcGump
waitforgump tcGump
endfor
if camouflage > 0
for 3
if index < camouflage
gumpresponse 20 tcGump
wait 200
endif
endfor
endif
if distraction > 0
for 3
if index < distraction
gumpresponse 21 tcGump
wait 200
endif
endfor
endif
if extortion > 0
for 3
if index < extortion
gumpresponse 22 tcGump
wait 200
endif
endfor
endif
if overlooked > 0
for 3
if index < overlooked
gumpresponse 23 tcGump
wait 200
endif
endfor
endif
while not ingump "Ransack" 2955404556
gumpresponse nextPage tcGump
waitforgump pkGump
endwhile
if ransack > 0
for 3
if index < ransack
gumpresponse 20 tcGump
wait 200
endif
endfor
endif
if ruffian > 0
for 3
if index < ruffian
gumpresponse 21 tcGump
wait 200
endif
endfor
endif
if shadowhands > 0
for 3
if index < shadowhands
gumpresponse 22 tcGump
wait 200
endif
endfor
endif
if withoutatrace > 0
for 3
if index < withoutatrace
gumpresponse 23 tcGump
wait 200
endif
endfor
endif
endifA script designed to quickly set the point allocations for your thieves codex. You can duplicate the script to have different profiles.