GTA Közösség - A magyar GTA fórum

San Andreas Multiplayer (SA-MP) => SA-MP: Szerverfejlesztés => A témát indította: Sramm - 2012. június 15. - 14:26:17

Cím: [INC][FILTERSCRIPT] Anti flood és anti pénz cheat
Írta: Sramm - 2012. június 15. - 14:26:17
Sziasztok! Unatkoztam és összedobtam ezt az egyszerû kis Filterscriptet. A lényege, hogy az anticheat-et és a flood-ot kiküszöbölje.
Kód:
 

new af;
stock GPMoney(p,m) return GivePlayerMoney(p,m),SetPVarInt(p, \"m\", m);
#define GivePlayerMoney GPMoney
stock AntiFlood_On() return af = 1;
stock AntiFlood_Off() return af = 0;
public OnPlayerText(playerid,text[])
{
new t[128];
if(af== 1)
{
if(Compare(GetPVarString(playerid,\"hsz\",t,128),text)) return SendClientMessage(playerid,-1,\"Ne floodolj\"),0;
SetPVarString(playerid,\"hsz\",text);
}
return 1;
}
stock Compare(comp[], with[]) //by: florian
{
new LenghtComp = strlen(comp);
new LenghtWith = strlen(with);
new Character;
if( LenghtComp != LenghtWith ) return false;
for( new i = 0; i < LenghtComp; i++ )
{
    if( comp == with )
    {
        Character++;
}
}
if( LenghtComp == Character ) return true;
return false;
}
public OnPlayerUpdate(playerid)
{
if(GetPlayerMoney(playerid) != GetPVarInt(playerid,\"m\")) return BanEx(playerid,\"Cheat\"); return 1;
}

 
Ki/be kapcsolás (Antiflood)
Akárhova:
 
AntiFlood_On();

 
Kikapcsolás:
 
AntiFlood_Off();

 
Ezt a mód elejére kell tenni! Nem aljára, nem középre, elejére. (Az incek alá) Vagy külön inc-be beágyazod. Ha nem megy szólj.
Cím: [INC][FILTERSCRIPT] Anti flood és anti pénz cheat
Írta: DrAkE - 2012. június 15. - 15:02:19
[mod]Jó lenne ha eldöntetnéd, hogy ez ADD-ON, INCLUDE vagy FILTERSCRIPT![/mod]
Cím: [INC][FILTERSCRIPT] Anti flood és anti pénz cheat
Írta: Sramm - 2012. június 15. - 15:07:03
Idézetet írta: DrAkE date=1339765339\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"22881\" data-ipsquote-contentclass=\"forums_Topic
Jó lenne ha eldöntetnéd, hogy ez ADD-ON, INCLUDE vagy FILTERSCRIPT!
 
A leírás alján ott van. Mindegyiknek elmegy. De fõleg ADD-ON.
Cím: [INC][FILTERSCRIPT] Anti flood és anti pénz cheat
Írta: lackos888 - 2012. június 19. - 09:24:19
Sramm, ez hülyeség.Ez inkább arra szolgál, hogy ne írj be ugyanannyi betût az elõzõ és a mostani mondatodban sem.
Péld beírom: alma (4 karakter), beírom szék(4 karakter), kiirja egybõl, ne floodolj.
Cím: [INC][FILTERSCRIPT] Anti flood és anti pénz cheat
Írta: Sramm - 2012. június 19. - 10:51:06
Igazad van, javítva.
Cím: [INC][FILTERSCRIPT] Anti flood és anti pénz cheat
Írta: Technokol - 2012. június 19. - 10:55:31
Idézetet írta: lackos888 date=1340090659\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"22881\" data-ipsquote-contentclass=\"forums_Topic
Sramm, ez hülyeség.Ez inkább arra szolgál, hogy ne írj be ugyanannyi betût az elõzõ és a mostani mondatodban sem.
Péld beírom: alma (4 karakter), beírom szék(4 karakter), kiirja egybõl, ne floodolj.
 
Eléggé gáz :D
Cím: [INC][FILTERSCRIPT] Anti flood és anti pénz cheat
Írta: dexi - 2012. június 19. - 18:03:39
Naa zsír valaki felhasználta a munkámat : D.
Szép munka lett. Jó scripterré fejlõdhetsz ha kitartó vagy. :)
Cím: [INC][FILTERSCRIPT] Anti flood és anti pénz cheat
Írta: Sramm - 2012. június 20. - 08:18:01
Idézetet írta: Fl0rian date=1340121819\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"22881\" data-ipsquote-contentclass=\"forums_Topic
Naa zsír valaki felhasználta a munkámat : D.
Szép munka lett. Jó scripterré fejlõdhetsz ha kitartó vagy. :)
 
Kösz. Amúgy igen, én mindig használom, nagyon jó kis kód :)
Cím: [INC][FILTERSCRIPT] Anti flood és anti pénz cheat
Írta: kurta999 - 2012. június 21. - 15:18:39
GetPVarString()
 

Returns   This function returns the length of player\'s PVarString.

Ne a visszatérési értéket hasonlítsd össze a szöveggel, hanem azt, amit beleír neked a \"t\" változóba!
Az anticheat viszont bannolni fog, ha újrafestem a kocsimat, vagy stuntbónusszal szerzek pénzt.