Hi
Ich Will eine Variable im SendRconCommand("/rcon login "); übergeben, wie mache ich das?
Der Befehls sieht so aus.
if(strcmp(cmd, "/login", true) == 0)
{
new pw;
new tmp[256];
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_WHITE, "USAGE: /login [pw]");
return 1;
}
pw = strval(tmp);
SendRconCommand("/rcon login pw");
return 1;
}
Als Warning kommt:
Wie kann ich das machen?