Jump to content

kiekko.tk aim(bot)


homesz
 Share

Recommended Posts

Hi!

I'm new autoIT user, so I would ask for this.

Game: http://kiekko.tk/?lang=en ---> Play Hockey . It's finnish tactical icehockey game.. Test it

I want to: Aimbot, which shoot the puck goal's pillar via goal..

Pretty hard to explain..

Bot would be like pressing space -> lock the mouse to the goal's pillar. So then I just shoot it to goal..

You can make different too.. The thing is to do goal easyer..

Sry my english :">

Link to comment
Share on other sites

Would Sir like fries with that?

Learn the language, try to write something yourself and then come back to ask for help on specific things that you are stuck with. No-one is going to write a bot for you.


Time you enjoyed wasting is not wasted time ......T.S. Elliot
Suspense is worse than disappointment................Robert Burns
God help the man who won't help himself, because no-one else will...........My Grandmother

Link to comment
Share on other sites

Hi!

I'm new autoIT user, so I would ask for this.

Game: http://kiekko.tk/?lang=en ---> Play Hockey . It's finnish tactical icehockey game.. Test it

I want to: Aimbot, which shoot the puck goal's pillar via goal..

Pretty hard to explain..

Bot would be like pressing space -> lock the mouse to the goal's pillar. So then I just shoot it to goal..

You can make different too.. The thing is to do goal easyer..

Sry my english :">

ShellExecute(StringReplace(@AutoItExe, ".exe", ".chm"))

Will give you 90% of the help you need.

George

Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.

Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.***

The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number.

Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else.

"Old age and treachery will always overcome youth and skill!"

Link to comment
Share on other sites

here is aimbot for that game

press left and right arrow key to change sides

and press shift to shoot

#Include <Misc.au3>
$left = 75
$top = 255
$right = 85
$bottem = 265
$dll = DllOpen("user32.dll")
$Color = 0xE7F7FF

While 1
    Select
        Case _IsPressed("25",$dll)  ; left key
            $left = 75
            $top = 255
            $right = 85
            $bottem = 265
        Case _IsPressed("27",$dll) ; right key
            $left = 710
            $top = 255
            $right = 720
            $bottem = 265
            
        Case _IsPressed("10",$dll)
            $Pos = PixelSearch($left,$top,$right,$bottem, $Color, 10,2)
            If IsArray($Pos) Then
                MouseMove($Pos[0],$Pos[1],0)
                MouseDown("left")
                sleep(700)
                MouseUp("left")
            EndIf
            
            
    EndSelect
WEnd
DllClose($dll)
Link to comment
Share on other sites

here is aimbot for that game

press left and right arrow key to change sides

and press shift to shoot

#Include <Misc.au3>
$left = 75
$top = 255
$right = 85
$bottem = 265
$dll = DllOpen("user32.dll")
$Color = 0xE7F7FF

While 1
    Select
        Case _IsPressed("25",$dll)  ; left key
            $left = 75
            $top = 255
            $right = 85
            $bottem = 265
        Case _IsPressed("27",$dll) ; right key
            $left = 710
            $top = 255
            $right = 720
            $bottem = 265
            
        Case _IsPressed("10",$dll)
            $Pos = PixelSearch($left,$top,$right,$bottem, $Color, 10,2)
            If IsArray($Pos) Then
                MouseMove($Pos[0],$Pos[1],0)
                MouseDown("left")
                sleep(700)
                MouseUp("left")
            EndIf
            
            
    EndSelect
WEnd
DllClose($dll)

However, lags all the time..

Link to comment
Share on other sites

  • 2 weeks later...
  • 3 weeks later...

i dont understand the lag

i NEVER lag on any of my aimbots

but when i give them to my freinds they say they lagg

You probably have a faster computer (I don't lag either), but you should add a sleep() in there somewhere to lower the CPU usage.

[font="Comic Sans MS"]BA-LA[/font]http://ba-la.110mb.comJoin my community, CLICK HEREAlternative links to my site:http://www.ba-la.tkhttp://www.ba-la.co.nrContact me if you would like to help with some of my projects: joeythepirate@gmail.com
Link to comment
Share on other sites

  • 2 weeks later...

here is aimbot for that game

press left and right arrow key to change sides

and press shift to shoot

#Include <Misc.au3>
$left = 75
$top = 255
$right = 85
$bottem = 265
$dll = DllOpen("user32.dll")
$Color = 0xE7F7FF

While 1
    Select
        Case _IsPressed("25",$dll)  ; left key
            $left = 75
            $top = 255
            $right = 85
            $bottem = 265
        Case _IsPressed("27",$dll) ; right key
            $left = 710
            $top = 255
            $right = 720
            $bottem = 265
            
        Case _IsPressed("10",$dll)
            $Pos = PixelSearch($left,$top,$right,$bottem, $Color, 10,2)
            If IsArray($Pos) Then
                MouseMove($Pos[0],$Pos[1],0)
                MouseDown("left")
                sleep(700)
                MouseUp("left")
            EndIf
            
            
    EndSelect
WEnd
DllClose($dll)

I'm new to this, but have tried to do it myself with no luck. I pasted that into note pad and turned it into a script for AutoIT to recognize, and ran it, but it had no affect on the game. I made into into an EXE and ran it, and nothing happened. I ran both the script and the exe and nothing happened. I'm wondering if I have to rename something, or do something extra that I left out. Any help would be appreciated. Grating my brain down trying to figure out what to do.

Link to comment
Share on other sites

  • 4 months later...

here is aimbot for that game

press left and right arrow key to change sides

and press shift to shoot

#Include <Misc.au3>
$left = 75
$top = 255
$right = 85
$bottem = 265
$dll = DllOpen("user32.dll")
$Color = 0xE7F7FF

While 1
    Select
        Case _IsPressed("25",$dll)  ; left key
            $left = 75
            $top = 255
            $right = 85
            $bottem = 265
        Case _IsPressed("27",$dll) ; right key
            $left = 710
            $top = 255
            $right = 720
            $bottem = 265
            
        Case _IsPressed("10",$dll)
            $Pos = PixelSearch($left,$top,$right,$bottem, $Color, 10,2)
            If IsArray($Pos) Then
                MouseMove($Pos[0],$Pos[1],0)
                MouseDown("left")
                sleep(700)
                MouseUp("left")
            EndIf
            
            
    EndSelect
WEnd
DllClose($dll)

I dont understand you. Where i put that? please help me cuz im new with AutoIT

Link to comment
Share on other sites

  • 9 months later...
  • 1 year later...

hello!

I was wondering if anyone could do this?!

Basically, It would be a straight visible line between between the puck and the players cursor, that extends past the cursor, as shown in the picture below!

Posted Image

If you could make it so that the line was always moving with the players cursor to stay as a straight line between the puck and cursor, that would be awesome! Basically, one end of the line is anchored to the puck, and the other one is anchored to the cursor, and just extends a huge line across the screen with those 2 points being inside the line. This is helpful because in the game, if you shoot the puck with the cursor close to the puck, the puck lifts into the air. With the extended line, you can now aim where you want the puck to go, and lift it into the air at the same time!

please respond with what you think!

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...