mirror of
https://github.com/opentibiabr/canary
synced 2026-08-16 06:26:09 -04:00
41 lines
1.4 KiB
Lua
41 lines
1.4 KiB
Lua
local config = {
|
|
[23538] = { name = "vortexion", mountId = 94, tameMessage = "You receive the permission to ride a sparkion." },
|
|
[23684] = { name = "neon sparkid", mountId = 98, tameMessage = "You receive the permission to ride a neon sparkid." },
|
|
[23685] = { name = "vortexion", mountId = 99, tameMessage = "You receive the permission to ride a vortexion." },
|
|
[32629] = { name = "haze", mountId = 162, achievement = "Nothing but Hot Air", tameMessage = "You are now versed to ride the haze!" },
|
|
[50064] = { name = "primal demonosaur", mountId = 232, tameMessage = "Bound by ancient magic, the primal demonic beast bows to the will of the boxes owner ... for now." },
|
|
}
|
|
|
|
local usableItemMounts = Action()
|
|
|
|
function usableItemMounts.onUse(player, item, fromPosition, target, toPosition, isHotkey)
|
|
if not player:isPremium() then
|
|
player:sendCancelMessage(RETURNVALUE_YOUNEEDPREMIUMACCOUNT)
|
|
return true
|
|
end
|
|
|
|
local useItem = config[item.itemid]
|
|
if player:hasMount(useItem.mountId) then
|
|
return false
|
|
end
|
|
|
|
if useItem.achievement then
|
|
player:addAchievement(useItem.achievement)
|
|
end
|
|
|
|
if table.contains({ 23538, 23684, 23685 }, item.itemid) then
|
|
player:addAchievementProgress("Vortex Tamer", 3)
|
|
end
|
|
|
|
player:addMount(useItem.mountId)
|
|
player:addAchievement("Natural Born Cowboy")
|
|
player:say(useItem.tameMessage, TALKTYPE_MONSTER_SAY)
|
|
item:remove(1)
|
|
return true
|
|
end
|
|
|
|
for k, v in pairs(config) do
|
|
usableItemMounts:id(k)
|
|
end
|
|
|
|
usableItemMounts:register()
|