Ir para conteúdo

Rust remover para TFS 1.0


nawyrus

Posts Recomendados

Encontrei esse script em algum site polonês. Removi os itens errados e algumas linhas, arrumei as rates de acordo com a wiki. Testado no TFS 1.0.

 

Um alerta: a chance da chain armor na common rusty armor na wiki é de 30,14%, aqui você vai ver 6966, que é resultante da maneira que o script está estruturado 6966=3014(rate real)+2450+1305+197(rates abaixo), scale armor 3952=2450+1305+197 e assim por diante.

function onUse(cid, item, frompos, item2, topos)
local effect_renew = 28
local effect_broke = 3
local storage = 0
local const = item2.itemid
local pos = getCreaturePosition(cid)
local itemy = {
[9808] = {
[1] = {id = 2464, name = "Chain Armor", chance = 6966},
[2] = {id = 2483, name = "Scale Armor", chance = 3952},
[3] = {id = 2465, name = "Brass Armor", chance = 1502},
[4] = {id = 2463, name = "Plate Armor", chance = 197}
},

[9809] = {
[1] = {id = 2483, name = "Scale Armor", chance = 6437},
[2] = {id = 2464, name = "Chain Armor", chance = 4606},
[3] = {id = 2465, name = "Brass Armor", chance = 3029},
[4] = {id = 2463, name = "Plate Armor", chance = 1559},
[5] = {id = 2476, name = "Knight Armor", chance = 595},
[6] = {id = 8891, name = "Paladin Armor", chance = 283},
[7] = {id = 2487, name = "Crown Armor", chance = 49}
},

[9810] = {
[1] = {id = 2465, name = "Brass Armor", chance = 6681},
[2] = {id = 2463, name = "Plate Armor", chance = 3767},
[3] = {id = 2476, name = "Knight Armor", chance = 1832},
[4] = {id = 2487, name = "Crown Armor", chance = 177},
[5] = {id = 8891, name = "Paladin Armor", chance = 31},
[6] = {id = 2466, name = "Golden Armor", chance = 10}
},

[9811] = {
[1] = {id = 2648, name = "Chain Legs", chance = 6949},
[2] = {id = 2468, name = "Studded Legs", chance = 3692},
[3] = {id = 2478, name = "Brass Legs", chance = 1307},
[4] = {id = 2647, name = "Plate Legs", chance = 133}
},

[9812] = {
[1] = {id = 2468, name = "Studded Legs", chance = 5962},
[2] = {id = 2648, name = "Chain Legs", chance = 4037},
[3] = {id = 2478, name = "Brass Legs", chance = 2174},
[4] = {id = 2647, name = "Plate Legs", chance = 1242},
[5] = {id = 2477, name = "Knight Legs", chance = 186},
},

[9813] = {
[1] = {id = 2478, name = "Brass Legs", chance = 6500},
[2] = {id = 2647, name = "Plate Legs", chance = 3800},
[3] = {id = 2477, name = "Knight Legs", chance = 200},
[4] = {id = 2488, name = "Crown Legs", chance = 52},
[5] = {id = 2470, name = "Golden Legs", chance = 30}
}
}

local random_item = math.random(10000)
if itemy[const] then
for i = 1, #itemy[const] do
if random_item <= itemy[const][i].chance then
storage = i
end
end

if storage > 0 then
doSendMagicEffect(topos, effect_renew)
doTransformItem(item2.uid, itemy[const][storage].id)
doCreatureSay(cid, "You have renewed the ".. itemy[const][storage].name .." !", TALKTYPE_ORANGE_1)
doRemoveItem(item.uid, 1)
else
doSendMagicEffect(topos, effect_broke)
doRemoveItem(item2.uid, 1)
doRemoveItem(item.uid, 1)
doCreatureSay(cid, "The armor was already damaged so badly that it broke when you tried to clean it.", TALKTYPE_ORANGE_1)
return 0
end
else
return 0
end
return true
end
<action itemid="9930" script="rustremover.lua"/>
Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...