DCMD HELP [+REP}
#1

Hey all i wanted do add:
Код:
/adsf 
/adunsf
in SFCNRRPG

my dcmd code is here
pawn Код:
dcmd(adsf,6,cmdtext);
dcmd(adunsf,7,cmdtext);
But it says that its Unknow Command ):

wtf?
Reply
#2

and the dcmd_asdf and dcmd_adunsf ?
Reply
#3

Here:
pawn Код:
dcmd_adsf(playerid,params[])
{
    new string[128];
    new ID;
    if(sscanf(params,"ui",ID))
    {
        SendClientMessage(playerid,COLOR_ERROR,"USAGE: /adsf (Player Name/ID)");
        return 1;
    }
    if(!IsPlayerConnected(ID))
    {
        format(string,sizeof(string),"The player ID (%d) is not connected to the server. You cannot give them SF status.",ID);
        SendClientMessage(playerid,COLOR_ERROR,string);
        return 1;
    }
    if(PLAYERLIST_authed[ID] != 1)
    {
        format(string,sizeof(string),"%s(%d) is not logged into to the server. You must wait till they login before you give them SF status.",PlayerName(ID),ID);
        SendClientMessage(playerid,COLOR_ERROR,string);
        return 1;
    }
    if(CanUseSF[ID] == 1337)
    {
        format(string,sizeof(string),"%s(%d) is already a SF member.",PlayerName(ID),ID);
        SendClientMessage(playerid,COLOR_ERROR,string);
        return 1;
    }
    format(string,sizeof(string),"[ADMIN SF] Administrator has given %s(%d) SF status.",PlayerName(ID),ID);
    SendClientMessageToAll(COLOR_ADMIN,string);

    SendClientMessage(ID,COLOR_ADMIN,"You have been given SF status by a Server Administrator. Congratulations.");
    CanUseCIA[ID] =1337;

    format(string,sizeof(string),"9[ADMIN SF] Administrator has given %s(%d) SF status.",PlayerName(ID),ID);
    IRC_GroupSay(gGroupID,IRC_CHANNEL,string);
    return 1;
}
And /adunsf is here:

pawn Код:
dcmd_adunsf(playerid,params[])
{
    new string[128];
    new ID;
    if(sscanf(params,"ui",ID))
    {
        SendClientMessage(playerid,COLOR_ERROR,"USAGE: /adunsf (Player Name/ID)");
        return 1;
    }
    if(!IsPlayerConnected(ID))
    {
        format(string,sizeof(string),"The player ID (%d) is not connected to the server. You cannot take their CIA status.",ID);
        SendClientMessage(playerid,COLOR_ERROR,string);
        return 1;
    }
    if(PLAYERLIST_authed[ID] != 1)
    {
        format(string,sizeof(string),"%s(%d) is not logged into to the server. You must wait till they login before you take their SF status.",PlayerName(ID),ID);
        SendClientMessage(playerid,COLOR_ERROR,string);
        return 1;
    }
    if(CanUseSF[ID] != 1337)
    {
        format(string,sizeof(string),"%s(%d) is not a SF member.",PlayerName(ID),ID);
        SendClientMessage(playerid,COLOR_ERROR,string);
        return 1;
    }
    format(string,sizeof(string),"[ADMIN UNSF] Administrator has taken %s(%d)'s SF status.",PlayerName(ID),ID);
    SendClientMessageToAll(COLOR_ADMIN,string);

    SendClientMessage(ID,COLOR_ADMIN,"Your SF status has been taken away from you by a Server Administrator. Unlucky.");
    CanUseSF[ID] =0;

    format(string,sizeof(string),"9[ADMIN UNSF] Administrator has taken %s(%d)'s CIA status.",PlayerName(ID),ID);
    IRC_GroupSay(gGroupID,IRC_CHANNEL,string);
    return 1;
}
Reply
#4

Show the whole command. So we can see what errors might have mistakenly popped up.
Reply
#5

Check up Dude... i posted already the code
btw its dont give eny errors/warnings
Reply
#6

Quote:
Originally Posted by James Coral
Посмотреть сообщение
Check up Dude... i posted already the code
btw its dont give eny errors/warnings
The command is not proceeding nothing, especially how it's not returning...therefor it's gonna say unknown command till you script it to do something.

EDIT: Do what joker said
Reply
#7

lol brandon and james has the same time reply!

ONTOPIC:

try removing those return 1; except the return 1; the last one below
Reply
#8

Same came to me, after only editing a command... Strange.
Reply
#9

Are you sure the dcmd inc is input into your includes folder?

Cuz this is strange...
Reply
#10

Quote:
Originally Posted by MasterJoker
Посмотреть сообщение
lol brandon and james has the same time reply!

ONTOPIC:

try removing those return 1; except the return 1; the last one below
Dude i cant remove it! its says that the value is wrong ):
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)