|
You last visited: Today at 10:35
Advertisement
Conquer partner alternative!
Discussion on Conquer partner alternative! within the Conquer Online 2 forum part of the MMORPGs category.
12/18/2006, 23:17
|
#1
|
elite*gold: 0
Join Date: Sep 2005
Posts: 162
Received Thanks: 85
|
If anyone can find/write a program that would search/locate pixels on the active screen and that moves mouse on it, then i can make it.
Its not an easy job to do, but someone who knows some programming should do it. As u know there are milions different pixels over the screen due to different color, but for example basilisks all look the same, so their pixels match. I can pick its color, but i dont know any programs who can find exact pixels on same screen and would move cursor on it. Just find/make me a pixel finder/locater
|
|
|
12/18/2006, 23:23
|
#2
|
elite*gold: 0
Join Date: May 2006
Posts: 149
Received Thanks: 112
|
autohotkey can do it
|
|
|
12/19/2006, 00:04
|
#3
|
elite*gold: 0
Join Date: Aug 2006
Posts: 449
Received Thanks: 4
|
well you won't be matching the whole thing, obviously, but maybe a a dot on the shadow (prolly invisible to human) that has a special color than the rest of the map/monsters/drops.
yes i use autohotkey too. Wierd syntax, but pretty easy to learn.
|
|
|
12/19/2006, 00:17
|
#4
|
elite*gold: 0
Join Date: Apr 2006
Posts: 249
Received Thanks: 79
|
I have just completed an archer bot and plan on uploading it soon, but there is one problem. It does exactly that, it searches for the health bars of monsters and right clicks (scatters). I made it with AutoIt and edited my monster.dat so they are one pixel. Only problem is sometimes the mouse clicks a monster's name or health bar when trying to jump, and it throws off the coordinates.
If somebody could please maybe show me a way to make a character move that is nonpixel-based, i could just delete the moving function of the bot I made and just time the scatter function to work with the other program that moves the character nonpixel-based.
|
|
|
12/19/2006, 00:33
|
#5
|
elite*gold: 0
Join Date: Jul 2006
Posts: 5
Received Thanks: 0
|
Opt("GUIOnEventMode", 1)
Opt("MouseCoordMode", 0)
Opt("PixelCoordMode", 0)
#include <GUIConstants.au3>
Global $Paused
Global $home
Global $end
Dim $SearchMob=0
$Mess=GUICtrlCreateLabel("<HOME> to switch on",10,5,130,15)
HotKeySet("{PAUSE}", "Pausar")
HotKeySet("{ESC}", "Sair")
HotKeySet("{HOME}", "Scatter")
HotKeySet("{END}", "End")
ProgressOn("Caregando BOT", "Porcentagem", "0 Porcentagem")
For $i = 10 to 100 step 10
sleep(100)
ProgressSet( $i, $i & " Porcentagem")
Next
ProgressSet(100 , "Pronto", "Completo")
sleep(500)
ProgressOff()
MsgBox(4096, "Conquer BOT", "Use tecla 'HOME' para Scatter e 'END' para upar automatico | Tecla 'PAUSE' Pausa o BOT | Tecla 'ESC' sai do BOT", 10)
$resposta = InputBox("AutoPOT", "1 = 80% HP // 2 = 50% HP // 3 = 20% HP", "", " M1")
while 1=1
sleep(100)
if WinExists("[Conquer2.0]") then
If WinActive("[Conquer2.0]") Then
If $SearchMob Then
hp()
MobSearch()
EndIf
EndIf
EndIf
WEnd
Func Scatter()
if WinExists("[Conquer2.0]") then
If WinActive("[Conquer2.0]") Then
$home = NOT $home
While $home
sleep(100)
MouseClick("Right")
hp()
JumpAround()
WEnd
EndIf
EndIf
EndFunc ;==> Scatter
Func End()
if WinExists("[Conquer2.0]") then
If WinActive("[Conquer2.0]") Then
$SearchMob=NOT $SearchMob
If $SearchMob Then
GUICtrlSetData($Mess,"<END> Desligado")
Else
GUICtrlSetData($Mess,"<END> Ligado")
EndIf
EndIf
EndIf
EndFunc ;==> Comeca o BOT
Func MobSearch()
$Coords=PixelSearch(200,100,825,600,12059395, 5)
If NOT @error Then
MouseClick("left",$Coords[0],$Coords[1]+30,1,0)
Else
JumpAround()
EndIf
EndFunc ;==> Procurar Monstro()
Func JumpAround()
$xrand=Random(0,880,1)
$yrand=Random(0,660,1)
MouseMove($xrand,$yrand,0)
Send("{CTRLDOWN}")
MouseClick("Left")
Send("{CTRLUP}")
Sleep(1000)
EndFunc ;===> Pular
Func hp()
if ($resposta = "1") Then
if (PixelGetColor(34,702) = 5926259) then
for $i = 1 to 4
send("{f2}")
sleep(100)
next
EndIf
EndIf
if ($resposta = "2") Then
if (PixelGetColor(34,718) = 5926259) then
for $i = 1 to 4
send("{f2}")
sleep(100)
next
EndIf
EndIf
if ($resposta = "3") Then
if (PixelGetColor(33,736) = 4874611) then
for $i = 1 to 4
send("{f2}")
sleep(100)
next
EndIf
EndIf
EndFunc ;==> Recuperar HP
Func Pausar()
$Paused = NOT $Paused
While $Paused
sleep(100)
ToolTip('BOT "Pausado"',0,0)
WEnd
ToolTip("")
EndFunc
Func Sair()
Exit 0
EndFunc
|
|
|
12/19/2006, 00:46
|
#6
|
elite*gold: 0
Join Date: Sep 2006
Posts: 199
Received Thanks: 26
|
Quote:
Originally posted by spoonieluv97@Dec 19 2006, 00:17
I have just completed an archer bot and plan on uploading it soon, but there is one problem. It does exactly that, it searches for the health bars of monsters and right clicks (scatters). I made it with AutoIt and edited my monster.dat so they are one pixel. Only problem is sometimes the mouse clicks a monster's name or health bar when trying to jump, and it throws off the coordinates.
If somebody could please maybe show me a way to make a character move that is nonpixel-based, i could just delete the moving function of the bot I made and just time the scatter function to work with the other program that moves the character nonpixel-based.
|
Just read the coordinates from memory and move accordingly.
There are 8 possible moves (X is the player).
1 2 3
4 X 5
6 7 8
If it's just for leveling doing a macro is pretty easy.
|
|
|
12/19/2006, 00:57
|
#7
|
elite*gold: 0
Join Date: Jan 2006
Posts: 1,919
Received Thanks: 178
|
#move CO2 Main Discussions / Questions
Just to remind Bots & Macro section only for "Release"
DM
|
|
|
12/19/2006, 01:16
|
#8
|
elite*gold: 0
Join Date: Apr 2006
Posts: 249
Received Thanks: 79
|
Ok, I had a lot of GUI's before hand where user enters the amount of arrows and what not, but I didn't include it because it was long. But here is what I have.
$packs=$packs*500
While $packs>=0
send("{CTRLDOWN}")
MouseClick("left", 509,81,1,1)
sleep(3000)
$coord = Pixelsearch(0,97,1019,569, "0xB50400", 5, 1 )
If @error <> 1 then
Mouseclick("right",$coord[0], $coord[1],1,1)
$packs=$packs-3
$left=$left-3
Endif
sleep(2000)
MouseClick("left", 986,408,1,1)
sleep(3000)
$coord = Pixelsearch(0,97,1019,569, "0xB50400", 5, 1 )
If @error <> 1 then
Mouseclick("right",$coord[0], $coord[1],1,1)
$packs=$packs-3
$left=$left-3
Endif
sleep(2000)
MouseClick("left", 513,712,1,1)
sleep(3000)
$coord = Pixelsearch(0,97,1019,569, "0xB50400", 5, 1 )
If @error <> 1 then
Mouseclick("right",$coord[0], $coord[1],1,1)
$packs=$packs-3
$left=$left-3
Endif
sleep(2000)
MouseClick("left", 36,388,1,1)
sleep(3000)
$coord = Pixelsearch(0,97,1019,569, "0xB50400", 5, 1 )
If @error <> 1 then
Mouseclick("right",$coord[0], $coord[1],1,1)
$packs=$packs-3
$left=$left-3
Endif
sleep(200)
send("{CTRLUP}")
if $left<=3 Then
sleep(400)
send("{F1}")
$left=500
sleep(400)
EndIf
WEnd
----------------------------------------------------------------------
_1
4x2
_3
My bot jumps to 1, looks for mosnters and scatters.
My bot then jumps to 2, looks for mosnters and scatters.
My bot then jumps to 3, looks for mosnters and scatters.
My bot then jumps to 4, looks for mosnters and scatters.
The problem is when it jumps to the certain coords, sometime a monster is standing where those coords are. My character clicks the monster instead of jumping to the coords. I edited my monster.dat, but still it clicks the NAME of the monster sometimes, and doesn't jump there, throwing off the position of my character.
|
|
|
12/19/2006, 02:26
|
#9
|
elite*gold: 0
Join Date: Aug 2006
Posts: 449
Received Thanks: 4
|
yes if you read memory you can simply check if you're in the same spot as before. I wish i can help but i only know about autohotkey. See Coldstart's thread on how to read memory.
|
|
|
12/19/2006, 03:10
|
#10
|
elite*gold: 0
Join Date: Apr 2006
Posts: 249
Received Thanks: 79
|
Quote:
Originally posted by yokoyoko@Dec 19 2006, 02:26
yes if you read memory you can simply check if you're in the same spot as before. I wish i can help but i only know about autohotkey. See Coldstart's thread on how to read memory.
|
ill search for it ty
|
|
|
12/19/2006, 03:39
|
#11
|
elite*gold: 0
Join Date: Nov 2005
Posts: 44
Received Thanks: 0
|
The whole point of conquer partner was the fact that it used a combination of process/packet editing to make it easy to bot multiple characters and do other things at the same time. Anyone could make a pixel bot with enough time, but it just can never be as good and useful.
|
|
|
 |
Similar Threads
|
Conquer Partner
11/04/2006 - Conquer Online 2 - 1 Replies
I have been looking on the site and there are alot of co parners so i was wondering if someone could point me to the newest edition cause in the other ones it does semm to pick up the items for ex. mets
so cud sumone plz tell me
:cool: ;)
|
Conquer Partner help
07/28/2006 - Conquer Online 2 - 5 Replies
has anyone noticed the COPartner cracked by puzzlebird ( i believe thats the most recent ) sometimes cant hit BlueBirds? yes i have it set on the flying setting and most the time it will hit them fine but everyonce in a while i notice it standing there trying to attack a bird (i assume trying to attack)?
|
Conquer Partner other way run it
06/03/2006 - CO2 Bots & Macros - 28 Replies
Guys i heard problem. Many pll say its dun run now. It's just other way how to run.
Download ServerEmulation
makeing by Ultimate, and run it.
After download Cracked_COPartner
and run TQProgram(Emulator).
Well i dun saw, maby someone post this method, if u know this juz DELETE this..
text2schild.php?smilienummer=1&text=bb' border='0' alt='bb' />
|
All times are GMT +1. The time now is 10:37.
|
|