whats wrong?
#1


im using
http://forum.sa-mp.com/index.php?topic=95706.0


Код:
public OnCheckpointEnter(playerid, checkpointid){
switch(checkpointid)
{
  // ELAVATOR
  case ELAVATOR_BOTTOM: // The checkpoint ID we specified when we created the checkpoint
  {
    SendClientMessage(playerid, COLOR_MESSAGE, "Going up!");
    SetPlayerPos(playerid,1442.7020,-167.7312,17.3382)

	}
  case ELAVATOR_TOP: // The checkpoint ID we specified when we created the checkpoint
  {
    SendClientMessage(playerid, COLOR_MESSAGE, "Going Down!");
    SetPlayerPos(playerid, 1442.7020,-167.7312,17.3382)

  }
}
return 1;
}
I get this error
Код:
C:\PROGRA~1\ROCKST~1\GTASAN~1\GTAU-S~1.WIN\GAMEMO~1\UBERST~1.PWN(102) : error 001: expected token: ";", but found "}"
C:\PROGRA~1\ROCKST~1\GTASAN~1\GTAU-S~1.WIN\GAMEMO~1\UBERST~1.PWN(108) : error 001: expected token: ";", but found "}"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


2 Errors.

Reply
#2

Which lines are 102 and 108?
Reply
#3

Код:
public OnCheckpointEnter(playerid, checkpointid){
switch(checkpointid)
{
  // ELAVATOR
  case ELAVATOR_BOTTOM: // The checkpoint ID we specified when we created the checkpoint
  {
    SendClientMessage(playerid, COLOR_MESSAGE, "Going up!");
    SetPlayerPos(playerid,1442.7020,-167.7312,17.3382)

	} // THIS ONE IS 102
  case ELAVATOR_TOP: // The checkpoint ID we specified when we created the checkpoint
  {
    SendClientMessage(playerid, COLOR_MESSAGE, "Going Down!");
    SetPlayerPos(playerid, 1442.7020,-167.7312,17.3382)

  } // THIS ONE IS 108
}
return 1;
}
Reply
#4

Код:
public OnCheckpointEnter(playerid, checkpointid){
switch(checkpointid)
{
  // ELAVATOR
  case ELAVATOR_BOTTOM: // The checkpoint ID we specified when we created the checkpoint
  {
    SendClientMessage(playerid, COLOR_MESSAGE, "Going up!");
    SetPlayerPos(playerid,1442.7020,-167.7312,17.3382);

	}
  case ELAVATOR_TOP: // The checkpoint ID we specified when we created the checkpoint
  {
    SendClientMessage(playerid, COLOR_MESSAGE, "Going Down!");
    SetPlayerPos(playerid, 1442.7020,-167.7312,17.3382);

  }
}
return 1;
}
Reply
#5

Oo!!! i see i was missing that little ; after the )
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)