google-site-verification: googlebaca44933768a824.html [CS:S] Lua: Aimbot, Wallhack & Bhop - Old Royal Hack Forum

Announcement

Collapse
No announcement yet.

[CS:S] Lua: Aimbot, Wallhack & Bhop

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    [CS:S] Lua: Aimbot, Wallhack & Bhop

    Code:
    --options
    smooth = 120 --Speed of the aimbot. Higher is faster.
    key = 18 -- END= 35 f=70
    offsety = 0 --Adjust the aimspot vertical (0 is head).
    aimmode = {'fov', 180} --{'fov', fov} or {'dist'}
    autoshoot = 0 --Auto shoots when on target. 0 - 1 - 2
    shootdelay = 100 --Delay before shooting if autoshoot. 0 - 1
    keeptarget = 1 --Auto gets next target when currect target dies. 0 - 1
    
    
    --Addresses--Don't adjust.
    client = getBaseAddr("client.dll")
    engine = getBaseAddr("engine.dll")
    radar = readmem(client+0x50CA68,4) --oct 08 - 2010
    myXaddr = client+0x4AAF88 --oct 08 - 2010
    myYaddr = client+0x4AAF8C --oct 08 - 2010
    myZaddr = client+0x500DD4 --oct 08 - 2010
    myYawaddr = client+0x4AAF00 --oct 08 - 2010
    myNameAddr = readmem(engine+0x3B8F24,4) --oct 08 - 2010
    
    no = 0x38 --oct 08 - 2010
    ho = 0x5C --oct 08 - 2010
    xo = 0x60 --oct 08 - 2010
    yo = 0x64 --oct 08 - 2010
    zo = 0x68 --oct 08 - 2010
    to = 0x58 --oct 08 - 2010
    yao = 0x70 --oct 08 - 2010
    
    --Script--
    print("\n - Created by supericy - \n",255,150,0)
    p=1 baseoffset=offsety tarRot=1 tar={} me={} tick=0 hp=1
    function localid()
    local tn = ''
    local mn = getString(myNameAddr,32)
    for i=0,64 do
    tn = getString(radar+0x38+(i*0x140),32)
    if tn == mn then
    return i
    end
    end
    print('report this error, i failed\n')
    return -1
    end
    
    function getString(Addr,length)
    temp = ''
    for i=0,length-1 do
    byte=readmem(Addr+i,1)
    if byte==0x00 then return temp end
    temp=temp..string.char(byte)
    end
    return temp
    end
    
    function getDist()
    local locs = {}
    local info = {}
    me.x = readfloat(myXaddr,4)
    me.y = readfloat(myYaddr,4)
    me.z = readfloat(myZaddr,4)
    for i = 1, 32 do
    hp = readmem(radar+ho+(i*0x140),4)
    tar.name = getString(radar+no+(i*0x140),32)
    if hp > 0 and isOppo(i) then
    tar.x = readfloat(radar+xo+(i*0x140),4)
    tar.y = readfloat(radar+yo+(i*0x140),4)
    tar.z = readfloat(radar+zo+(i*0x140),4)
    dist = math.sqrt(((tar.x-me.x)^2)+((tar.y-me.y)^2))
    
    locs[dist]=i
    table.insert(info,dist)
    end
    end
    table.sort(info)
    local tempID = locs[info[1]]
    if tempID==nil then return 1337 end
    return tempID, 0
    end
    
    function getFov()
    local fovs = {}
    local locs = {}
    local info = {}
    local info2 = {}
    me.x = readfloat(myXaddr,4)
    me.y = readfloat(myYaddr,4)
    me.z = readfloat(myZaddr,4)
    me.yaw = readfloat(myYawaddr,4)
    for i = 1, 32 do
    hp = readmem(radar+ho+(i*0x140),4)
    tar.name = getString(radar+no+(i*0x140),32)
    if hp > 0 and isOppo(i) then
    tar.x = readfloat(radar+xo+(i*0x140),4)
    tar.y = readfloat(radar+yo+(i*0x140),4)
    tar.z = readfloat(radar+zo+(i*0x140),4)
    
    yaw = math.deg(math.atan((me.y-tar.y)/(me.x-tar.x)))
    if tar.x < me.x then yaw = yaw+180 end
    if yaw > 180 then yaw = yaw-360 end
    hyp = math.sqrt(((tar.x-me.x)^2)+((tar.y-me.y)^2))
    pitch = math.deg(math.acos((me.z-tar.z-offsety)/hyp))-90
    
    fov = math.abs(me.yaw-yaw)
    if fov > 180 then fov = 360-fov end
    locs[hyp]=i
    fovs[fov]=i
    table.insert(info,fov)
    table.insert(info2,hyp)
    end
    end
    table.sort(info)
    table.sort(info2)
    local tempID = fovs[info[1]]
    if tempID==nil then return 1337, 1337 end
    tar.x = readfloat(radar+xo+(tempID*0x140),4)
    tar.y = readfloat(radar+yo+(tempID*0x140),4)
    local tempDIST = math.sqrt(((tar.x-me.x)^2)+((tar.y-me.y)^2))
    local tempFOV = math.tan(math.rad(info[1]))*tempDIST
    return tempID, tempFOV
    end
    
    function isOppo(id)
    local team = readmem(radar+to+(id*0x140),4)
    local myTeam = readmem(radar+to+(localid()*0x140),4)
    return (myTeam == 2 and team == 3) or (myTeam == 3 and team == 2)
    end
    
    function getString(Addr,length)
    local temp = ''
    for i=0,length-1 do
    byte=readmem(Addr+i,1)
    if byte==0x00 then return temp end
    temp=temp..string.char(byte)
    end
    return temp
    end
    
    function breakAngle(a)
    local xlen = math.cos(a)*9
    local ylen = math.sin(a)*9
    return xlen, ylen
    end
    
    if aimmode[1]=='fov' then
    id, diff = getFov()
    if diff < aimmode[2]*10 and diff > 0 then inFov=1 else inFov=0 end
    else
    id, diff = getDist()
    inFov=1
    end
    cmd("+left")
    while keyDown(key)~=0 and inFov==1 and id~=1337 do
    hp = readmem(radar+ho+(id*0x140),4)
    if keeptarget==1 and hp<=0 then
    if aimmode[1]=='fov' then
    id, diff = getFov()
    if diff < aimmode[2]*10 and diff > 0 then inFov=1 end
    else
    id, diff = getDist()
    end
    end
    if id==1337 then break end
    me.x = readfloat(myXaddr,4)
    me.y = readfloat(myYaddr,4)
    me.z = readfloat(myZaddr,4)
    me.yaw = readfloat(myYawaddr,4)
    tar.x = readfloat(radar+xo+(id*0x140),4)
    tar.y = readfloat(radar+yo+(id*0x140),4)
    tar.z = readfloat(radar+zo+(id*0x140),4)
    tar.yaw = readfloat(radar+yao+(id*0x140),4)*math.pi/180
    
    tempx, tempy = breakAngle(tar.yaw)
    
    tar.x = tar.x + tempx
    tar.y = tar.y + tempy
    
    yaw = math.deg(math.atan(math.abs(tar.y-me.y)/math.abs(tar.x-me.x)))
    pitch = math.deg(math.acos((me.z-tar.z-offsety)/math.sqrt(((tar.x-me.x)^2)+((tar.y-me.y)^2))))-90
    
    if tar.x < me.x then yaw = yaw+180 end
    if tar.x > me.x and me.y > tar.y then yaw = 360-yaw end
    if tar.x < me.x and me.y < tar.y then yaw = 360-yaw end
    
    speed = yaw-me.yaw
    if speed < -180 then speed = 360 + speed end
    if speed > 180 then speed = -360 + speed end
    
    cmd("cl_yawspeed "..((speed/2)*smooth))
    setCVar("cl_pitchup",pitch) setCVar("cl_pitchdown",-pitch)
    trigger = readmem(readmem(client+0x4CEE0C,4)+0x1450,4)
    if (tick > shootdelay and autoshoot==1 and trigger > 0) or autoshoot==2 then
    rawcmd("+attack\n")
    wait(20)
    rawcmd("-attack\n")
    tick = 1
    end
    tick = tick + 1
    wait(1)
    end
    id = -1
    cmd("-left;-right;-attack")
    setCVar("cl_pitchup",89)
    setCVar("cl_pitchdown",89)
    print("Script stopped.\n",255,0,0)
    
    --Bhop--
    print("*",0x32,0xCD,0x32)print("******BunnyHop For The New CS:S****",0xd2,0x02,0x02)print("*\n",0x32,0xCD,0x32)
    print("BunnyHop successfully loaded!\n",0x07,0x02,0xd2)
    print("Script by Atomics aka Timo!\n",0x07,0x02,0xd2)
    print("*",0x32,0xCD,0x32)print("***********************************",0xd2,0x02,0x02)print("*\n",0x32,0xCD,0x32)
    clientbase=getBaseAddr("client.dll")
    guibase=getBaseAddr("vguimatsurface.dll")
    tier0=getBaseAddr("tier0.dll")
    groundAddr=clientbase+0x5108F0
    escAddr=guibase+0x113314
    chatAddr=readmem(tier0+0x30DA8,4)+0x7027650
    cmd("unbind space")
    
    function onGround()
       return readmem(groundAddr,4)
    end
    
    function guiOpen()
       if (readmem(escAddr,4)==1 or readmem(chatAddr,4)==1) then
          return 1
       end
       return 0
    end
    
    while (keyDown(35)==0) do
       if (keyDown(32)~=0) and (onGround()~=-1) and (guiOpen()==0) then
          rawcmd("+jump\n")
          wait(5)
          rawcmd("-jump\n")
       else
          wait(5)
       end
    
    
    --Wallhack--
    	if args=="model" then
    		if getCVar("r_drawothermodels") == "1" then
    			setCVar("r_drawothermodels","2")
    		elseif getCVar("r_drawothermodels") == "2" then
    			setCVar("r_drawothermodels","1")
    		else
    			setCVar("r_drawothermodels","1")
    		end
    	else
    		print("You dont write model behind wallhack.lua !")
    end

    #2
    Re: [CS:S] Lua: Aimbot, Wallhack &amp; Bhop

    Too bad you didnt create a single line of this, i saw this at some CSS scripting forum long time ago.
    lolmaoman: Germans are born with a lifetime x22 login engraved into their birth certificates. True story.
    I DONT HAVE TEAMVIEWER AND IM NOT GOING TO GIVE ANY 24/7 ONLINE SUPPORT VIA STEAM, XFIRE OR OTHER IM PROGRAMS SO DONT BOTHER ASKING. THANKS.

    Comment


      #3
      Re: [CS:S] Lua: Aimbot, Wallhack &amp; Bhop

      cZ copy past =0
      ??m?

      Comment


        #4
        Re: [CS:S] Lua: Aimbot, Wallhack &amp; Bhop

        lol I was one time member at luascriptz :) but the site got deleted....
        Originally posted by God:
        Fuck this shit. I need a new planet...
        This is our moment.
        We have never been stronger.
        People are frightened yes, but
        If we show them the way
        They will rise behind us.

        Comment


          #5
          Re: [CS:S] Lua: Aimbot, Wallhack &amp; Bhop

          dito :/ he sayed after exam he will be back :/

          Comment


            #6
            Re: [CS:S] Lua: Aimbot, Wallhack &amp; Bhop

            lol i like how u guys digged up old threads
            Pressing thanks helps alot!

            Comment


              #7
              Re: [CS:S] Lua: Aimbot, Wallhack &amp; Bhop

              xDD lol I really hate people like pap1ercl1p.. he said, that he is going to make external hacks (i think with autoit...) but he just changed the site to google search engine....
              Originally posted by God:
              Fuck this shit. I need a new planet...
              This is our moment.
              We have never been stronger.
              People are frightened yes, but
              If we show them the way
              They will rise behind us.

              Comment


                #8
                Re: [CS:S] Lua: Aimbot, Wallhack &amp; Bhop

                paperclip was a good guy and tried to keep LUA alive but couldn't manage as AntiAntiPlugin had been detected and using LUA on VAC secure servers impossible.
                Ofc he wanted to make money with his aimbot scripts n stuff but he tried some good things like radarhacks and triggerbots/aimbots.
                Besides, coding external hacks ain't possible with such languages and it is a lot of work to create them and make them secure. Can't compare that to a LUA script.


                I am a bad man who doesn't waste time wondering what could have been when I am what could have been and could not have been.
                I live on both sides of the fence; the grass is always green.

                Comment


                  #9
                  Re: [CS:S] Lua: Aimbot, Wallhack &amp; Bhop

                  This was made by supericy, fucking nub.

                  Comment


                    #10
                    Re: [CS:S] Lua: Aimbot, Wallhack &amp; Bhop

                    Originally posted by .bLaZeD View Post
                    This was made by supericy, fucking nub.
                    I think it's already made clear that the OP did not code it. Infractionplane just took off.
                    lolmaoman: Germans are born with a lifetime x22 login engraved into their birth certificates. True story.
                    I DONT HAVE TEAMVIEWER AND IM NOT GOING TO GIVE ANY 24/7 ONLINE SUPPORT VIA STEAM, XFIRE OR OTHER IM PROGRAMS SO DONT BOTHER ASKING. THANKS.

                    Comment


                      #11
                      Re: [CS:S] Lua: Aimbot, Wallhack &amp; Bhop

                      cZuBzix is known code ripper. :P

                      Comment


                        #12
                        Re: [CS:S] Lua: Aimbot, Wallhack &amp; Bhop

                        Originally posted by leetchicken View Post
                        cZuBzix is known code ripper. :P
                        thanks for reviveing a long dead tread created in wwII

                        Comment


                          #13
                          Re: [CS:S] Lua: Aimbot, Wallhack &amp; Bhop

                          a moderator/admin should close this thread, tbh.

                          Comment


                            #14
                            Re: [CS:S] Lua: Aimbot, Wallhack &amp; Bhop

                            Originally posted by leetchicken View Post
                            cZuBzix is known code ripper. :P
                            GOOD FIND BRO!
                            INB4SHITSTORM // SUBSCRIBER // ROYALHACK /​/

                            Originally posted by mencore
                            I had to always watch my e-penis through a microscope and i felt like a outsider around bigger boys that used hax. Then i got hax and now i can revenge my shit life to nerds on internet. I'm also fucking girls like never before and smile of God is shining upon me now that i g0t leet hax.



                            Comment


                              #15
                              Re: [CS:S] Lua: Aimbot, Wallhack &amp; Bhop

                              What about fum1n??

                              XD

                              Comment


                                #16
                                Re: [CS:S] Lua: Aimbot, Wallhack &amp; Bhop

                                Originally posted by n0dh4r6 View Post
                                What about fum1n??

                                XD
                                fum1n has 1337 codenz-skills yo everything selfmade!(he opened the src, marks what he needs, CTRL+C, open his leet hax, CTRL+V, done! uberhax made by fum1n

                                Comment

                                Working...
                                X