Posts: 511
Threads: 51
Joined: Feb 2012
Reputation:
0
I don't think you can mix both, try converting them all to Zcmd.
Posts: 651
Threads: 103
Joined: Feb 2012
Reputation:
0
lol how to do that? i have dozens of commands
Posts: 511
Threads: 51
Joined: Feb 2012
Reputation:
0
It will take a lot of time or Convert Your Zcmd's to OnPlayerCommandText
Example
CMD:heal(playerid, params[])
{
SetPlayerHealth(playerid, 100);
return 1;
}
To
if(strcmp("/heal",cmdtext,true,10) == 0)
{
SetPlayerHealth(playerid, 100);
return 1;
}
Posts: 16
Threads: 1
Joined: Jun 2012
Reputation:
0
Simply undo if you have your script opened or you can re-download your script as it is still uploaded on mediafire.
Posts: 651
Threads: 103
Joined: Feb 2012
Reputation:
0
ok, i found a solution myself, i used tutorial in samp wiki with strtok