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!

NPC Starter problem

Newbie Spellweaver
Joined
Jan 18, 2020
Messages
21
Reaction score
0
my problem is Each time I close the game and open i can get exp and items from Starter i want to fix this bug

any one can help ?

btw i use

Engine 2016 Repack
 
Joined
Oct 10, 2012
Messages
798
Reaction score
292
Where can I find this query? I did search but resaults is ZERO

;================================================================== Starter NPC ==================================================================
(quest (index 900 1)
(case (if (quest 900 1)) (then (html 500007)))
(case (then (link 901 1))))

(quest (index 901 1)
(case (if (class 0))
(then (link 903 1)));knight
(case (if (class 2))
(then (link 904 1)));archer
(case (if (class 1))
(then (link 905 1)));Mage
(case (if (class 3))
(then (link 906 1)));Thief
(case (if (class 4))
(then (link 907 1)));Shaman
(case (if (class 5))
(then (link 908 1)));Trickster
)
;Knight
(quest (index 903 1)
(case (if (level 1))
(then (contribute 30) (supoint 25)(exp 1800)(item (out 1 1)(in 30 0 1)(in 2221 256 1)(in 769 256 1)(in 117 256 1)(in 118 256 1)(in 119 256 1)(in 120 256 1)(in 121 256 1)(in 447 256 10)(in 2055 256 1500)(in 1319 256 500)(in 469 256 1)(in 473 256 1)(in 196 0 25)(in 3400 256 1)(in 4400 256 1)(in 4500 256 1)(in 6045 256 1)(in 8004 256 1)(in 1042 0 10000))(clear 900 1)))
(case (then (html 500007)))
)
;Archer
(quest (index 904 1)
(case (if (level 1))
(then (contribute 30) (supoint 25)(exp 1800)(item (out 22 1)(in 2221 256 1)(in 770 256 1)(in 122 256 1)(in 123 256 1)(in 124 256 1)(in 125 256 1)(in 126 256 1)(in 447 256 10)(in 2055 256 1500)(in 1319 256 500)(in 469 256 1)(in 473 256 1)(in 196 0 25)(in 3400 256 1)(in 4400 256 1)(in 4500 256 1)(in 6047 256 1)(in 8004 256 1)(in 1042 0 10000))(clear 900 1)))
(case (then (html 500007)))
)
;Mage
(quest (index 905 1)
(case (if (level 1))
(then (contribute 30) (supoint 25)(exp 1800)(item (out 90 1)(in 2221 256 1)(in 771 256 1)(in 127 256 1)(in 128 256 1)(in 129 256 1)(in 130 256 1)(in 131 256 1)(in 447 256 10)(in 2055 256 1500)(in 1319 256 500)(in 469 256 1)(in 473 256 1)(in 196 0 25)(in 3400 256 1)(in 4400 256 1)(in 4500 256 1)(in 6046 256 1)(in 8004 256 1)(in 1042 0 10000))(clear 900 1)))
(case (then (html 500007)))
)
;Thief
(quest (index 906 1)
(case (if (level 1))
(then (contribute 30) (supoint 25)(exp 1800)(item (out 1404 1)(in 2221 256 1)(in 1433 256 1)(in 1570 256 1)(in 1571 256 1)(in 1572 256 1)(in 1573 256 1)(in 1574 256 1)(in 447 256 10)(in 2055 256 1500)(in 1319 256 500)(in 469 256 1)(in 473 256 1)(in 196 0 25)(in 3400 256 1)(in 4400 256 1)(in 4500 256 1)(in 6048 256 1)(in 8004 256 1)(in 1042 0 10000))(clear 900 1)))
(case (then (html 500007)))
)
;Shaman
(quest (index 907 1)
(case (if (level 1))
(then (contribute 30) (supoint 25)(exp 1800)(item (out 7200 1)(in 2221 256 1)(in 7210 256 1)(in 7321 256 1)(in 7320 256 1)(in 7322 256 1)(in 7323 256 1)(in 7324 256 1)(in 447 256 10)(in 2055 256 1500)(in 1319 256 500)(in 469 256 1)(in 473 256 1)(in 196 0 25)(in 3400 256 1)(in 4400 256 1)(in 4500 256 1)(in 6050 256 1)(in 8004 256 1)(in 1042 0 10000))(clear 900 1)))
(case (then (html 500007)))
)
;Trickster
(quest (index 908 1)
(case (if (level 60))
(then (contribute 30) (supoint 25)(item (out 8135 1)(in 2225 256 1)(in 8136 256 1)(in 9500 256 1)(in 9501 256 1)(in 9502 256 1)(in 9503 256 1)(in 9504 256 1)(in 9199 256 1)(in 447 256 10)(in 2055 256 1500)(in 1319 256 500)(in 469 256 1)(in 473 256 1)(in 196 0 25)(in 3400 256 1)(in 4400 256 1)(in 4500 256 1)(in 6049 256 1)(in 8004 256 1)(in 1042 0 10000))(clear 900 1)))
(case (then (html 500007)))
)
edit exp/items set npc to read from quest and it should just work
 
Upvote 0
Back
Top