30.11.2013, 18:36
instead of showing the UsageMessage, the command returns 0. I've never done multiple strings in one command before
its to test animations btw
pawn Код:
CMD:anim(playerid, params[])
{
new lib[100], anim[100];
if(sscanf(params, "s[100]s[100]", lib, anim)) return UsageMessage(pid, "/anim [library][anim]");
ApplyAnimation(playerid, lib, anim, 4.1, 1, 1, 1, 1, 1, 1);
return 1;
}