Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

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