warning 225
#1

i im creating a GM (read my previous post) and i got an warning again can anybody help?
warning
Код:
warning 225: unreachable code
script
Код:
	if (strcmp("/cmd", cmdtext, true, 10) == 0)
	{
        SendClientMessage(playerid, orange ,"----------------------Commands------------------------------");
        SendClientMessage(playerid, orange ,"/cmds /rob /rape");
		return 1;
	}
	return 0;

}
Reply
#2

Quote:
Originally Posted by Hurde
Посмотреть сообщение
i im creating a GM (read my previous post) and i got an warning again can anybody help?
warning
Код:
warning 225: unreachable code
script
Код:
	if (strcmp("/cmd", cmdtext, true, 10) == 0)
	{
        SendClientMessage(playerid, orange ,"----------------------Commands------------------------------");
        SendClientMessage(playerid, orange ,"/cmds /rob /rape");
		return 1;
	}
	return 0;

}
pawn Код:
if (strcmp("/cmd", cmdtext, true, 10) == 0)
    {
        SendClientMessage(playerid, orange ,"----------------------Commands------------------------------");
        SendClientMessage(playerid, orange ,"/cmds /rob /rape");
        return 1;
    }
try this
Reply
#3

it works TNX!
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)