[HELP] Errors
#1

How to fix this errors:

Command:
pawn Код:
if(strcmp(cmd, "/zakljucajserver", true) == 0)
    {
        if(PlayerInfo[playerid][pAdmin] >= 6 || IsPlayerAdmin(playerid))
        {
            if(ServerZakljucan == false)
            {
                tmp = strtok(cmdtext, idx);
                if(!strlen(tmp))
                {
                    SendClientMessage(playerid, COLOR_GRAD2, "Koristite: /zakljucajserver [Lozinka]");
                    return 1;
                }
                tmp = strtok(cmdtext, idx);
                ServerZakljucan = true;
------ERROR--->     LozinkaServera = tmp; <------------- ERROR LINE
                new pstr[64];
                format(pstr, sizeof pstr, "|NLG|: Server zakljucan! Lozinka: %s", LozinkaServera);
                SendClientMessage(playerid, COLOR_RED, pstr);
                SendAdminMessage(COLOR_ORANGE, "|NLG| Server zakljucan!");
// rest of cmd
Error:
Код:
error 006: must be assigned to an array



And:
Somewhere in OnDialogResponse:
pawn Код:
if(!strcmp(inputtext, LozinkaServera, false))
Код:
error 035: argument type mismatch (argument 2)
I have global variable "LozinkaServera" ://
Reply
#2

for the first:

pawn Код:
LozinkaServera = strval(tmp);
For the second I dont know. Simply hate strcmp =x;
Reply
#3

Thanks.
How to compare 2 strings without strcmp? O.o
Reply
#4

Your variable, LozinkaServera, is that a string?
Reply
#5

Hmm.. I don't know
It's command for server locking, server password is stored in LozinkaServera.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)