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