Enchanted Spear Maker! 100% Working
Enchanted Spear Maker! 100% Working
init start
--# Item config
local defaultWeapon_ID = 3277 -- Spear
local spear_ID = 3277 -- Spear
local enchantedSpear_ID = 7367 -- Enchanted Spear
--# Config da magia
local manaToEnchant = 350
local spellWords = "exeta con"
init end
auto(1000, 1500)
--# Caso tenha mana & spears
if (($mp >= manaToEnchant) and (itemcount(spear_ID) >= 1)) then
--# Not wielding a spear?
if ($rhand.id ~= spear_ID) then
moveitems($rhand.id, '', 'rhand')
wait(600,900)
equipitem(spear_ID, 'rhand')
wait(600,900)
end
--# Fazendo a spear
cast(spellWords) wait(1500, 2000)
--# Usando arma errada?
if ($rhand.id ~= defaultWeapon_ID) then
moveitems($rhand.id, '', 'rhand')
wait(600,900)
equipitem(defaultWeapon_ID, 'rhand')
wait(600,900)
end
end
Nenhum comentário:
Postar um comentário