jrebot vsro

04/14/2013 20:48 yangc10#1
I gotten jrebot to work on vsro server, but thing is I didn't get a chance to download the source; if anybody have the source; pls post.
04/15/2013 20:48 ofksmr#2
OMG just download jrebot and autoit
you should open the source code in the jrebot folder
there is all codes..
04/16/2013 01:53 yangc10#3
Code:
$goldCbox = GUICtrlCreateCheckbox("Gold", 336, 81, 97, 17)
$itemCbox = GUICtrlCreateCheckbox("Equipments", 336, 113, 97, 17)
$welixirCbox = GUICtrlCreateCheckbox("Weapon elixirs", 336, 146, 97, 17)
$selixirCbox = GUICtrlCreateCheckbox("Shield elixirs", 336, 177, 97, 17)
$pelixirCbox = GUICtrlCreateCheckbox("Protector elixirs", 336, 209, 97, 17)
$aelixirCbox = GUICtrlCreateCheckbox("Accessory elixirs", 336, 241, 105, 17)
$questCbox = GUICtrlCreateCheckbox("Quest items", 336, 273, 97, 17)

			ElseIf $model = "00000E5F" Then ;Weapon Elixir
				$elixirId = ParseDword()
				$globalParseIndex += 46
				$mobId = ParseDword()
				If $mobId = $killedId AND GUICtrlRead($welixirCbox) = 1 Then
					SetDrop($elixirId)
How do you know 00000E5F = Weapon Exilir? I check item.au3, but clueless.
04/16/2013 07:09 3DProgrammer#4
Quote:
Originally Posted by yangc10 View Post
Code:
$goldCbox = GUICtrlCreateCheckbox("Gold", 336, 81, 97, 17)
$itemCbox = GUICtrlCreateCheckbox("Equipments", 336, 113, 97, 17)
$welixirCbox = GUICtrlCreateCheckbox("Weapon elixirs", 336, 146, 97, 17)
$selixirCbox = GUICtrlCreateCheckbox("Shield elixirs", 336, 177, 97, 17)
$pelixirCbox = GUICtrlCreateCheckbox("Protector elixirs", 336, 209, 97, 17)
$aelixirCbox = GUICtrlCreateCheckbox("Accessory elixirs", 336, 241, 105, 17)
$questCbox = GUICtrlCreateCheckbox("Quest items", 336, 273, 97, 17)

			ElseIf $model = "00000E5F" Then ;Weapon Elixir
				$elixirId = ParseDword()
				$globalParseIndex += 46
				$mobId = ParseDword()
				If $mobId = $killedId AND GUICtrlRead($welixirCbox) = 1 Then
					SetDrop($elixirId)
How do you know 00000E5F = Weapon Exilir? I check item.au3, but clueless.

Convert 0E5F to decimal = 3679, search for 3679 id in itemdata_5000.
3679 = ITEM_ETC_ARCHEMY_REINFORCE_RECIPE_WEAPON_B = Elixir weapon.
04/16/2013 21:20 yangc10#5
ahh... I seee... thanks a bunch... :)