Laszl0w
Well-Known Member
- Oct 10, 2015
- 217
- 149
- 143
Code:
void ts3plugin_onClientMoveEvent(uint64 serverConnectionHandlerID, anyID clientID, uint64 oldChannelID, uint64 newChannelID, int visibility, const char* moveMessage)
{
anyID myID;
ts3Functions.getClientID(serverConnectionHandlerID, &myID);
if(clientID==myID)
{
ts3Functions.requestSendChannelTextMsg(serverConnectionHandlerID,"Im using AvRape Remaked from R4P3.NET",newChannelID, NULL);//This is only when you joining any channel.
}
//This is when any other client switching between channels.
}