We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to detect IRC_IsVoice in IRC_OnUserSay callback, but it won't work. I'm just able to detect IRC_IsVoice in IRC commands...
IRC_IsVoice
IRC_OnUserSay
Here is my PAWN code:
public IRC_OnUserSay(botid, recipient[], user[], host[], message[]) { if (IRC_IsVoice(botid, "#CHANNELNAME", user)) { new string[MAX_STRING]; format(string, sizeof string, "[IRC] %s: %s", user, message); SendClientMessageToAll(COLOR_WHITE, string); } return 1; }
SA-MP: 0.3.7 IRC plugin: 1.4.8 PAWN: 3 OS: Windows 7 32bit Hardware: x64 IRC network: Freenode
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm trying to detect
IRC_IsVoice
inIRC_OnUserSay
callback, but it won't work.I'm just able to detect
IRC_IsVoice
in IRC commands...Here is my PAWN code:
SA-MP: 0.3.7
IRC plugin: 1.4.8
PAWN: 3
OS: Windows 7 32bit
Hardware: x64
IRC network: Freenode
The text was updated successfully, but these errors were encountered: