29.11.2009, 03:09
Код:
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; }