What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

[Updated every weekend] Buff name and id list

LordManzana

New Member
Joined
May 2, 2015
Messages
207
Reaction score
0
Hello!

Every weekend I'll update [Name, Id] buff list so, developers only need to enter here and search by english name to use the buff id and let plugins run in any region.
List [Updated 27/10/2015]
http://pastebin.com/aTuD0FZ3

Hope will help you :)

If you are interested, you can do it youself:
PHP:
using System;
using System.Drawing;
using System.Threading;
using System.Collections.Generic;
using System.Linq;
using ArcheBuddy.Bot.Classes;
using System.Media;

namespace BuffList4Free
{
    /*
     * That Plugin is being under the Creative Commons BY-NC-SA v4.0
     * More information about licence here: https://creativecommons.org/licenses/by-nc-sa/4.0/
     */
    public class BuffList4Free : Core
    {
        public static string GetPluginAuthor()
        {
            return "LordManzana";
        }

        public static string GetPluginVersion()
        {
            return "1.0.0.0";
        }

        public static string GetPluginDescription()
        {
            return "Awesome Buff list";
        }

        public void PluginStop()
        {
            Log("Awesome Buff list closed");
        }

        public void PluginRun()
        {
            foreach (var buff in sqlCore.sqlBuffs)
            {   
                if(!String.IsNullOrEmpty(buff.Value.name)){
                    Log(string.Format("[{0}, {1}]", buff.Value.name, buff.Value.id));
                } 
                Thread.Sleep(20);
            }
            
            Log("Ended");
        }
    }
}
 
Last edited:
Manzana,

This really doesn't need to be updated weekly only when new ones are added.

That Said, I/we all do appreciate it and awesome work and keep up the good work.
 
Yes, but... How you know if new buffs are added? I mean random mob skills and something like that... Just take 5 mins update so, I prefer check it weekly and don't lose any buff, just for better mob farming. Also, if I see any patch in middle week wich contains new skills, will update it in middle week :)
 
Back
Top