Deepling
Just a spammer
Hello
As title say, I cant load task script (created by Limos)
Client Version 10.82 TFS 1.2
Could someone help me to fix this issue?
Thanks
As title say, I cant load task script (created by Limos)
Client Version 10.82 TFS 1.2
Code:
local config = {
['rotworm'] = {amount = 100, storage = 19000, startstorage = 5010, startvalue = 1}
}
function onKill(player, target)
local monster = config[target:getName():lower()]
if target:isPlayer() or not monster or target:getMaster() then
return true
end
local stor = player:getStorageValue(monster.storage)+1
if stor < monster.amount and player:getStorageValue(monster.startstorage) >= monster.startvalue then
player:setStorageValue(monster.storage, stor)
player:sendTextMessage(MESSAGE_STATUS_CONSOLE_ORANGE, 'Task message: '..(stor +1)..' of '..monster.amount..' '..target:getName()..'s killed.')
end
if (stor +1) == monster.amount then
player:sendTextMessage(MESSAGE_INFO_DESCR, 'Congratulations, you have killed '..(stor +1)..' '..target:getName()..'s and completed the '..target:getName()..'s mission.')
player:setStorageValue(monster.storage, stor +1)
end
return true
end
Could someone help me to fix this issue?
Thanks