warning 225: unreachable code HELP [REP+]
#1

Hi guys,
i got problem warning 225: unreachable code in my script

Here's the error code :

Код:
	return NormalTele( playerid, "Death Match", "DM", 2227.5273,2326.6516,7.5469,358.5545,-2233.5776,2401.7615,2.4886,222.6917, 0);
	DeletePVar(playerid,"FLY");
Anyone can help me?

thanks.
Reply
#2

Anyone?
Reply
#3

You are breaking the whole callback or function and then declaring a function under it which is not meaningful.

Do something like this:
pawn Код:
NormalTele( playerid, "Death Match", "DM", 2227.5273,2326.6516,7.5469,358.5545,-2233.5776,2401.7615,2.4886,222.6917, 0);
return DeletePVar(playerid,"FLY");
Reply
#4

Quote:
Originally Posted by Gammix
Посмотреть сообщение
You are breaking the whole callback or function and then declaring a function under it which is not meaningful.

Do something like this:
pawn Код:
NormalTele( playerid, "Death Match", "DM", 2227.5273,2326.6516,7.5469,358.5545,-2233.5776,2401.7615,2.4886,222.6917, 0);
return DeletePVar(playerid,"FLY");
FIXED !!, Thanks for help me (REP+)
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)