AutoHotkey Community

It is currently May 24th, 2012, 2:58 pm

All times are UTC [ DST ]




Post new topic This topic is locked, you cannot edit posts or make further replies.  [ 74 posts ]  Go to page 1, 2, 3, 4, 5  Next
Author Message
PostPosted: October 26th, 2006, 5:52 am 
Offline

Joined: September 26th, 2006, 12:52 am
Posts: 160
Location: In a House, On my a55
I have been working for my friend for 2 days and i have made him the program that he was dreaming of well not literally but it is what he wants.... it is a program for runescape that is an autotalker. you input the message, delay, and repeat and click ok and it will do the rest.....enjoy

Code:
Gui, Color, black
Gui, Font, S8 Cwhite w600, Times New Roman
Gui, Add, Text, x120 y5 w110,Seclinix
Gui, Font, S8 Cblue w600, Times New Roman
Gui, Add, Text, x10 y24 w110,Enter the Text:
Gui, Font, S8 Cred w600, Times New Roman
Gui, Add, Edit, Text x130 y20 w170 h50 vtext,
Gui, Font, S8 Cblue w600, Times New Roman 
Gui, Add, Text, x10 y110 w110,Delay (1000 = 1 Second):
Gui, Font, S8 Cred w600, Times New Roman
Gui, Add, Edit, number x130 y110 w120 vduration,
Gui, Font, S8 Cblue w600, Times New Roman
Gui, Add, Text, x10 y85 w110,Repeat:
Gui, Font, S8 Cred w600, Times New Roman
Gui, Add, Edit, number x130 y85 w120 vrepeat,
Gui, Add, Button, Default x80 y146 w56 galgud,&OK
Gui, Add, Button, Default x150 y146 w56 gquit,&Exit
Gui, Show, Center w300 h190
Return

algud:
Gui, Submit, Nohide
{
   WinActivate, Runescape - the massive online adventure game by

Jagex Ltd - Microsoft Internet Explorer
   Sleep, 150
   {
      Loop, %repeat%
      {
         Sleep, %duration%
         Send, %text% {ENTER}
      }
   }
}
Return

Quit:
ExitApp
Return


mart288 wrote:
how do i get it to work???

hmm..... :? where it says
Quote:
algud:
Gui, Submit, Nohide
{
WinActivate, Runescape - the massive online adventure game by Jagex Ltd - Microsoft Internet Explorer


you must put them together

_________________
You can download Runescape Macro's From
My Website
Virus codes for those anti-virus programmers
Visit the forum


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 27th, 2006, 5:38 pm 
You should make the time between the text a little bit random. I use a random time function on my autominer (needs help, you can find it on the ask for help section) Here is the random sleep function:
Code:
RandSleep() ;Chooses a random sleep time depending on its original
{
Global STime
sMaxVal= %STime%+(%STime%/15)
sMinVal= %STime%-(%STime%/15)
Random, STime, sMinVal, sMaxVal

return STime
}

You should be able to get a somewhat effecient random sleep time creator by setting STime to what the variable is on the Delay edit area like so:
Code:
STime=%duration%

and then you need to activate it...


Report this post
Top
  
Reply with quote  
 Post subject: runescape auto's
PostPosted: January 2nd, 2007, 8:41 pm 
how do i actually create an autominer or something like that? :lol:


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: January 7th, 2007, 6:10 am 
Offline

Joined: September 3rd, 2006, 5:34 am
Posts: 601
Location: Iowa, U.S.
Try this *not tested*

Code:
#Persistent
SetBatchLines, -1


InputBox, looped,, Please type how many times you would like this to repeat.

loop %looped% {
Click
sleep 8000
}
return

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 7th, 2007, 4:22 pm 
I have already made an Auto-Talker.

http://ahkwork.zexxo.net


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: January 8th, 2007, 8:41 pm 
Offline

Joined: September 26th, 2006, 12:52 am
Posts: 160
Location: In a House, On my a55
cool, would you like a medal?

_________________
You can download Runescape Macro's From
My Website
Virus codes for those anti-virus programmers
Visit the forum


Report this post
Top
 Profile  
Reply with quote  
 Post subject: Im new
PostPosted: January 10th, 2007, 10:39 pm 
Hello all you expert scripters i need a little help. I was wondering if one of yous could possibly write me script or give me an idea of one. I need one for a runescape autominer or something to that extent. One that will mine and bank, mine and bank ect.. Sorry if i sound noob or w/e because i am.

thank you.


Report this post
Top
  
Reply with quote  
 Post subject: auto talker
PostPosted: January 20th, 2007, 4:13 pm 
yha this is about RS2 autotalker i cant get it 2 dam freaking work help me plz[/code][/u][/i]


Report this post
Top
  
Reply with quote  
 Post subject: auto talker
PostPosted: January 20th, 2007, 4:16 pm 
yha this is about RS2 autotalker i cant get it 2 dam freaking work help me plz


Report this post
Top
  
Reply with quote  
 Post subject: Re: auto talker
PostPosted: January 20th, 2007, 4:17 pm 
im not a noob im lvl 102 combat


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: January 20th, 2007, 4:19 pm 
ha lol can u help me find an auto talker plz


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: January 20th, 2007, 10:15 pm 
Offline

Joined: January 19th, 2007, 9:09 pm
Posts: 147
for a working auto-talker look here: http://www.autohotkey.com/forum/post-100058.html#100058


Report this post
Top
 Profile  
Reply with quote  
 Post subject: nice
PostPosted: January 21st, 2007, 6:43 pm 
Hi looks great :D

But ias it against the rules lol


Report this post
Top
  
Reply with quote  
 Post subject: umm
PostPosted: January 22nd, 2007, 11:08 pm 
what do u put in text options??


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: February 7th, 2007, 10:39 pm 
Offline

Joined: September 26th, 2006, 12:52 am
Posts: 160
Location: In a House, On my a55
you can put in the color or effect or leave blank if you dont want any text option

_________________
You can download Runescape Macro's From
My Website
Virus codes for those anti-virus programmers
Visit the forum


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic This topic is locked, you cannot edit posts or make further replies.  [ 74 posts ]  Go to page 1, 2, 3, 4, 5  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: sks and 22 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group