16.12.2010, 17:03
Hello again! OK, i have a question about DCMD thinks... For example on this script:
It have dcmd(test, 4, cmdtext) // Why 4 and not 6 for example? and how to define what cmd do? How cmd know what to do? I want to make a setmoney cmd but i realy can't....... Please explain me something about this type od cmds
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
dcmd(test, 4, cmdtext); // why 4 and not 6?
return 0;
}
dcmd_test(playerd, params[])
{
print("Hello");
return 1;
}