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:
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:






