SA-MP Forums Archive
Restablecer Pocicion al Salir de AFK - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Español/Spanish (https://sampforum.blast.hk/forumdisplay.php?fid=29)
+---- Thread: Restablecer Pocicion al Salir de AFK (/showthread.php?tid=326846)



Restablecer Pocicion al Salir de AFK - CeKiT - 18.03.2012

Hola SA-MP!

Cree mi sistema de AFK a mi gusto para mi sv, pero no encuentro como hacer que cuando el player ponga /afk lo teleporte a un lugar y cuando ponga /noafk vuelva al lugar de donde puso /afk..


Espero que me ayuden saludos (es sencillo es que no me enrozque)


Respuesta: Restablecer Pocicion al Salir de AFK - iKeN - 18.03.2012

Crea un variable global .

pawn Код:
new Float: PosAFK[MAX_PLAYERS][3];

// Comando

if(!strcmp(cmdtext, "/afk", true))
{
      GetPlayerPos(playerid, PosAFK[playerid][0],  PosAFK[playerid][1],  PosAFK[playerid][2]);
      //...
      return 1;
}

if(!strcmp(cmdtext, "/Noafk", true))
{
      SetPlayerPos(playerid, PosAFK[playerid][0],  PosAFK[playerid][1],  PosAFK[playerid][2]);
      //...
      return 1;
}