hi
i am trying to get load !raid raffle plugin..no success
werent there a post somwhere about !custom raffle that doesnt need mysql (unless it is ll_rollraffle)
im stuck at how do i configure or reconfigure db settings using the user/pass you created. u mean do u have to edit the plugin or, cuz i didnt find any files specific for raid config if similar to bot first time config?
i tried skipping connecting mysql with root and doing that user pass schema part but when clicking test connect in workbech it say not connected to mysql... has there been a newer version or redesign of oracle sql tool?
from observing plugin i can see there seems u need to edit something here but what exactly or it
isnt ment to be edited cuz it breaks plugin somehow? i dont understand sql much..
how does hostname or port need to be set? And i was thinking if i can set a bot somehow with config to add another user/bot that isnt a guildbot and does not require member access i mean a raidbot that can get any guest to join?
public override void OnLoad(BotShell bot)
{
this._bot = bot;
bot.Configuration.Register(ConfigType.String, this.InternalName, "user", "MySql User", "root");
bot.Configuration.Register(ConfigType.Password, this.InternalName, "password", "MySql Password", "");
bot.Configuration.Register(ConfigType.String, this.InternalName, "host", "MySql Host", "localhost");
bot.Configuration.Register(ConfigType.Integer, this.InternalName, "port", "MySql Port", 3306);
bot.Configuration.Register(ConfigType.String, this.InternalName, "database", "MySql Database", bot.Character.ToLower());
bot.Events.ConfigurationChangedEvent += new ConfigurationChangedHandler(Events_ConfigurationChangedEvent);
this.RebuildConnection(true);
}
u mind redoing this raid core load guide this time by adding some images that explains the details?