25.03.2016, 15:13
Hi,
It's any difference i include sscanf2 or zcmd first?
#include sscanf2
#include zcmd
or
#include zcmd
#include sscanf2
?
Next question:
can i use how many times sscanf for ex cmdtext it's will be not modificated?
It's any difference i include sscanf2 or zcmd first?
#include sscanf2
#include zcmd
or
#include zcmd
#include sscanf2
?
Next question:
can i use how many times sscanf for ex cmdtext it's will be not modificated?
Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
sscanf(cmdtext, "...", ...);
//actions
sscanf(cmdtext, "...", ...);
//actions
sscanf(cmdtext, "...", ...);
//actions
return 1;
}


