Thursday, September 28, 2023
LuminariMUD is a unique MUD using Pathfinder/D20 rules and set in a fantasy world of heroes, villains and a world facing a threat that may destroy them all. The game is in an open state, but with plenty of development and world-refinement happening to improve and polish our game. With plenty of lore, and a world map of over 4 million rooms, there's a lot to explore and discover. We cater to PvE lovers and RP, with some PvP goodies coming down the pipe. Our crafting system is deep and allows for unique descriptions and stats you can decide on yourself. We have a GUI for Mudlet and also play well in other MUD clients. We highly encourage those who want to try us out to join our discord server as well. We hope to see you in game!

Alchemist Imbibe Alias for Mudlet

Home Forums MUD Clients Alchemist Imbibe Alias for Mudlet

Viewing 0 reply threads
  • Author
    Posts
    • #2938
      mosheh
      Keymaster
      
      Submitted by Cheeky:
      
      cmdText = "imbibe"
      buffArr = {
        "cunning", "endurance", "grace", "shield", "blur"
      }
      
      -----------------
      -- do not edit --
      -----------------
      
      function cycleBuffs()
        if buffNum < table.maxn(buffArr) then
          tempTimer(6, [[send(cmdText .. " '" .. buffArr[buffNum] .. "'");cycleBuffs()]])
          buffNum = buffNum + 1
        else
          buffNum = 1
          isBuffing = false
          echo "--- BUFFING FINISHING ---"
        end
      end
      
      if isBuffing == null then
        isBuffing = false
      end
      
      if isBuffing == false then
        echo "--- STARTING BUFFS ---"
        buffNum = 1
        isBuffing = true
        send(cmdText .. " '" .. buffArr[buffNum] .. "'")
        cycleBuffs()
      else
        echo "You are already buffing."
      end
      
      • This topic was modified 3 years, 5 months ago by mosheh.
Viewing 0 reply threads
  • You must be logged in to reply to this topic.