/report (Command Unknown, Short command) Why?
#1

This is one of few commands not working, could someone explain why?

pawn Code:
CMD:report(playerid, params[])
{
    if(LoggedIn[playerid] == 0) return SendClientMessage(playerid, COLOUR_GREY, "You must be logged in to use this command.");
    if(Report[playerid] == 1) return SendClientMessage(playerid, COLOUR_GREY, "You have already submitted a report, Please wait until it has been processed.");
    if(strlen(params) >= 64)return SendClientMessage(playerid, COLOUR_GREY, "Your report message was too long. Maximum - 64 Characters.");
    if(AdminCount < 1) return SendClientMessage(playerid, COLOUR_GREY, "There are no admins online that can accept your report.");


    SendClientMessage(playerid, COLOUR_ORANGE, "Your report has been submitted to all available admins.");
    strcpy(ReportMessage[playerid],params, 64);
    Report[playerid] = 1;
    new string[128];
    format(string, sizeof(string), "Report from %s (ID %d), Details: %s, to manage this report, use /reports", GetNameEx(playerid), playerid, params);
    AdminMessage(string, COLOUR_YELLOW);
    return 1;
}
Reply


Messages In This Thread
/report (Command Unknown, Short command) Why? - by Dokins - 08.12.2011, 12:55
Re: /report (Command Unknown, Short command) Why? - by T0pAz - 08.12.2011, 13:01
Re: /report (Command Unknown, Short command) Why? - by Dokins - 08.12.2011, 13:02
Re: /report (Command Unknown, Short command) Why? - by T0pAz - 08.12.2011, 13:11
Re: /report (Command Unknown, Short command) Why? - by Dokins - 08.12.2011, 13:31
Re: /report (Command Unknown, Short command) Why? - by T0pAz - 08.12.2011, 13:34

Forum Jump:


Users browsing this thread: 1 Guest(s)