Posts: 1,498
Threads: 110
Joined: Aug 2013
So basically I wrote a filterscript and using izcmd and the command wont get processed will say "Unknown command"
Код:
CMD:test(playerid, params[])
{
SendClientMessage(playerid,-1,"TEST");
return 1;
}
Using <a_mysql> too... why would it say this...
even with strcmp it will say the same lol
Posts: 1,498
Threads: 110
Joined: Aug 2013
Quote:
Originally Posted by Scripter18
You got something like ?
Код:
public OnPlayerCommandPerformed(playerid, cmdtext[], success)
{
if (!success) {
//Keep going here
}
}
|
I don't have it on my fs.
Posts: 586
Threads: 14
Joined: Aug 2015
Reputation:
0
Did you include izcmd in filterscript ?
Posts: 1,498
Threads: 110
Joined: Aug 2013
Quote:
Originally Posted by Scripter18
Did you include izcmd in filterscript ?
|
Yes else it wouldn't compile..
Posts: 1,915
Threads: 64
Joined: Jan 2016
Reputation:
0
Any report with crashdetect plugin?
Posts: 151
Threads: 7
Joined: Feb 2017
Reputation:
0
Make sure you ain't using the normal a_samp commands in the gamemode or any other filterscript you are using.
Posts: 1,498
Threads: 110
Joined: Aug 2013
Fixed by loading sscanf streamer and mysql plugin , tiny mistake lol.