[AJUDA] Anti-Teleport-Cheat - 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-Teleport-Cheat (
/showthread.php?tid=294033)
[AJUDA] Anti-Teleport-Cheat -
Colgate - 30.10.2011
POST REMOVIDO.
Re: [AJUDA] Anti-Teleport-Cheat -
Lуs - 30.10.2011
Uma dъvida. Cadк o SetTimer? Хo
Re: [AJUDA] Anti-Teleport-Cheat -
Cristhian - 30.10.2011
Quote:
Originally Posted by Los
Uma dъvida. Cadк o SetTimer? Хo
|
kkkkkkk
Re: [AJUDA] Anti-Teleport-Cheat -
Colgate - 30.10.2011
no OnGameModeInit uй? postei sу o necessario...
Ou vocк nao entendeu o sistema e quer que explique detalhadamente?
Re: [AJUDA] Anti-Teleport-Cheat -
Lуs - 30.10.2011
Quote:
Originally Posted by Colgate
no OnGameModeInit uй? postei sу o necessario...
Ou vocк nao entendeu o sistema e quer que explique detalhadamente?
|
Calma, sу estava perguntando pois as vezes vocк esquece de uma coisinha bбsica e jб elvis tudo. Й pro seu bem, nгo pro seu mal
Re: [AJUDA] Anti-Teleport-Cheat -
[O.z]Caroline - 30.10.2011
Colgate abaixa a bola ai, ele tentou lhe ajudar!
pawn Код:
enum asd
{
Float:x,
Float:y,
Float:z
};
new
Carol[MAX_PLAYERS][asd]
;
#define SetPlayerPos CarolSetPos
public OnGameModeInit()
{
SetTimer("Why", 1000, true);
return 1;
}
Why(p);
public Why(p)
{
if(IsHack(p)) return Ban(p);
OnSpawnPlayer(p);
return 1;
}
stock OnSpawnPlayer(p)
{
static
Float:e, Float:p, Float:q;
GetPlayerPos(p, z, p, q);
Carol[p][x] = e;
Carol[p][y] = p;
Carol[p][z] = q;
return 1;
}
stock CarolSetPos(p, Float:xis, Float:ips, Float:zee)
{
Carol[p][x] = xis;
Carol[p][y] = ips;
Carol[p][z] = zee;
SetPlayerPos(p, Float:xis, Float:ips, Float:zee);
return 1;
}
stock IsHack(p)
{
if(IsPlayerInRangeOfPoint(playerid, 500.0, Carol[p][x],Carol[p][y],Carol[p][z]) && !IsPlayerInAnyVehicle(p))
return true;
return false;
}