![]() |
|
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Newbie
Join Date: Dec 2005
Posts: 2
Rep Power: 0
![]() |
Anti-Ban AutoTyper
I'm making a autotyper that is hard to detect. I have a few ideas but no idea how to code it. I want to make the words appear every random second between 3-6 but i dont understand the random number generator very well.
Thank-You, Alex (yes, this is for runescape) |
|
|
|
|
|
#2 |
|
Programming Guru
![]() |
Maybe you could, post some code... or you know, stop being such a classic runesaper...
__________________
|
|
|
|
|
|
#3 |
|
Newbie
Join Date: Dec 2005
Posts: 2
Rep Power: 0
![]() |
I don't plan on using the autotalker myself, i'd just like to acknowledge how to make one and enhance my knowledge about the random number generator, as for the code all i have for the timer so far is
Private Sub Timer1_Timer() Timer1.Interval = 5000 (<--iwant this to be random inbetween 3 and 6) SendKeys.Send Text1.Text SendKeys.Send "{enter}" |
|
|
|
|
|
#4 |
|
Newbie
Join Date: Jan 2006
Posts: 20
Rep Power: 0
![]() |
A quick google search brought up.
Private Function RandomInteger(HighValue as Long, LowValue as Long) as Long
RandomInteger = Int((HighValue - Lowvalue + 1) * Rnd + Lowvalue)
End Function |
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|