29.11.2009, 03:33
Currently im using this http://forum.sa-mp.com/index.php?topic=95706.0
but i want to use this http://forum.sa-mp.com/index.php?topic=69459.0
At top
ongamemodeini
but i want to use this http://forum.sa-mp.com/index.php?topic=69459.0
At top
Код:
#define ELAVATOR_BOTTOM 0 #define ELAVATOR_TOP 1
Код:
CreateCheckpoint(GLOBAL_OWNER_ID, ELAVATOR_BOTTOM,1442.7020,-167.7312,17.3382); CreateCheckpoint(GLOBAL_OWNER_ID, ELAVATOR_TOP,1448.4299,-162.0256,91.9699); StartCheckpointSeeking();
Код:
public OnPlayerEnterCheckpoint(playerid){ VerifyCheckpoint(playerid); // Asks the ChpManager to check this checkpoint and fire the next function return 1; }
Код:
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,1448.4299,-162.0256,91.9699); } 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; }