Hey guys,
What's the best way for me to create a ConditionParser? Should be something like this? Do I need to use XmlElement?
Thank you
What's the best way for me to create a ConditionParser? Should be something like this? Do I need to use XmlElement?
Thank you
Code:
namespace ff14bot.NeoProfiles
{
public class GetCount : ConditionParser
{
public static int GetCount(uint a)
{
if (MainFun.Counter.ContainsKey(a))
{
return MainFun.Counter[a];
}
return 0;
}
}
}