12.11.2010, 16:49
Hello. I compiled my pwn find, I didn't get any errors or warnings. I join my server but when i type any command it says it is unknown for the server. Any conclusions ?
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/command1", cmdtext, true, 10) == 0)
{
//Something Here
return 1;
}
if (strcmp("/command2", cmdtext, true, 10) == 0)
{
//Something Here
return 1;
}
return 0;
}