Quote:
Originally Posted by pwna=)
nice first try dude.
but anyway the bypass is needed i lookin for one ,too
how u managed the hp,i only see pixelgetcolor,how it should work ô.o
and it would nice for some who not know autoit to explain which skill is which key.
|
Thank you =)
I managed to involve the HP Check in a very very simple way:
- I first got coordinates and the pixel color of the very initial part of the monster HP Bar.
Click HERE for a screenshot Example, to understand better.
I got the coordinates and the pixel color by this external Func:
HotKeySet("{F4}", "GetPixelColor")
While 1
Sleep (1000)
WEnd
Func GetPixelColor()
$pos = MouseGetPos()
$var = PixelGetColor( $pos[0] , $pos[1] )
MsgBox(0,"The hex color is", Hex($var, 6))
MsgBox(0, "Mouse x,y:", $pos[0] & "," & $pos[1]);
EndFunc
Quote:
Originally Posted by eMale
okay nice try but...
- use timers instead of sleep
- use commandsend instead of send
|
Ehm...
I should study on timers and commandsend to check weither them are better or just trickier to implement XP
Quote:
Originally Posted by eMale
- dont use pixelgetcolor ... it sucks xD
|
Alternative to it?
Quote:
Originally Posted by eMale
- florensia already has shortcuts to attack, next mob, loot etc they are as follows
Code:
Next Mob: [Tab]
Attack: [Space]
Loot: [X]
SitDown: German: [Y] | English: [Z]
|
Didn't know this, I'm going to change it now, so there is no problem to Skill Bar settings of every different user.
Quote:
Originally Posted by eMale
- you forgot to tell the ppl to set the Game Option for Automatic Loot
- you forgot to tell the ppl what solution they should set your game to and weather it is FullScreen or windowed mode, if windowed mode where to place the window etc... cuz you use pixelgetcolor and it only gets the color of a certain place on your screen
|
Yeah... the Automatic Loot, forgot that :P
About Resolution and Window/Full Screen.... I didn't mention that since it wasn't meant to be a working release and I mentioned that the program was optimized for my PC. =P
By the way I'll update my first post wih those infos
Quote:
Originally Posted by eMale
for a HShield bypass get a disassembler and look arount in the FlorensiaEN.bin its really not hard but actually there seems to be a server side check you would have to emulate with c++
if this would work it could be an alternate bot until our new bot is released xD
greetz
|
I really don't get this part lul...
I can get inside FlorensiaEN.bin.... but...
"there seems to be a server side check you would have to emulate with c++"
How can you "translate" this into code XP?
Thanks for every suggestion
EDIT:// Updated to version 1.1