Back to "points" tags

Poisoner Kit Profile Setter by itzrobd

Description: A script designed to quickly set the point allocations for your poisoner kit. You can duplicate the script to have different profiles.

1# Poisoner Kit Profile
2# Author: ItzRobD
3# Set your desired skill points for the Poisoner's Kit
4# There is no check if the number of points exceeds your max
5# You should only need to change the skill amounts
6
7@setvar! accumulation 0
8@setvar! airborne 0
9@setvar! directDose 0
10@setvar! efficient 0
11@setvar! enfeeble 0
12@setvar! susceptible 0
13@setvar! targetedVenom 0
14@setvar! terminal 0
15
16############################################
17## You should not have to edit below this ##
18############################################
19
20@setvar! pkGump 1144890379
21@setvar! prevPage 2
22@setvar! nextPage 3
23@setvar! resetButton 4
24
25if findtype "full vials" backpack as pk
26    dclick pk
27    waitforgump pkGump
28    
29    while not ingump "Airborne" 1144890379
30        gumpresponse prevPage pkGump
31        waitforgump pkGump
32    endwhile
33    
34    for 3 
35        gumpresponse resetButton pkGump
36        waitforgump pkGump
37    endfor
38    
39    if accumulation > 0
40        for 3
41            if index < accumulation
42                gumpresponse 20 pkGump
43                wait 200
44            endif
45        endfor
46    endif
47    if airborne > 0
48        for 3
49            if index < airborne
50                gumpresponse 21 pkGump
51                wait 200
52            endif
53        endfor
54    endif
55    if directDose > 0
56        for 3
57            if index < directDose
58                gumpresponse 22 pkGump
59                wait 200
60            endif
61        endfor
62    endif
63    if efficient > 0
64        for 3
65            if index < efficient
66                gumpresponse 23 pkGump
67                wait 200
68            endif
69        endfor
70    endif
71    
72    while not ingump "Enfeeble" 1144890379
73        gumpresponse nextPage pkGump
74        waitforgump pkGump
75    endwhile
76    
77    if enfeeble > 0
78        for 3
79            if index < enfeeble
80                gumpresponse 20 pkGump
81                wait 200
82            endif
83        endfor
84    endif
85    if susceptible > 0
86        for 3
87            if index < susceptible
88            gumpresponse 21 pkGump
89                wait 200
90            endif
91        endfor
92    endif
93    if targetedVenom > 0
94        for 3
95            if index < targetedVenom
96                gumpresponse 22 pkGump
97                wait 200
98            endif
99        endfor
100    endif
101    if terminal > 0
102        for 3
103            if index < terminal
104                gumpresponse 23 pkGump
105                wait 200
106            endif
107        endfor
108    endif
109endif