Author | Message | Time |
---|---|---|
-=]Unknown[=- | Can Someone please show me an example on how to view someones profile using CleanSlateBot? :) [edit 4-14-05: updated title] | February 4, 2003, 9:09 PM |
haZe | Heh..I could use that too...But, Anyways, 'Unknown', its the same as viewing on a regular bot. Just send the packets. Hmm nevermind its not on bnetdocs... | February 4, 2003, 10:06 PM |
Arta | http://www.valhallalegends.com/arta/bnetdocs/content.php?id=26&Sender=C | February 5, 2003, 7:15 AM |
HiVe | Hmm.. I see how to do it with sending packets, but isn't there some way to do it with CleanSlateBot's RequestKey function? :P | February 11, 2003, 7:57 PM |
haZe | Gives me errors when I use it. | February 11, 2003, 8:02 PM |
Coltz | When you send the packet you have to request the keys | February 12, 2003, 8:29 AM |
Arta | What's your code? How are you constructing the packet? | February 12, 2003, 10:50 AM |
Blade_360 | heres my code sometimes it works and for some reason sometimes it doesn't [code]Private Sub CleanSlateBot1_KeyReturn(KeyName As String, KeyValue As String) If ProfileRequest = True Then If KeyName = "Profile\Age" Then frmProfile.lblage.Caption = KeyValue ElseIf KeyName = "Profile\Location" Then frmProfile.lblloc.Caption = KeyValue ElseIf KeyName = "Profile\Description" Then frmProfile.txtdescr(1).Text = KeyValue ElseIf KeyName = "Profile\Sex" Then frmProfile.lblSex.Caption = KeyValue End If frmProfile.SetFocus Else strTime = "[" & Time & "] " If KeyName = "Profile\Age" Then frmProfile.lblage.Caption = KeyValue ElseIf KeyName = "Profile\Location" Then frmProfile.lblloc.Caption = KeyValue ElseIf KeyName = "Profile\Description" Then frmProfile.txtdescr(1).Text = KeyValue ElseIf KeyName = "Profile\Sex" Then frmProfile.lblSex.Caption = KeyValue End If End Sub [/code] and of course [code] CleanSlateBot1.RequestKey Profile, Right(cbosend.Text, Len(cbosend.Text) - 9), "Profile\Age", "Profile\Sex", "Profile\Description", "Profile\Location"[/code] | February 12, 2003, 11:15 PM |
Grok | [quote][code]strTime = "[" & Time & "] "[/code][/quote] Purpose of getting Time in this function? | February 13, 2003, 2:02 PM |
Noodlez | whats the point of checking if profilerequest = true if your going to execute the same code anyway? Well, your setting the time but I don't see it being used. | February 13, 2003, 3:59 PM |
Blade_360 | I guess I never thought of that but its not like its hurting anything | February 13, 2003, 10:07 PM |
Zakath | How is redundant code "not hurting anything?" It increases executable size and processing time for the task. In this example the effect might not be noticable, but imagine if you had thousands of lines, including some recursive loops or something...it's just a horrible practice. | February 13, 2003, 10:19 PM |
Blade_360 | ok well I guess I'll delete it | February 13, 2003, 10:22 PM |