Need to know
#1

In my gamemode has strcmp and zcmd commands, when using both commands its executed. But strcmp commands are return Server:Unknown Command

why it happend?

Need to change header files?
Reply
#2

No you're wrong strcmp and zcmd are two different command processors.You should use only one of them.Latest one is zcmd and it's the fastest command processor.I suggest you to use zcmd ONLY.Using both of them causes your commands to crash or they don't response at all.
Reply
#3

it executed, but returns Server:Unknown Command. Any solutions to correct it?
Reply
#4

Use anyone of them either use zcmd or strcmp
if you are using zcmd then you are getting Unknown command? Put this in your script anywhere

pawn Код:
public OnPlayerCommandPerformed(playerid, cmdtext[], success)
{
    if(!success)
    {
       SendClientMessage(playerid, -1, "Your message");
    }
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)