[SOLVED] Loose Indentation
#1

(664 : warning 217: loose indentation

Line,
if (pickupid == House)


Surroundings,




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);


if (pickupid == House)

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

}
return 1;
}


Reply
#2

Tried like this ?


Код:
 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);
  }
  if (pickupid == House)
  {
    SetPlayerPos(playerid,1384.9432,-2487.6943,16.9050);
  }
  return 1;
  }
Reply
#3

brilliant tyvm
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)