Jump to content

My First Script for Guild Wars


Aortal
 Share

Recommended Posts

Recruitment Advertising for Guild Wars - Simple bot you cant go wrong with.

; AutoIt Version: 3.1.0
; Guild wars, Guild Advertisment.
 
Local $PromoteTimer = TimerInit()

While 1
;
    Sleep(20000)
    If TimerDiff($PromoteTimer) > 10000 Then
        $PromoteTimer = TimerInit()
        Sleep(1000)
        BlockInput (1)
    WinActivate("Guild Wars", "")
    Send('{ENTER}')
        Sleep(1000)
        Send('{!}..:: Recruiting new players to join Orion Guards --- Guild Hall and Cape --- Join Now and Send Whisper ::..{ENTER}')
        BlockInput (0)
    EndIf
;
    Sleep(30000)

WEnd
    Exit 0
;EndFunc
Edited by Aortal
Link to comment
Share on other sites

Nice bot, maybe you will like this little ajustment:

Hotkeyset("{pause}", "recruit")

While 1
sleep(100)
wend

func recruit()
;send code
 BlockInput (1)
    WinActivate("Guild Wars", "")
    Send('{ENTER}')
        Sleep(1000)
        Send('{!}..:: Recruiting new players to join Orion Guards --- Guild Hall and Cape --- Join Now and Send Whisper ::..{ENTER}')
        BlockInput (0)
;end send code
sleep(1000)                ; Optional, but this protects you against spamming.
endfunc

ps. didn't test it because i don't have guild wars...

Edited by logi
Link to comment
Share on other sites

I was just about to post a new version with a pause button lol, but you got in there first. Yours is also rather neater..... man I suck..

-Edit: Ahh, i've tested it and seen what you've done.

Edited by Aortal
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...