28.08.2017, 10:20
(
Last edited by verlaj; 28/08/2017 at 11:29 AM.
)
send commands from discord to in-game, with or without strlib. (admin command based examples below)
note: make sure say[string] size equals the number of letters in command. for example, in //help cmd, `say` string size should be 5 (h e l p + 1) + add 2 extra heap size for "//". this makes it say[7];
When using strcmp, make sure the number of letter equals. e.g //asay = 6 letters to compare, any more will return you nothing.
non strlib example.
note: make sure say[string] size equals the number of letters in command. for example, in //help cmd, `say` string size should be 5 (h e l p + 1) + add 2 extra heap size for "//". this makes it say[7];
When using strcmp, make sure the number of letter equals. e.g //asay = 6 letters to compare, any more will return you nothing.
non strlib example.
PHP Code:
public DCC_OnChannelMessage(DCC_Channel:channel, const author[], const message[])
{
new channel_name[32];
DCC_GetChannelName(channel, channel_name);
if(!strcmp(channel_name, "staff", false, 5)
{
//discord commands
if(!strcmp(message, "//", false, 2))
{
if (_:g_WelcomeChannelId3 == 0)
g_WelcomeChannelId3 = DCC_FindChannelById("your channel");
DCC_SendChannelMessage(g_WelcomeChannelId3, "Use the following commands.");
DCC_SendChannelMessage(g_WelcomeChannelId3, "cmd: //asay //kick //warn //printids.");
return 1;
}
if(!strcmp(message, "//asay", false, 6))
{
new reason[128], say[7];
if(sscanf(message, "s[7]s[128]",say,reason)) return DCC_SendChannelMessage(g_WelcomeChannelId3, "Command error on sscanf.");
DCC_SendChannelMessage(g_WelcomeChannelId3, sprintf("(Admin Message)%s: %s",author,reason));
SendClientMessageToAll(COLOR_LIME, sprintf("(Admin Message)%s : %s",author,reason));
}
if(!strcmp(message, "//kick", false, 6))
{
new reason[128], id, say[7];
if(sscanf(message, "s[7]us[128]",say,id,reason)) return DCC_SendChannelMessage(g_WelcomeChannelId3, "Command error on sscanf.");
DCC_SendChannelMessage(g_WelcomeChannelId3, sprintf("Kicked %s(%d)",GetPlayerNameEx(id),id));
new kickfor[128];
format(kickfor,sizeof(kickfor),"%d %s",id,reason);
cmd_kick(65535,kickfor);
}
if(!strcmp(message, "//warn", false, 6))
{
new reason[128], id, say[7];
if(sscanf(message, "s[7]us[128]",say,id,reason)) return DCC_SendChannelMessage(g_WelcomeChannelId3, "Command error on sscanf.");
DCC_SendChannelMessage(g_WelcomeChannelId3, sprintf("Warned %s(%d)",GetPlayerNameEx(id),id));
new warnfor[128];
format(warnfor,sizeof(warnfor),"%d %s",id,reason);
cmd_warn(65535,warnfor);
}
if(!strcmp(message, "//printids", false, 11))
{
DCC_SendChannelMessage(g_WelcomeChannelId3, "Player List");
foreach(new i : Player)
{
DCC_SendChannelMessage(g_WelcomeChannelId3, sprintf("%s(%d)",GetPlayerNameEx(i),i));
}
}
}
return 1;
}