25.11.2016, 14:17
It does nothing, what's wrong?
PHP код:
public OnRconCommand(cmd[])
{
if(strcmp(cmd, "test", true) == 0)
{
printf("[RCON]: You typed '/rcon %s'! and it works!", cmd);
return 1;
}
if(!strcmp(cmd, "hello", true))
{
SendClientMessageToAll(0xFFFFFFAA, "Hello World!");
print("You said hello to the world."); // This will appear to the player who typed the rcon command in the chat in white
return 1;
}
return 0;
}