05.02.2009, 22:31
Hi ive setup some commands for my realife RP,
/requestland is set to say "TXS Usage: /requestland[LS/LV/SF]
And it does, But if i goto say
/requestlandLS, it says, "TXS Usage: /requestland[LS/LV/SF]
And its not supposed to, its supposed to say:
[name] to LS ATC, [name] is requesting landing,
Why is this
pawn Код:
if(strcmp("/requestland", cmdtext, true, 10) == 0)
{
SendClientMessage(playerid, COLOR_GREY, "TXS Usage: /requestland[LS/LV/SF]");
return 1;
}
if(strcmp("/requestlandLS", cmdtext, true, 10) == 0)
{
SendClientMessageToAll(COLOR_GREY, "%s to LS ATC, %s is requesting landing.");
return 1;
}
And it does, But if i goto say
/requestlandLS, it says, "TXS Usage: /requestland[LS/LV/SF]
And its not supposed to, its supposed to say:
[name] to LS ATC, [name] is requesting landing,
Why is this