/setlevel
#1

Can someone make tutorial for command /setlevel <playerid> <level>


And sendclientmessage you have been promoted to <adminlevel>


Anyone can to it?

It can be tutorial or what, need help with it.

I need it cause i start a Driftserver
Reply
#2

next time use ******

https://sampforum.blast.hk/showthread.php?tid=357538
Reply
#3

thanks, but i tried all the codes and get 1 error:


Код:
C:\Documents and Settings\karu\My Documents\samp03e_svr_R2_win32\filterscripts\setadmin.pwn(26) : warning 203: symbol is never used: "setlevel"
C:\Documents and Settings\karu\My Documents\samp03e_svr_R2_win32\filterscripts\setadmin.pwn(26) : error 013: no entry point (no public functions)
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


1 Error.
Reply
#4

post your line no.26 from pawno
Reply
#5

It's obvious that he doesn't use ZCMD, but strcmp.
Reply
#6

Add #include <zcmd> on top of your script (but below #include <a_samp>).
Reply
#7

pawn Код:
//set admin level
CMD:setlevel(playerid, params[])
{
    if(PlayerInfo[playerid][Padmin] >5)
    {
        new id, lvl, string[128], string2[128], string3[128];
        new INI:file = INI_Open(Path(playerid));
        if(sscanf(params,"ui",id,lvl)) return SendClientMessage(playerid, -1, "USAGE: /setlevel <id> <lvl>");
        format(string, sizeof(string), "You have set %s admin level to %d", PlayerName(id), lvl);
        format(string2, sizeof(string2), "Your level has been set to %d by %s", lvl, PlayerName(playerid));
        format(string3, sizeof(string3), "%s is now admin level %d", PlayerName(id), lvl);
        SendClientMessage(playerid, -1, string);
        SendClientMessage(id, -1, string2);
        SendClientMessageToAll(-1, string3);
        INI_WriteInt(file,"Padmin",lvl);
        INI_Close(file);
        return 1;
    }
    else if(PlayerInfo[playerid][Padmin] <5)
    {
        SendClientMessage(playerid, -1, "Your not a admin");
        return 1;
    }
    return 1;

}
This is all the line. And i dont have line 26.


Edit, got fixed
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)