Skip to content

Commit 4005d7c

Browse files
dylansmurphyEllie
authored and
Ellie
committed
AIOQuester addition (2 quests)
1 parent 0589400 commit 4005d7c

File tree

10 files changed

+2326
-47
lines changed

10 files changed

+2326
-47
lines changed

app/src/main/java/scripting/idlescript/AIOQuester/models/Quest.java

+29-29
Original file line numberDiff line numberDiff line change
@@ -85,16 +85,16 @@ public enum Quest {
8585
QuestId.THE_RESTLESS_GHOST.getId(),
8686
false,
8787
"A ghost is haunting Lumbridge graveyard. The priest of the Lumbridge church of Saradomin wants you to find out how to get rid of it.",
88-
-1,
89-
null,
88+
4,
89+
Location.LUMBRIDGE_CHURCH,
9090
null,
9191
null,
9292
null,
9393
null,
9494
null,
95-
-1,
9695
0,
97-
null)),
96+
0,
97+
TheRestlessGhost.class)),
9898
GOBLIN_DIPLOMACY(
9999
new QuestDef(
100100
"Goblin Diplomacy",
@@ -117,32 +117,32 @@ public enum Quest {
117117
QuestId.ERNEST_THE_CHICKEN.getId(),
118118
false,
119119
"Veronica is very worried. Her fiancee went into the big spooky manor house to ask for directions. An hour later and he's still not out yet.",
120-
-1,
121-
null,
120+
2,
121+
Location.DRAYNOR_BANK,
122122
null,
123123
null,
124124
null,
125125
null,
126126
null,
127-
-1,
128127
0,
129-
null)),
128+
0,
129+
ErnestTheChicken.class)),
130130
IMP_CATCHER(
131131
new QuestDef(
132132
"Imp Catcher",
133133
QuestId.IMP_CATCHER.getId(),
134134
false,
135135
"The Wizard Grayzag has summoned hundreds of little imps. They have stolen a lot of things belonging to the Wizard Mizgog including his magic beads.",
136-
-1,
137-
null,
136+
2,
137+
Location.FALADOR_WEST_BANK,
138138
null,
139139
null,
140140
null,
141141
null,
142142
null,
143-
-1,
144143
0,
145-
null)),
144+
0,
145+
ImpCatcher.class)),
146146
PIRATES_TREASURE(
147147
new QuestDef(
148148
"Pirate's Treasure",
@@ -165,32 +165,32 @@ public enum Quest {
165165
QuestId.PRINCE_ALI_RESCUE.getId(),
166166
false,
167167
"Prince Ali of Al Kharid has been kidnapped by the scheming Lady Keli. You are hired to stage a rescue mission.",
168-
-1,
169-
null,
168+
2,
169+
Location.AL_KHARID_BORDER_GATE,
170170
null,
171171
null,
172172
null,
173173
null,
174174
null,
175-
-1,
176175
0,
177-
null)),
176+
0,
177+
PrinceAliRescue.class)),
178178
ROMEO_AND_JULIET(
179179
new QuestDef(
180180
"Romeo and Juliet",
181181
QuestId.ROMEO_AND_JULIET.getId(),
182182
false,
183183
"Romeo & Juliet are desperately in love, but Juliet's father doesn't approve. Help them to find a way to get married and live happily ever after.",
184-
-1,
185-
null,
184+
7,
185+
Location.VARROCK_MARKET_SQUARE,
186186
null,
187187
null,
188188
null,
189189
null,
190190
null,
191-
-1,
192191
0,
193-
null)),
192+
0,
193+
RomeoAndJuliet.class)),
194194
SHEEP_SHEARER(
195195
new QuestDef(
196196
"Sheep Shearer",
@@ -244,33 +244,33 @@ public enum Quest {
244244
"Vampire Slayer",
245245
QuestId.VAMPIRE_SLAYER.getId(),
246246
false,
247-
"The people of Draynor village live in constant terror. Their numbers are dwindling, all due to the foul creature lurking in the manor to the north known as a vampire.",
248-
-1,
249-
null,
247+
"The people of Draynor village live in constant terror. Their numbers are dwindling, all due to the foul creature lurking in the manor to the north known as a vampire. NOTE: Character must be able to kill a level 43 combat monster without eating.",
248+
3,
249+
Location.DRAYNOR_MORGANS_HOUSE,
250250
null,
251251
null,
252252
null,
253253
null,
254254
null,
255-
-1,
256255
0,
257-
null)),
256+
0,
257+
VampireSlayer.class)),
258258
WITCHS_POTION(
259259
new QuestDef(
260260
"Witch's Potion",
261261
QuestId.WITCHS_POTION.getId(),
262262
false,
263263
"Become one with your darker side. Tap into your hidden depths of magical potential by making a potion with the help of Hetty the Rimmington witch.",
264-
-1,
265-
null,
264+
2,
265+
Location.RIMMINGTON_HETTYS_HOUSE,
266266
null,
267267
null,
268268
null,
269269
null,
270270
null,
271-
-1,
272271
0,
273-
null)),
272+
0,
273+
WitchsPotion.class)),
274274
DRAGON_SLAYER(
275275
new QuestDef(
276276
"Dragon Slayer",

0 commit comments

Comments
 (0)