SA-MP Forums Archive
[Ajuda] Bloquear teleporte - 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: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Bloquear teleporte (/showthread.php?tid=478058)



Bloquear teleporte - N3XTMapper - 27.11.2013

Ola galera , estou desenvolvendo meu gamemode e queria saber, como bloqueio teleportes em arenas ? tipo o player vai para o /minigun , e ai ele tenta fugir, queria que bloqueasse ele de usar comandos em quanto estivesse em /minigun , mais nao sei como, ja vi alguns codigos mais nao entendi muito bem. Obrigado!


Re: Bloquear teleporte - smiiir - 27.11.2013

https://sampforum.blast.hk/showthread.php?tid=292185


Re: Bloquear teleporte - N3XTMapper - 27.11.2013

Quote:
Originally Posted by iSmirnoff
Посмотреть сообщение
entao quer dizer que se eu colocar assim :

PHP код:
CMD:gato(playerid,params[])
{
       if(
SouGato[playerid] == true) return SendClientMessage(playerid,-1,"Voce й um Gato ^^");
       if(
Sougato[playerid] == false) return SendClientMessage(playerid,-1,"Voce nгo й um Gato!");
       return 
1;

Onde ta false significa que nao posso usar o teleporte e true significa que posso me teleportar?


E no caso de eu querer colocar essa mensagem em mais arenas, funfa normal ?



#333 POSTS #33 reputations


Re: Bloquear teleporte - N3XTMapper - 27.11.2013

Alguem ?



Desculpe double post


Re: Bloquear teleporte - Menor - 27.11.2013

no topo do gm

pawn Код:
new naminigun;
em ongamemodeinit tu coloca

pawn Код:
naminigun = 0;
no comano do tele tu coloca

pawn Код:
naminigun = 1
nos outros teles tu coloca

pawn Код:
if(naminigun[playerid] == true) return SendClientMessage(playerid,-1,"Voce esta na minigun");
em OnPlayerDeath tu coloca

pawn Код:
naminigun = 0;
Prontu gatu


Re: Bloquear teleporte - bruxo00 - 27.11.2013

Quote:
Originally Posted by N3XTMapper
Посмотреть сообщение
entao quer dizer que se eu colocar assim :

PHP код:
CMD:gato(playerid,params[])
{
       if(
SouGato[playerid] == true) return SendClientMessage(playerid,-1,"Voce й um Gato ^^");
       if(
Sougato[playerid] == false) return SendClientMessage(playerid,-1,"Voce nгo й um Gato!");
       return 
1;

Onde ta false significa que nao posso usar o teleporte e true significa que posso me teleportar?


E no caso de eu querer colocar essa mensagem em mais arenas, funfa normal ?



#333 POSTS #33 reputations
Sim, й isto.


Re: Bloquear teleporte - N3XTMapper - 27.11.2013

Quote:
Originally Posted by bruxo00
Посмотреть сообщение
Sim, й isto.
Vlw bruxo