Poisoner Kit Profile Setter by itzrobd
Description from the author:
# Poisoner Kit Profile
# Author: ItzRobD
# Set your desired skill points for the Poisoner's Kit
# There is no check if the number of points exceeds your max
# You should only need to change the skill amounts
@setvar! accumulation 0
@setvar! airborne 0
@setvar! directDose 0
@setvar! efficient 0
@setvar! enfeeble 0
@setvar! susceptible 0
@setvar! targetedVenom 0
@setvar! terminal 0
############################################
## You should not have to edit below this ##
############################################
@setvar! pkGump 1144890379
@setvar! prevPage 2
@setvar! nextPage 3
@setvar! resetButton 4
if findtype "full vials" backpack as pk
dclick pk
waitforgump pkGump
while not ingump "Airborne" 1144890379
gumpresponse prevPage pkGump
waitforgump pkGump
endwhile
for 3
gumpresponse resetButton pkGump
waitforgump pkGump
endfor
if accumulation > 0
for 3
if index < accumulation
gumpresponse 20 pkGump
wait 200
endif
endfor
endif
if airborne > 0
for 3
if index < airborne
gumpresponse 21 pkGump
wait 200
endif
endfor
endif
if directDose > 0
for 3
if index < directDose
gumpresponse 22 pkGump
wait 200
endif
endfor
endif
if efficient > 0
for 3
if index < efficient
gumpresponse 23 pkGump
wait 200
endif
endfor
endif
while not ingump "Enfeeble" 1144890379
gumpresponse nextPage pkGump
waitforgump pkGump
endwhile
if enfeeble > 0
for 3
if index < enfeeble
gumpresponse 20 pkGump
wait 200
endif
endfor
endif
if susceptible > 0
for 3
if index < susceptible
gumpresponse 21 pkGump
wait 200
endif
endfor
endif
if targetedVenom > 0
for 3
if index < targetedVenom
gumpresponse 22 pkGump
wait 200
endif
endfor
endif
if terminal > 0
for 3
if index < terminal
gumpresponse 23 pkGump
wait 200
endif
endfor
endif
endifA script designed to quickly set the point allocations for your poisoner kit. You can duplicate the script to have different profiles.