Jump to content

Autoit finally cant do something.


Recommended Posts

Hi,

I guess Valuater did something for that game. Search at his sig. :D

So long,

Mega

Scripts & functions Organize Includes Let Scite organize the include files

Yahtzee The game "Yahtzee" (Kniffel, DiceLion)

LoginWrapper Secure scripts by adding a query (authentication)

_RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...)

Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc.

MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times

Link to comment
Share on other sites

quotes of conversation from sparrow and me

he wanted a prog for his dad

i am very trust worthy

1 I the the most post of any member... only developers have more.. I have given much of myself

2 all of my efforts have been to help people here... look at my scripts, and my posts... including the ones with you

3 you could donate ... just because you wanted to support Autoit.. not just to get something... you can't get burned with that idea

4 I have done every thing you have asked

5 I dont even want the money personally

is that not... trust worthy

since i have done everything you asked.... and I have asked nothing of you

My ONE requirement is you donate first ... then i will put your splash and name on every part... and remove my name

8)

how much of a donate are we talking about then?

your quote

how about the just $50 then...

listen i make over $50 and hour ( alot more )

and i have spent at least 3 full days on this

i only asked what you said... for other donations

ok?

8)

Uhh, lets see I am only 15... I had to give my birthday money to donate that $50..

*** lowered to $20 and he told me he only had $2

never saw nada

8)

NEWHeader1.png

Link to comment
Share on other sites

HI,

I'll try that. Till now, the bot loses in level 8, too.

So long,

Mega

Scripts & functions Organize Includes Let Scite organize the include files

Yahtzee The game "Yahtzee" (Kniffel, DiceLion)

LoginWrapper Secure scripts by adding a query (authentication)

_RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...)

Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc.

MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times

Link to comment
Share on other sites

  • Moderators

GJ Lar... 24365 level 8

Damn Lar.. Made it to 9 and still not your hi score!!

Edited by SmOke_N

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Link to comment
Share on other sites

Hi,

this bot made it to level 9, too and rechaed 27955 points.

HotKeySet("1", "start")
HotKeySet("2", "end")
HotKeySet("3", "click")
Global $a[2] = [503, 488]
Global $s[2] = [503, 488]

TrayTip("Bot by Th.Meger", "http://www.addictinggames.com/curveball.html" & @CRLF & "Start = 1" & @CR & "End = 2" & @CR & "Click = 3", -1, 1)

While 1
    Sleep(1000)
WEnd

Func start()
    AdlibEnable("click", 10000)
    While 1
        $a = PixelSearch(266, 300, 738, 614, 0xEBFFE7, 1, 2)
        If Not @error Then
            MouseMove($a[0], $a[1], 0)
        EndIf
        Sleep(0)
    WEnd
EndFunc   ;==>start

Func click()
    MouseClick("left", $s[0], $s[1])
EndFunc   ;==>click

Func end()
    Exit (0)
EndFunc   ;==>end

Ps: There is still something to improve. :D

So long,

Mega

Scripts & functions Organize Includes Let Scite organize the include files

Yahtzee The game "Yahtzee" (Kniffel, DiceLion)

LoginWrapper Secure scripts by adding a query (authentication)

_RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...)

Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc.

MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times

Link to comment
Share on other sites

It in near impossible to have a autoit script play this game.

http://www.addictinggames.com/curveball.html

I have had many friends try and fail thats really good with autoit

Please try and refrain from posting these remarkably stupid posts. Not only is this easy to script, but it has been done, several times on the forums. The topic title that would of been much more appropriate would be, "Once again, I cant do something with AutoIt".

I'd like to know who your friends are that are very good with autoit but failed at writing this script.

AutoIt Scripts:Aimbot: Proof of Concept - PixelSearching Aimbot with several search/autoshoot/lock-on techniques.Sliding Toolbar - Add a nice Sliding Toolbar to your next script. Click the link to see an animation of it in action!FontInfo UDF - Get list of system fonts, or search to see if a particular font is installed.Get Extended Property UDF - Retrieve a files extended properties (e.g., video/image dimensions, file version, bitrate of song/video, etc)
Link to comment
Share on other sites

  • Moderators

Posted Image

#include <IE.au3>

Opt("PixelCoordMode", 2)
Opt("MouseCoordMode", 2)

HotKeySet("{ESC}", "_Exit")

$sURL = "http://farm.addictinggames.com/D78AQSAKQLQWI9/1258.swf"
$oIE = _IEAttach($sURL, "url")
If Not IsObj($oIE) Then
    $oIE = _IECreate($sURL)
Else
    WinActivate($sURL)
EndIf
WinMove($sURL, "", (@DesktopWidth / 2) - 300, (@DesktopHeight / 2) - 300, 600, 600)
$a = ControlGetPos($sURL, "", "MacromediaFlashPlayerActiveX1")
If Not @error Then
    $a[2] += $a[0]
    $a[3] += $a[1]
    $a[0] += 70
    $a[1] += 80
    $a[2] -= 70
    $a[3] -= 80
Else
    Exit
EndIf

While 1
    $c = PixelSearch($a[0], $a[1], $a[2], $a[3], 0x8CFF71, 1, 2)
    If Not @error Then
        MouseMove($c[0], $c[1], 0)
        Sleep(3)
    EndIf
    $c = PixelSearch($a[0], $a[1], $a[2], $a[3], 0xF7FFF5, 1, 2)
    If Not @error Then
        MouseClick("left", $c[0], $c[1], 1, 0)
    EndIf
WEnd

Func _Exit()
    Exit
EndFunc   ;==>_Exit
Link to comment
Share on other sites

Level 9 - 31.020. :D

So long,

Mega

Scripts & functions Organize Includes Let Scite organize the include files

Yahtzee The game "Yahtzee" (Kniffel, DiceLion)

LoginWrapper Secure scripts by adding a query (authentication)

_RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...)

Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc.

MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

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