[AJUDA]Anti-Team Kill - 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]Anti-Team Kill (
/showthread.php?tid=297631)
[AJUDA]Anti-Team Kill -
Victor_Souz4 - 16.11.2011
Vi em alguns servidores que os membros da mesma gangue nгo conseguiam se matar, ficava como se tivesse de god mode, mas apenas pros membros da propria gangue...
Pesquesei mas nгo achei ):
PS: Jб tentei com o SetPlayerTeam no OnPlayerSpawn, mas nгo deu certo, por isso estou pedindo ajuda.
Grato.
Re: [AJUDA]Anti-Team Kill -
Joker_OutLock - 16.11.2011
Bom eu nunca vi esse sistema mais vou tentar elabora-lo e postarei aqui para vocк
Re: [AJUDA]Anti-Team Kill -
ViniBorn - 16.11.2011
Usa
AddPlayerClassEx
Re: [AJUDA]Anti-Team Kill -
Apple_Ipad - 17.11.2011
Normalmente a funзгo
SetPlayerTeam nгo funciona muito bem, o segundo ou terceiro jogador a entrar no servidor sofre danos da mesma equipe, mas apуs a morte a funзгo funciona corretamente, entгo eu uso o seguinte esquema:
Quote:
#include <a_samp>
forward AntiTeamKill();
new TimerTeamKill;
public OnGameModeInit()
{
// Todo seu code
TimerTeamKill = SetTimer("AntiTeamKill", 1000, true);
return 1;
}
public OnGameModeExit()
{
KillTimer(TimerTeamKill);
return 1;
}
public AntiTeamKill()
{
for(new i; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
SetPlayerTeam(i, gTeam[i]);
}
}
return 1;
}
|
ATENЗГO, a variбvel gTeam й a variбvel que define o time/gang do jogador, mude para a sua.
Por favor se tiver algo errado me corrija-me.