• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

Checkout Index with Prefix via Quest.txt?

Newbie Spellweaver
Joined
Mar 17, 2007
Messages
74
Reaction score
0
Hey guys,

is it possible to checkout an item with a specific prefix?
something like this:
Code:
(quest 
(index 403 15)
(case (if (item (800 1 92) )) (then (item (out 800 1 92) (in 801 92 1)) (html 0)))
(case (then (html 100042)))
)
I tryed it but the quests accepts every item with the index 800, doesnt matter if the prefix is 0 or 92 or anything else =/

Any solutions?

Thanks!
 
Skilled Illusionist
Joined
Feb 1, 2013
Messages
323
Reaction score
52
Hey guys,

is it possible to checkout an item with a specific prefix?
something like this:
Code:
(quest 
(index 403 15)
(case (if (item (800 1 92) )) (then (item (out 800 1 92) (in 801 92 1)) (html 0)))
(case (then (html 100042)))
)
I tryed it but the quests accepts every item with the index 800, doesnt matter if the prefix is 0 or 92 or anything else =/

Any solutions?

Thanks!
well i don't know if its goes working but its should be item index prefix amount
you make it item index amount prefix...
 
Upvote 0
Newbie Spellweaver
Joined
Mar 17, 2007
Messages
74
Reaction score
0
I tried it. I changed order of item prefix amout, but now the html 100042 appears.
Code:
(quest 
(index 403 15)
(case (if (item (800 92 1) )) (then (item (out 800 92 1) (in 801 92 1)) (html 0)))
(case (then (html 100042)))
)
 
Upvote 0
Back
Top