Valhalla Legends Forums Archive | Battle.net Bot Development | Idle Messages

AuthorMessageTime
titan0060
Does anyone know how to make an Idle/Greet message on a CSB?
August 22, 2004, 9:33 PM
Quarantine
Put a Timer on your form.
When the Timer runs out of time
Send a Message.
August 22, 2004, 9:40 PM
hismajesty
[quote author=titan0060 link=board=17;threadid=8322;start=0#msg76877 date=1093210434]
Does anyone know how to make an Idle/Greet message on a CSB?
[/quote]

Yes.
August 22, 2004, 9:42 PM
ChR0NiC
[quote author=titan0060 link=board=17;threadid=8322;start=0#msg76877 date=1093210434]
Does anyone know how to make an Idle/Greet message on a CSB?
[/quote]

Answer #1
Set the timer to an interval of what you want, 1000 = 1 second
Every time the timer fires do something like CSB.Send "Idle Message"

Answer #2
[code]
CleanSlateBot1_UserJoins(Username As String)
CSB.Send "/w " & Username & " Hello " & Username & ", I think you are hot"
End Sub
[/code]

Edit: Of course you will probably want to implement some sort of queue system, which I will not provide, that will prevent you from flooding out. You can probably get some help here
August 22, 2004, 9:44 PM
Networks
Wow dude, I agree with Stealth you really need to learn or re-learn VB because If you keep posting like this people are going to get annoyed.

Try to think of things logically at least...and search the forum.
August 22, 2004, 10:04 PM
Yegg
Networks wut do u think the forums r for.......
August 22, 2004, 10:13 PM
hismajesty
[quote author=Yegg link=board=17;threadid=8322;start=0#msg76889 date=1093212780]
Networks wut do u think the forums r for.......
[/quote]

Us to make fun of people.
August 22, 2004, 10:44 PM
ChR0NiC
[quote author=hismajesty[yL] link=board=17;threadid=8322;start=0#msg76898 date=1093214662]
Us to make fun of people.
[/quote]

For example, Spht and Userloser like to make fun of me.
August 22, 2004, 10:46 PM
Quarantine
Enable a Timer on Logon.
Set the Interval to whatever you want
Send Message

IE
[code]
'Not sure what CSB Logon Event is called so Ill make one up :P
'You should know what this is
Private Sub CleanSlateBot1_OnLogon
'Stuff
Timer1.Enabled = True
End Sub
[/code]
When the Timer Fires
[code]
Private Sub Timer1_Timer
CleanSlateBot1.Send "Wow Warrior is l33t!"
End Sub
[/code]


OMG WARRIOR YOUR SO LEET AND SMART.
August 22, 2004, 11:39 PM
Myndfyr
[quote author=Yegg link=board=17;threadid=8322;start=0#msg76889 date=1093212780]
Networks wut do u think the forums r for.......
[/quote]

The forums aren't for you to learn how to program. This is a *basic* and *menial* task. They're here for reference and help on information specific and relevant to Battle.net bot making. Having a timer fire so that you have an "anti-idle" is not specific to that, even if the end result is used on Battle.net -- perhaps the VB forum would have been better.
August 22, 2004, 11:56 PM
R.a.B.B.i.T
[quote author=titan0060 link=board=17;threadid=8322;start=0#msg76877 date=1093210434]
Does anyone know how to make an Idle/Greet message on a CSB?
[/quote]The simple answer (which everyone should have said previously): Yes.
August 23, 2004, 5:38 AM
Soul Taker
[quote author=hismajesty[yL] link=board=17;threadid=8322;start=0#msg76879 date=1093210974]
[quote author=titan0060 link=board=17;threadid=8322;start=0#msg76877 date=1093210434]
Does anyone know how to make an Idle/Greet message on a CSB?
[/quote]

Yes.
[/quote]
August 23, 2004, 11:29 AM
Networks
[quote author=Yegg link=board=17;threadid=8322;start=0#msg76889 date=1093212780]
Networks wut do u think the forums r for.......
[/quote]

Not for asking questions like: how Do progRAM in vB?

If he doesn't understand how to use a timer obviously he doesn't know VB enough. Learn the language or look up something relavent before asking questions. We aren't your professional technical support for VB everytime you have trouble for something. At least search the internet... It's like your teacher says try it before you come to me. Most of us are simply asking for that much at the least. It's like me asking you what 9 / 3 is 15 times every week.

There was a time I didn't know either but I read books and experimented heavly on my own. Don't give me that crap. I started learning VB just last summer and I think I've come pretty far without coming to the forum every 10 minutes I can't get something to work or I don't know how to do.

I am suprised even 3 - 5 people here have the patience to help these people who don't even attempt to help themselves.

And for god's sake at least ask a friend above anything else for help if it's every 10 minutes. Don't post a million times at the forum for simple things you SHOULD know if you know VB...
August 23, 2004, 11:25 PM
Gangz
Wow. This kid asks for alot of code. I say everyone should give him advice, not the actual coding. Let him try to put it together by himself
August 24, 2004, 8:19 AM
St0rm.iD
I say we give him psuedocode and see what he does.

Funny, if I had said it anywhere except here, it wouldn't have been a joke.
August 24, 2004, 3:02 PM

Search