[POMOC] Anti-AFK sistem

Započeo Nikola_Krstic
28. Mar. 2011.
1,406
pregleda
8
postova
Nikola_Krstic
4
Shot Caller
28. Mar. 2011.
Skripta koju koristim: FactionGame znacajan edit
Detaljan opis problema: Kako da napravim Anti-Afk sistem to jest ako je igra naprimer 5 minuta AFK da ga kikuje? Ja sam napravio moj i radi ali nije toliko profesionalan po neki put baguje pa ako moze neko da mi samo objasni jednostavan Anti-AFK sistem ostalo cu sam samo osnovu ako me razumte!?
Dio skripte:
Neke slike/video za lakse dobivanje pomoci(neobavezno): Nije potrebno sve sam objasnio

Hvala unapred!
MatijaCH
4
Shot Caller
29. Mar. 2011.
Takoder i mene zanima na koji nacin ovo radi...saltam po googleu al nista...po samp forumu....nemrem nqcc moze pomoc>?
Nikola_Krstic
4
Shot Caller
29. Mar. 2011.
Evo naso sam ti

http://balkan-samp.com/forum/index.php?topic=22216.0
rakun1993
4
Made Man
29. Mar. 2011.
To sam i ja trazi ali moze li pomoc koristim skriptu GTARP i hocu da ubacim afk komanu a gdje da obacim ovo ako moze pomoc bio bih zahvalan 🙂

Quote
#
public OnFilterScriptInit()
{
        print("\n--------------------------------------");
        print(" Multi AFK System v1.0 by Antonio[G-RP]");
        print("--------------------------------------\n");
     
        SetTimer("Check", 1000, 1);
        return 1;
}

public OnFilterScriptExit()
{
        for(new i=0; i                StopAFK(i);
        }
        return 1;
}

public Check()
{
        for(new i=0; i            if(!IsPlayerConnected(i)) continue;
            new Float:x, Float:y, Float:z;
            GetPlayerPos(i, x, y, z);
         
            if(!GetPVarInt(i,"TabbedOut"))
                {
                        if((GetTickCount() - GetPVarInt(i, "LastUpdate")) >= 1000) {
                                SetPVarInt(i, "TabbedOut", 1);
                                CallLocalFunction("StartAFK", "i", i);
                        }
                        if(x != 0) {
                                if(Pos == x && Pos == y && Pos == z) {
                                        SetPVarInt(i, "AFKTime", GetPVarInt(i, "AFKTime") + 1);
                                }
                        }

                        if(!(Pos == x && Pos == y && Pos == z)) {
                        CallLocalFunction("StopAFK", "i", i);
                        }
                }
                if(GetPVarInt(i, "TabbedOut"))
                {
                    SetPVarInt(i, "AFKTime", GetPVarInt(i, "AFKTime") + 1);
                }
             
                if(GetPVarInt(i, "AFKTime") == 300) {
                        CallLocalFunction("StartAFK", "i", i);
                }
             
                if(GetPVarInt(i, "AFKTime") >= MAX_AFKTIME*60) {
            printf("Player AFK time %d", GetPVarInt(i, "AFKTime"));
                        new string, name;
                        GetPlayerName(i, name, 24);
                        format(string, sizeof(string), "%s was kicked by system for being AFK for %d minute(s).", name, MAX_AFKTIME);
                        SendClientMessageToAll(0xFFFFFFFF, string);
                    Kick(i);
                }
                GetPlayerPos(i, Pos, Pos, Pos);
        }
        return 1;
}

public OnPlayerConnect(playerid)
{
        for(new i=0; i<3; i++) {
            Pos = 0;
        }
        return 1;
}

public OnPlayerDisconnect(playerid, reason)
{
        DeletePVar(playerid, "TabbedOut");
        DeletePVar(playerid, "LastUpdate");
        return 1;
}

public OnPlayerUpdate(playerid)
{
        SetPVarInt(playerid, "LastUpdate", GetTickCount());
        if(GetPVarInt(playerid, "TabbedOut")) {
            SetPVarInt(playerid, "TabbedOut", 0);
            CallLocalFunction("StopAFK", "i", playerid);
        }
        return 1;
}

public StartAFK(playerid)
{
        if(GetPVarInt(playerid, "AFKText")) Delete3DTextLabel(Text3D:GetPVarInt(playerid, "AFKText"));
        SetPVarInt(playerid, "AFKText", _:Create3DTextLabel("Player is AFK", 0xFF0000FF, 0.0, 0.0, 0.0, 25.0, GetPlayerVirtualWorld(playerid), 1));
        Attach3DTextLabelToPlayer(Text3D:GetPVarInt(playerid, "AFKText"), playerid, 0.0, 0.0, 0.3);
        SetPlayerColor(playerid, 0xFF0000FF);
        return 1;
}

public StopAFK(playerid)
{
        if(GetPVarInt(playerid, "AFKText")) Delete3DTextLabel(Text3D:GetPVarInt(playerid, "AFKText"));
        if(GetPVarInt(playerid, "AFKTime")) DeletePVar(playerid, "AFKTime");
        SetPlayerColor(playerid, 0xFFFFFFFF);
        return 1;
}
Deleted User
Obrisan korisnik
29. Mar. 2011.
To se ubacuje kao filterskripta
CH | Marko
5
Underboss
29. Mar. 2011.
to je obicna FS... :S
Nxidza
5
Crime Lord
29. Mar. 2011.
Uzmi ovo sve i kopiraj onda odes pawno>file>new i izbrises sve sto ti dodje i nalepis to .
Nikola_Krstic
4
Shot Caller
29. Mar. 2011.
Da objasnio ti je i radi provereno!

Morate biti prijavljeni da biste odgovorili na ovu temu.

Prijava

© 2026 SmartShark. All rights reserved.

Powered by Momentum|v2026.3.001 Alpha