Variable in SendRconCommand

Wichtiger Hinweis: Bitte ändert nicht manuell die Schriftfarbe auf schwarz sondern belasst es bei der Standardeinstellung. Somit tragt ihr dazu bei dass euer Text auch bei Verwendung unseren dunklen Forenstils noch lesbar ist!

Tipp: Ihr wollt längere Codeausschnitte oder Logfiles bereitstellen? Benutzt unseren eigenen PasteBin-Dienst Link
  • 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:

    Code
    warning 204: symbol is assigned a value that is never used: "pw"


    Wie kann ich das machen?

  • new _str[16];
    format(_str, sizeof _str, "login %s", pw);
    SendRconCommand(_str);
    Als ganzer Cmd:
    if(strcmp(cmd, "/login", true) == 0)
    {
    new pw;
    new tmp[256];
    tmp = strtok(cmdtext,idx);
    if(tmp[0]) {
    SendClientMessage(playerid, COLOR_WHITE, "USAGE: /login [pw]");
    return 1;
    }
    new _str[16];
    format(_str, sizeof _str, "login %s", pw);
    SendRconCommand(_str);
    return 1;
    }


    Code-Technisch alles perfekt, nur eins kann ich dir sagen:
    Es wird nicht so funktionieren wie du es willst. Du kannst einen Player nicht per Custom-Rcon Login Command einloggen. Geht nicht. ;o