if (strcmp("/refunds", cmdtext, true, 10) == 0) { SendClientMessage(playerid,0xDABB3EAA, "__________________About Refunds_____________________"); SendClientMessage(playerid,0xDABB3EAA, "We are refunding stats, We refund without SS's (ScreenShots), This means, you can get how much YOU want!"); SendClientMessage(playerid,0xDABB3EAA, "About Helpers/Admins/VIP/Factions,We do not refund Helpers, If you wish to become helper, You must help our community."); SendClientMessage(playerid,0xDABB3EAA, "About Admins, If you wish to become admin, You should be active, Helpfull person, and have some patience."); SendClientMessage(playerid,0xDABB3EAA, "About VIP, We are not refunding VIP, If you wish to become VIP, You must invite, atleast 3 players, Or more."); SendClientMessage(playerid,0xDABB3EAA, "About Factions, If you wish to be in faction, (cop,etc) You should apply on forums, we dont refund factions."); }
if (strcmp("/refunds", cmdtext, true, == 0)
The length of /refounds is 8, not 10. |
if(strcmp(cmdtext,"/refunds", true, 10) == 0)
if(strcmp(cmdtext, "/refunds", true) == 0)
if(!strcmp(cmdtext, "/refunds", true))
{
SendClientMessage(playerid,0xDABB3EAA, "__________________About Refunds_____________________");
SendClientMessage(playerid,0xDABB3EAA, "We are refunding stats, We refund without SS's (ScreenShots), This means, you can get how much YOU want!");
SendClientMessage(playerid,0xDABB3EAA, "About Helpers/Admins/VIP/Factions,We do not refund Helpers, If you wish to become helper, You must help our community.");
SendClientMessage(playerid,0xDABB3EAA, "About Admins, If you wish to become admin, You should be active, Helpfull person, and have some patience.");
SendClientMessage(playerid,0xDABB3EAA, "About VIP, We are not refunding VIP, If you wish to become VIP, You must invite, atleast 3 players, Or more.");
SendClientMessage(playerid,0xDABB3EAA, "About Factions, If you wish to be in faction, (cop,etc) You should apply on forums, we dont refund factions.");
return 1;
}
if(!strcmp(cmdtext, "/refunds", true, 8))