Extrodus
|| Blazera.net ||
Hey there guys, I'm trying to figure out why this script isn't delivering rewards and when using "prints" to debug it only goes to check 2 then stops.
Engine: TFS 1.5
Engine: TFS 1.5
LUA:
local rewards = {
SORCERER = {
[35] = {items = {
[1] = {itemid = 2187, count = 1}, -- wand of inferno
[2] = {itemid = 8900, count = 1} -- spellbook of enlightenment
}, storage = 39002},
[100] = {items = {
[1] = {itemid = 1111, count = 1},
[2] = {itemid = 1111, count = 1}
}, storage = 40001},
},
DRUID = {
[35] = {items = {
[1] = {itemid = 2183, count = 1}, -- hailstorm rod
[2] = {itemid = 8900, count = 1} -- spellbook of enlightenment
}, storage = 39003},
[100] = {items = {
[1] = {itemid = 1111, count = 1},
[2] = {itemid = 1111, count = 1}
}, storage = 40003},
},
PALADIN = {
[35] = {items = {
[1] = {itemid = 7367, count = 1}, -- enchanted spear
[2] = {itemid = 2528, count = 1} -- tower shield
}, storage = 39004},
[100] = {items = {
[1] = {itemid = 1111, count = 1},
[2] = {itemid = 1111, count = 1}
}, storage = 40005},
},
KNIGHT = {
[35] = {items = {
[1] = {itemid = 2160, count = 2}, -- 2x crystal coin
[2] = {itemid = 2528, count = 1} -- tower shield
}, storage = 39005},
[100] = {items = {
[1] = {itemid = 1111, count = 1},
[2] = {itemid = 1111, count = 1}
}, storage = 40007},
}
}
local sorc = {1, 5, 9}
local druid = {2, 6, 10}
local paladin = {3, 7, 11}
local knight = {4, 8, 12}
local magicEffect_reward = 14
function onAdvance(player, skill, oldlevel, newlevel)
print("1")
if skill >= SKILL_LEVEL then
print("2")
return true
end
if isInArray(sorc, player:getVocation():getId()) then
VOC = rewards.SORC
print("3")
elseif isInArray(druid, player:getVocation():getId()) then
VOC = rewards.DRUID
print("3")
elseif isInArray(paladin, player:getVocation():getId()) then
VOC = rewards.PALADIN
print("3")
elseif isInArray(knight, player:getVocation():getId()) then
VOC = rewards.KNIGHT
print("3")
end
if not VOC then
print("4")
return true
end
REWARD = VOC[newlevel]
if not REWARD then
print("5")
return true
end
if player:getStorageValue(REWARD.storage) == -1 then
print("6")
for i = 1, #REWARD.items do
player:addItem(REWARD.items[i].itemid, rewards.items[i].count)
end
player:setStorageValue(REWARD.items[i].storage, 1)
player:sendTextMessage(MESSAGE_STATUS_CONSOLE_ORANGE, "Congratulations, you have reached level "..player:getLevel().." and received your rewards.")
player:getPosition():sendMagicEffect(magicEffect_reward)
end
return true
end