[Release] mBot Manager (rSRO)

01/01/2011 23:11 jremy#1
outdated.
01/03/2011 16:58 Nova1337#2
Not bad only could you make it go to system tray when X ?
01/03/2011 17:11 Darkness™#3
Nice, that was what i was searching. ;)


Thanks!
01/03/2011 17:35 jremy#4
Quote:
Originally Posted by Nova1337 View Post
Not bad only could you make it go to system tray when X ?
Added "Hide Manager" button for that.
01/04/2011 18:21 Burton_1993#5
Clientless aint working
01/09/2011 21:11 meistermiky#6
dont work with vista idk why plss help!
01/09/2011 22:43 Nova1337#7
Quote:
Originally Posted by meistermiky View Post
dont work with vista idk why plss help!
Such detailed error report :awesome:
01/10/2011 00:18 jremy#8
Quote:
Originally Posted by meistermiky View Post
dont work with vista idk why plss help!
Run as administrator
01/11/2011 15:40 Darkness™#9
the stats aren't working with the new mbot version v1.0 RC 4.

fix it please!
01/11/2011 21:38 jremy#10
Quote:
Originally Posted by Darkness™ View Post
the stats aren't working with the new mbot version v1.0 RC 4.

fix it please!
Fixed that, added reset stats and log.
01/12/2011 12:00 theoneofgod#11
The statistics are refreshing when the data is the same, so it causes a flicker effect.
01/13/2011 21:47 jremy#12
Quote:
Originally Posted by theoneofgod View Post
The statistics are refreshing when the data is the same, so it causes a flicker effect.
I fixed that and removed the timer for refreshing. It's much more comfortable to use now, thanks! Also fixed minimizing to tray and updated control id's for all buttons.
01/14/2011 13:57 tony3009#13
is this tool saving some cpu cuz I have 3 chars to bot and mbot clientless uses more cpu than ribot?/
01/14/2011 15:43 silvio132#14
this is bot is suck ribot rlzz!!!
01/14/2011 15:59 theoneofgod#15
Just some slight advice. When you check if variable is NULL... If Not $handle = "", you can use If $handle <> "" instead.

You can replace "[CLASS:ComboBox;INSTANCE:1]" with just ComboBox1

And with this...

Code:
		If GUICtrlRead($chatcombo) = "PM" Then
			ControlSend($handle, "", "[CLASS:ComboBox;INSTANCE:1]", "{DOWN}")
		ElseIf GUICtrlRead($chatcombo) = "Party" Then
			ControlSend($handle, "", "[CLASS:ComboBox;INSTANCE:1]", "{DOWN}")
			ControlSend($handle, "", "[CLASS:ComboBox;INSTANCE:1]", "{DOWN}")
		ElseIf GUICtrlRead($chatcombo) = "Guild" Then
			ControlSend($handle, "", "[CLASS:ComboBox;INSTANCE:1]", "{DOWN}")
			ControlSend($handle, "", "[CLASS:ComboBox;INSTANCE:1]", "{DOWN}")
			ControlSend($handle, "", "[CLASS:ComboBox;INSTANCE:1]", "{DOWN}")
		ElseIf GUICtrlRead($chatcombo) = "Academy" Then
			ControlSend($handle, "", "[CLASS:ComboBox;INSTANCE:1]", "{DOWN}")
			ControlSend($handle, "", "[CLASS:ComboBox;INSTANCE:1]", "{DOWN}")
			ControlSend($handle, "", "[CLASS:ComboBox;INSTANCE:1]", "{DOWN}")
			ControlSend($handle, "", "[CLASS:ComboBox;INSTANCE:1]", "{DOWN}")
		ElseIf GUICtrlRead($chatcombo) = "Union" Then
			ControlSend($handle, "", "[CLASS:ComboBox;INSTANCE:1]", "{DOWN}")
			ControlSend($handle, "", "[CLASS:ComboBox;INSTANCE:1]", "{DOWN}")
			ControlSend($handle, "", "[CLASS:ComboBox;INSTANCE:1]", "{DOWN}")
			ControlSend($handle, "", "[CLASS:ComboBox;INSTANCE:1]", "{DOWN}")
			ControlSend($handle, "", "[CLASS:ComboBox;INSTANCE:1]", "{DOWN}")
		EndIf
Replace with...

Code:
$iChatType = 0
Switch GUICtrlRead($chatcombo)
	Case "PM"
		$iChatType = 1
	Case "Party"
		$iChatType = 2
	Case "Guild"
		$iChatType = 3
	Case "Academy"
		$iChatType = 4
	Case "Union"
		$iChatType = 5
EndSwitch
For $i = 1 To $iChatType
	ControlSend($handle, "", "ComboBox1", "{DOWN}")
Next