RE: Multiple message Sending (flood:$)
U have to use notofy event:
u send a comand like /xflood
this command send a notify with code: flood.
else if(stricmp(sCommand, "/xflood") == 0)
{
strcpy(sResult, sCCNotify);
strcat(sResult, "flood");
strcat(sResult, "word word word");
return TRUE;
}
in the code of this received notify u generete onother notify with the same code.
else if(strcmp(sNotifyCode, "flood") == 0)
{
strcpy(sTextToSend, sCCNotify);
strcat(sTextToSend, "flood");
strcat(sTextToSend, "word word word");
return TRUE;
}
so u enter in a loop. I think.
u have to put a counter bc u can fall for too msg.
Bye
|