Valhalla Legends Forums Archive | Battle.net Bot Development | Command help

AuthorMessageTime
blinkdude
i saw some code on this but using a textbox as the "username " for the master... i want to use a listview for multipul people to do the command ... i need help on the code, they had it
[code]
If Username = lstusers.txt
[/code]
i need it to run off a list view any help ? x.O :)
[code]
If Username = lstusers.ListItems Then
If Left((LCase(Message)), 11) = (Form2.txttriger.Text & "disconnect") Then
cbs.Disconnect
End If
End If
[/code]
July 19, 2003, 7:45 AM
______
[code]
dim i as integer
Dim TempUser as string
for i = 1 to lstusers.ListItems.Count
tempuser = lstusers.ListItems(i).text
if lcase(username) = lcase(tempuser) then
msgbox Wow they " = "
endif
next i
[/code]
July 19, 2003, 8:08 AM

Search