Inscription to 120 - no shelf/stock pile by SpicyShinigami
Related: Inscribe inscription
Description: I wrote this for the drow of Vile - an evil role play guild on Outlands. To make your crafting life easier, you can also purchase a resource shelf in game for 25 prev coins and use the in game interface.
This script will automatically craft the recommended scrolls or items based off your skill level. You need to provide your own pen/ink, blank scrolls, and cloth if over 100 skill and it will not restock for you. The only thing other you may have to adjust is the craft timer at the bottom once you have over 100 skill.
1# Created by House Arachne
2# Last Update: 9/11/2022
3# As a drow, your are attuned to
4# the demon realm outside Outlands
5# Thus you hear a Balor Lord
6# Prince Errtu
7# His demonic voice in your head
8# Drives you mad
9# You must transcribe his words
10# He demands more followers
11########################################################################
12######## REQUIREMENTS ##################################################
13## Pen and ink - 650 non exceptional or 435 exceptional ## ##
14## blank scrolls - ~65,000 to GM ##
15########################################################################
16########################################################################
17# CHECK MATERIALS
18## Pen and ink
19if skill inscription = 120
20 overhead 'The demon Lord is pleased with your accomplishments and rewards you with the knowledge to summon the most powerful of his followers' 33
21 say '*Loud wicked laughter*'
22 stop
23endif
24
25if not gumpexists 'any'
26overhead 'You hear a Balor Lord, Prince Errtu. His demonic voice in your head drives you mad.' 33
27overhead 'You must transcribe his words. He demands more followers' 33
28endif
29
30if counttype 'pen and ink' < 1
31 overhead 'You question your sanity as you run out of ink. You must find more' 45
32 stop
33endif
34## Blank scrolls
35if counttype 'blank scroll%s%' < 10
36 overhead 'It seems in your madness you ran out of scrolls'
37 stop
38endif
39# SKILL PROGRESS
40dclicktype "pen and ink" backpack
41### 50-60
42 if skill 'inscription' < 50
43 overhead 'The Balor Lord insists you seek out training from his followers, neophyte' 88
44 stop
45 elseif skill 'inscription' < 60
46 overhead 'Errtu demands: recall scrolls' 25
47 waitforgump
48 gumpresponse 108
49 waitforgump 949095101
50 gumpresponse 207
51 waitforgump 949095101
52 waitforgump 949095101
53### 60-70
54 elseif skill 'inscription' < 70
55 overhead 'Errtu demands: mindblast scrolls' 25
56 waitforgump
57 gumpresponse 109
58 waitforgump 949095101
59 gumpresponse 204
60 waitforgump 949095101
61 waitforgump 949095101
62### 70-80
63 elseif skill 'inscription' < 80
64 overhead 'Errtu demands: Energy Bolt scrolls' 25
65 waitforgump 949095101
66 gumpresponse 100
67 waitforgump 949095101
68 gumpresponse 9
69 waitforgump 949095101
70 gumpresponse 100
71 waitforgump 949095101
72 gumpresponse 201
73 waitforgump 949095101
74 waitforgump 949095101
75### 80-100
76 elseif skill 'inscription' < 100
77 overhead 'Errtu demands: Spellbooks' 25
78 waitforgump
79 gumpresponse 100
80 waitforgump 949095101
81 gumpresponse 200
82 waitforgump 949095101
83 waitforgump 949095101
84### 100-120
85 elseif skill 'inscription' < 120
86 if counttype 'cut cloth' < 5
87 overhead 'You must find more cloth' 88
88 stop
89 else
90 overhead 'Errtu demands: Wizard Hats' 25
91 waitforgump
92 gumpresponse 103
93 waitforgump 949095101
94 gumpresponse 200
95 waitforgump 949095101
96 waitforgump 949095101
97
98 endif
99 endif
100# Craft Timer - adjust this if you want to go faster or slower
101 wait 3300
102 if weight > maxweight
103 overhead 'You must archive your scrolls' 45
104 stop
105 endif
106
107loop