13.11.2012, 12:35
I need help with my Warning 255: Unreachable Code
Warnings:
CODE:
And Second Warning line 43584 Starts on: if(strcmp(cmd, "/accent", true) == 0)...
Warnings:
Код:
C:\Users\Nicklas\Desktop\PRP\gamemodes\PRP.pwn(43566) : warning 225: unreachable code C:\Users\Nicklas\Desktop\PRP\gamemodes\PRP.pwn(43584) : warning 225: unreachable code
Код:
Line 43566: { new length = strlen(cmdtext); while ((idx < length) && (cmdtext[idx] <= ' ')) { idx++; } new offset = idx; new result[20]; while ((idx < length) && ((idx - offset) < (sizeof(result) - 1))) { result[idx - offset] = cmdtext[idx]; idx++; } result[idx - offset] = EOS; return 1; }
Код:
if(strcmp(cmd, "/accent", true) == 0) { new length = strlen(cmdtext); while ((idx < length) && (cmdtext[idx] <= ' ')) { idx++; } new offset = idx; new result[16]; while ((idx < length) && ((idx - offset) < (sizeof(result) - 1))) { result[idx - offset] = cmdtext[idx]; idx++; } result[idx - offset] = EOS; if(!strlen(result)) { SendClientMessage(playerid, COLOR_GREY, "USAGE: /accent [accent type] (set your accent as 'none' for no accent)"); return 1; } strmid(Accent[playerid], result, 0, strlen(result), 255); format(string, sizeof(string), "You have changed your accent to '%s'.", Accent[playerid]); SendClientMessage(playerid,COLOR_WHITE,string); return 1; }