• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Lua Task Budrik and Lugri

viking

Member
Joined
Aug 20, 2015
Messages
323
Reaction score
22
My quest log update, Budrik give storage: 65049 and show "minotaurs 0/5000"

Lugri give storage: 65050 and show "necromancers 0/4000"


but when I kill monster dont count

Quests.xml
Code:
................

    <mission name="Paw and Fur: Minotaurs" storageid="65049" startvalue="0" endvalue="5000" description="You already hunted |STATE|/5000 minotaurs." />
        <mission name="Paw and Fur: Necromancers and Priestess" storageid="65050" startvalue="0" endvalue="4000" description="You already hunted |STATE|/4000 necromancers and priestess." />
        <mission name="Paw and Fur: Necromancers and Priestess Second" storageid="65050" startvalue="0" endvalue="1000" description="You already hunted |STATE|/1000 necromancers and priestess." />

..........

/lib/miscellaneous
killingInTheNameOfQuest.lua

http://pastebin.com/6NKepLcZ
 
You have an extra line with necromancers/priestess, first remove that one:
Code:
[49] = {killsRequired = 1000, name = "Necromancers and Priestess second task", raceName = "Necromancers and Priestess", level = {60, 9999}, storage = {12800, 1}, norepeatable = true, premium = true, creatures = {"necromancer", "priestess"}, rewards = {{type = "exp", value = {40000}},{type = "storage", value = {35033, 1}}}},

The storage for necromancers/priestess is 12800 and minotaurs got 12700 according to the script you linked, you need to edit your scripts so they use the same storage.
 
You have an extra line with necromancers/priestess, first remove that one:
Code:
[49] = {killsRequired = 1000, name = "Necromancers and Priestess second task", raceName = "Necromancers and Priestess", level = {60, 9999}, storage = {12800, 1}, norepeatable = true, premium = true, creatures = {"necromancer", "priestess"}, rewards = {{type = "exp", value = {40000}},{type = "storage", value = {35033, 1}}}},

The storage for necromancers/priestess is 12800 and minotaurs got 12700 according to the script you linked, you need to edit your scripts so they use the same storage.

Wrong. This 2nd line with necro its 2nd task dont remove this!

And if im correct the killstorage for mino and necro are: 60049, 60050
And the second script its basing on killstorage which is counting kills.

But i cant figure it out why in lib/storages there is necro = 50000
Necrocount = 50001
 
Last edited:
I could not figured out why not count the kills, I put npc to give storages: "60049, 60050=5000, 4000" if the player are level X+

that was my noob solution :/

thanks all for replys
 
Back
Top