[Help] Unreachable Code
#1

Hi, i get unreachable code when compiling my script

(6540) : warning 225: unreachable code

line 6540,

if (pickupid == Back)

and also heres where it is.

public OnPlayerPickUpPickup(playerid, pickupid)
{
if (pickupid == Home)
{
SetPlayerPos(playerid,1298.3142,-797.9921,84.1406);
}
return 1;

if (pickupid == Back)

{
SetPlayerPos(playerid,1384.9432,-2487.6943,16.9050);
}
return 1;
}

Reply
#2

next time put like this
Код:
public OnPlayerPickUpPickup(playerid, pickupid)
  {
  if (pickupid == Home)
  {
    SetPlayerPos(playerid,1298.3142,-797.9921,84.1406);
  }
  return 1;
  
  if (pickupid == Back)

  {
    SetPlayerPos(playerid,1384.9432,-2487.6943,16.9050);
  }
  return 1;
  }
You dont need "return 1;" after the
Код:
if (pickupid == Home)
  {
    SetPlayerPos(playerid,1298.3142,-797.9921,84.1406);
  }
New code:
Код:
public OnPlayerPickUpPickup(playerid, pickupid)
  {
  if (pickupid == Home)
  {
    SetPlayerPos(playerid,1298.3142,-797.9921,84.1406);
  }
  
  if (pickupid == Back)

  {
    SetPlayerPos(playerid,1384.9432,-2487.6943,16.9050);
  }
  return 1; //but the last one is needed
  }
Reply
#3

WOAH TYVM IT WORKS!!!!! UR DA BEST!
Reply
#4

Off Topic:

what is ur msn , and wow u r so fast
Reply
#5

my msn? imcalledcoz@hotmail.co.uk

Add me cos i need more help now! lol
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)