Advertisement
Cavitt

Rune Maker

Apr 27th, 2012
2,069
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.50 KB | None | 0 0
  1. --[[ CONFIG ]]--
  2. local blankID = 3147
  3.  
  4. local runeInfo = {
  5.     ["name"] = "Sudden Death",
  6.     ["words"] = "adori gran mort",
  7.     ["mana"] = 985,
  8.     ["soul"] = 5
  9. }
  10.  
  11. --[[ CODE ]]--
  12. displayInformationMessage("Runemaker v1.00 by Spectrus\nMaking "..runeInfo.name.." runes.")
  13. while (1) do
  14.     if (Self.ItemCount(blankID) == 0) then --At the moment theres no way to get soul?
  15.         break
  16.     elseif (Self.Mana() > runeInfo.mana) then
  17.         Self.Say(runeInfo.words)
  18.     end
  19.     wait(1200,2700)
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement