SA-MP Forums Archive
[HELP]Adding cmds from a another Admin FS. - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: [HELP]Adding cmds from a another Admin FS. (/showthread.php?tid=190257)

Pages: 1 2


AW: [HELP]Adding cmds from a another Admin FS. - [SU]Balli - 19.11.2010

bump
8char


Re: [HELP]Adding cmds from a another Admin FS. - Tekto - 19.11.2010

SeifAdmin = Strtok Cmd
LAdmin = Dcmd.

You need to change these cmds to Dcmd.


Re: [HELP]Adding cmds from a another Admin FS. - [SU]Balli - 20.11.2010

Uh, is that really neccasary?

Since Ladmin has strcmp cmds too.( But it were just a few like rcon cmds) ? o.O k gonna try it.. but im goin
to fail


AW: [HELP]Adding cmds from a another Admin FS. - [SU]Balli - 22.11.2010

Problem still not solved D=


Re: [HELP]Adding cmds from a another Admin FS. - Ricardo187 - 22.11.2010

Hi, To help you, we need to see the code... Copy and past here the whole command code.... Mybe it is a " {} " problem or some think you didn't do.... We need the pwno code to can help you... Like someone said before it should be:
PHP код:
[PAWN]The Script Lines[/PAWN
It will be like this:
pawn Код:
The Script Lines



AW: [HELP]Adding cmds from a another Admin FS. - [SU]Balli - 22.11.2010

pawn Код:
if(strcmp(cmd, "/setname", true) == 0)
{
new newname[128];
if (PlayerInfo[playerid][Level] >= 1 || IsPlayerAdmin(playerid))
    {
    tmp = strtok(cmdtext, idx);
        if(!strlen(tmp))
        {
            SendClientMessage(playerid, ORANGE, "USAGE: /setname [playerid] [newname]");
            SendClientMessage(playerid, ORANGE, "FUNCTION: Will change the player's current name. ");
            return 1;
        }

        giveplayerid = ReturnUser(tmp);
        if(giveplayerid != INVALID_PLAYER_ID)
        {
            GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
            GetPlayerName(playerid, sendername, sizeof(sendername));
            new length = strlen(cmdtext);
            while ((idx < length) && (cmdtext[idx] <= ' '))
            {
                idx++;
            }
            new offset = idx;
            while ((idx < length) && ((idx - offset) < (sizeof(newname) - 1)))
            {
                newname[idx - offset] = cmdtext[idx];
                idx++;
            }
            newname[idx - offset] = EOS;
            if(!strlen(newname))
                {
                    SendClientMessage(playerid, ORANGE, "USAGE: /setname [playerid] [newname]");
                    return 1;
                }
            else
            {
            printf("[ADMIN NEWS]: Admin %s renamed %s.", sendername, giveplayer);
            format(string, sizeof(string), "-| Administrator %s renamed %s. [New Name: %s ] |-", sendername,giveplayer,newname);
            SendClientMessageToAdmins(ADMIN_RED, string,1);
            SetPlayerName(giveplayerid, newname);
            }
        }

        else if(giveplayerid == INVALID_PLAYER_ID)
        {
            format(string, sizeof(string), "%d is not an active player.", giveplayerid);
            SendClientMessage(playerid, RED, string);
        }
    }
    else
    {
    SendClientMessage(playerid, RED, "You are not an admin with the required level.");
    }
    return 1;
}



Re: [HELP]Adding cmds from a another Admin FS. - Ricardo187 - 22.11.2010

Try this one but, you are making this in what FS? If you send me the FS it is easly coz i can test.... In my pawno it compile without any error or warn...

pawn Код:
if(strcmp(cmd, "/setname", true) == 0)
}
new newname[128];
if (PlayerInfo[playerid][Level] >= 1 || IsPlayerAdmin(playerid))
}
    tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
}
    SendClientMessage(playerid, ORANGE, "USAGE: /setname [playerid] [newname]");
    SendClientMessage(playerid, ORANGE, "FUNCTION: Will change the player's current name. ");
    return 1;
}
    giveplayerid = ReturnUser(tmp);
if(giveplayerid != INVALID_PLAYER_ID)
}
    GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
    GetPlayerName(playerid, sendername, sizeof(sendername));
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' '))
}
       idx++;
}
new offset = idx;
while ((idx < length) && ((idx - offset) < (sizeof(newname) - 1)))
       newname[idx - offset] = cmdtext[idx];
       idx++;
}
       newname[idx - offset] = EOS;
if(!strlen(newname))
}
     SendClientMessage(playerid, ORANGE, "USAGE: /setname [playerid] [newname]");
     return 1;
}
else
}
     printf("[ADMIN NEWS]: Admin %s renamed %s.", sendername, giveplayer);
     format(string, sizeof(string), "-| Administrator %s renamed %s. [New Name: %s ] |-", sendername,giveplayer,newname);
     SendClientMessageToAdmins(ADMIN_RED, string,1);
     SetPlayerName(giveplayerid, newname);
     }
}
else if(giveplayerid == INVALID_PLAYER_ID)
}
     format(string, sizeof(string), "%d is not an active player.", giveplayerid);
     SendClientMessage(playerid, RED, string);
     }
}
else
}
     SendClientMessage(playerid, RED, "You are not an admin with the required level.");
     }
     return 1;
}



Re: [HELP]Adding cmds from a another Admin FS. - Spiral - 22.11.2010

26 errors usually means youre missing a bracket - look thru your FS.


Re: [HELP]Adding cmds from a another Admin FS. - Ricardo187 - 22.11.2010

On my pc i compile it and haven't any error... Mybe when you past in the fs you past bad... send the FS(upload and post link) i see what happen and then i upload again!


AW: [HELP]Adding cmds from a another Admin FS. - [SU]Balli - 22.11.2010

i'ma pm u it.

The both right? LAdmin and Seif?


Re: [HELP]Adding cmds from a another Admin FS. - Haegon - 22.11.2010

Does SeifAdmin have an include file the defines everything outside of the main filterscript, perhaps?


AW: [HELP]Adding cmds from a another Admin FS. - [SU]Balli - 22.11.2010

It only has MD5, and i added that to Ladmin but still doesn't work

Aswell as the colors..


Re: [HELP]Adding cmds from a another Admin FS. - Ricardo187 - 22.11.2010

I recived the link but cant download... Upload At MegaUpload.com or something....