DCC_OnGuildMemberAdd(DCC_Guild:guild, DCC_User:user)
Closed this issue · 0 comments
JackieGXMP commented
When a new member joins the discord server, or updated (changed nickname, new role, etc) and when they leave non of these functions are called. I'm confused and I'm unsure on how to debug this issue. DCC_OnMessageCreate(DCC_Message:message) works fine for me and I'm able to interact with discord in other ways without issue. This is the first time I've felt lost using this plugin. Is this a bug, an outdated function or am I misinterpreting the function? Please any feedback is much appreciated.
Thank you,
Jackie from GamerX.
public DCC_OnGuildMemberAdd(DCC_Guild:guild, DCC_User:user)
{
DCC_SendChannelMessage(dc_dcsystem, "test");
SendClientMessageToAll(CWHITE, "Test");
return 1;
}
public DCC_OnGuildMemberUpdate(DCC_Guild:guild, DCC_User:user)
{
DCC_SendChannelMessage(dc_dcsystem, "test update");
SendClientMessageToAll(CWHITE, "Test update");
return 1;
}
public DCC_OnGuildMemberRemove(DCC_Guild:guild, DCC_User:user)
{
DCC_SendChannelMessage(dc_dcsystem, "test remove");
SendClientMessageToAll(CWHITE, "Test remove");
return 1;
}