14.01.2012, 18:42
pawn Код:
YCMD:gang(playerid, params[], pHELPS)
{
new gParams[10], gName[20];
if(sscanf(params, "s[10] ", gParams))
{
SendClientMessage(playerid, 0xFFFFFFFF, "USE: /gang [create/invite]");
return 1;
}
if(strcmp(params, "create", true))
{
if(sscanf(params, "s[10]s[20]", gParams, gName))
{
SendClientMessage(playerid, 0xFFFFFFFF, "USE: /gang create [Name]");
return 1;
}
SendPlayerMessage(playerid, 0xFFFFFFFF, "Created: %s", gName); // debug
PlayerPlaySound(playerid, 1057, 0.0, 0.0, 0.0); // debug
return 1;
}
return 1;
}
The sscanf If run correctly, but the "debug" is not executed, the code crashes.