Killzon32
There killing our dudes.
Like !spells
But shows all monsters that can be summoned and shows how much mana is required.
But shows all monsters that can be summoned and shows how much mana is required.
function onSay(cid, words, param, channel)
local t = { 'Monster','Monster2','Monster3' }
for _,v in pairs(t) do doShowTextDialog(cid, 2175, v) end
end
function onSay(cid, words, param, channel)
t = { 'Rat\n\nBug\n\nWolf\n\nCave Rat\n\nBear\n\nFire Elemental'}
for _,v in pairs(t) do doShowTextDialog(cid, 2175, v) end
end
function onSay(cid, words, param, channel)
t = { '(1) Categories: Rats, insects\n\nSummonable Rats:\nRat\nCave Rat\n\nSummonable Insects: Bug\nScarab\nWasp\n\n(2) Categories: Bears, Minotaurs\n\nSummonable Bears:\nBear\nPolar Bear\n\nSummonable Minotaurs:\nMinotaur\nMinotaur Guard\nMinotaur Mage\nMinotaur Archer'}
for _,v in pairs(t) do doShowTextDialog(cid, 2175, v) end
end