Results 1 to 11 of 11
  1. #1
    14126's Avatar
    Join Date
    Feb 2015
    Gender
    male
    Posts
    20
    Reputation
    10
    Thanks
    3

    AntiAFK HomeMade :)

    Code:
    afk = false
    Left= false
    function aids()
    if afk then
    Left = true
    RunConsoleCommand('+moveleft')
    LocalPlayer():SetEyeAngles(Vector(math.random(0,360),math.random(0,360),math.random(0,360)):Angle())
    else
    if Left == true then
    Left = false
    RunConsoleCommand('-moveleft')
    else
    end
    end
    end
    hook.Add('HUDPaint','AntiAfk',aids)
    concommand.Add('afk',function()
    if afk == true then
    afk = false
    else
    afk = true
    end
    end)
    A1 fukn AntiAfk B

  2. The Following User Says Thank You to 14126 For This Useful Post:

    Bartender (01-28-2018)

  3. #2
    Bartender's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    Posts
    124
    Reputation
    10
    Thanks
    537
    Very nice. Not to hijack, figured I would throw what I made just out of what I saw in yours. I liked the random looking around.
    Code:
    local boolfuq = boolfuq or false
    local boolmv = boolmv or false
    local randomizeme = randomizeme or tostring(math.Truncate(math.random(11111,999999),0))
    local delayone = 0
    concommand.Add("fuq_yuafk", function( ply, cmd, args )
    	boolfuq = !boolfuq
    	if boolfuq then
    		print("WE HAVE GONE AFK")
    		hook.Add("Think", randomizeme, function()
    		if CurTime() < delayone then return end
    		delayone = CurTime() + 9.99
    			boolmv = !boolmv
    			ply:SetEyeAngles(Angle(math.random(0,360),math.random(0,360),math.random(0,360))) --bueno sir
    				if boolmv then
    					RunConsoleCommand("+left");RunConsoleCommand("+forward")
    					timer.Simple(0.5,function() RunConsoleCommand("-left");RunConsoleCommand("-forward") end)
    				else
    					RunConsoleCommand("+right");RunConsoleCommand("+back")
    					timer.Simple(0.5,function() RunConsoleCommand("-right");RunConsoleCommand("-back") end)
    				end
    			end)
    	else
    		print("WE BAQ")
    		hook.Remove("Think", randomizeme)
    	end
    end )
    Last edited by Bartender; 01-28-2018 at 12:37 AM.


    "You don't bite the one who serves you"

  4. The Following User Says Thank You to Bartender For This Useful Post:

    14126 (01-30-2018)

  5. #3
    nmdforlife's Avatar
    Join Date
    Feb 2018
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    My Mood
    Bitchy
    Looks like some decent code. Very simple, but indeed i'm sure it will work.
    Last edited by nmdforlife; 02-03-2018 at 06:33 PM.

  6. #4
    MothCrotch's Avatar
    Join Date
    May 2016
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    1
    My Mood
    Amused
    how do you use this

  7. #5
    tanner1031's Avatar
    Join Date
    Jul 2012
    Gender
    female
    Posts
    46
    Reputation
    10
    Thanks
    659
    cmd:SetForwardMove(450);
    cmd:SetSideMove(450);

    would probably be better when making something like this.

  8. #6
    eth0s's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Posts
    188
    Reputation
    10
    Thanks
    1,887
    Quote Originally Posted by tanner1031 View Post
    cmd:SetForwardMove(450);
    cmd:SetSideMove(450);

    would probably be better when making something like this.
    set buttons aswell

  9. #7
    captaines1's Avatar
    Join Date
    Aug 2018
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    nice work man

  10. #8
    purplewhaleappeal's Avatar
    Join Date
    Sep 2018
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    0
    this is great, nice work man.

  11. #9
    vosxja094's Avatar
    Join Date
    Sep 2018
    Gender
    female
    Posts
    15
    Reputation
    10
    Thanks
    2
    great for afk

  12. #10
    NookysPapa's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Posts
    25
    Reputation
    10
    Thanks
    0
    My Mood
    Amused
    Is it still working?

  13. #11
    codynew's Avatar
    Join Date
    Dec 2018
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    0
    My Mood
    Amazed

    Works

    Thanks, stops me from being kicked while idling next to money printers on DARKRP

Similar Threads

  1. My Homemade Ninja Assassin Chain blade!!!!
    By headsup in forum General
    Replies: 17
    Last Post: 04-19-2010, 06:15 PM
  2. Bloody Homemade G36E
    By kirby321654 in forum Combat Arms Mods & Rez Modding
    Replies: 11
    Last Post: 03-20-2010, 01:27 PM
  3. HomeMade Spammer With Tapper
    By pashak in forum Combat Arms Hacks & Cheats
    Replies: 8
    Last Post: 01-24-2010, 07:30 PM
  4. [Release] Runescape AntiAfk
    By AeroMan in forum Runescape Hacks / Bots
    Replies: 8
    Last Post: 12-14-2009, 03:11 PM
  5. [Homemade] CA start-up skin. Windows Version
    By alfonso951 in forum Combat Arms Hacks & Cheats
    Replies: 16
    Last Post: 08-05-2009, 12:45 AM