is any1 makeing a new bot?

09/24/2010 15:32 werewolfz#1
any kind of bot lol even one that just spams 1 key would be great
09/24/2010 21:08 nXu#2
I've been working on it... Till my hdd crashed this week >.>
09/24/2010 21:09 Stockcar#3
edit
09/24/2010 22:31 matzebrei#4
sorry man, there's a bunch of people working on it. please stay patient
09/24/2010 22:56 nXu#5
Quote:
Originally Posted by Stockcar View Post
edit!
[Only registered and activated users can see links. Click Here To Register...]

Reported. (Tries to connect to internet, checked with WireShark)
09/25/2010 02:42 meak1#6
its not so hard, send is not hard to analyze, i mean its easy to send a packet

the hard part is to analyze recv its encryptet too, because u not know which recv packet is for what ... player moving, monster moving... so much packets^^

Edit: me was borriinnnggg and i found where the recv is decryptet, if i have time and fun by doing, i try a little bot but now i go sleep some hours =/
09/25/2010 11:01 nXu#7
I dun like packet bots - they are hard to make :D
09/25/2010 16:58 meak1#8
its not hard, i thinked too at the beginning because that i doesnt maked more in shaiya because i not analyzed recv, but if u have both decryptet its easy to filter the packets
09/26/2010 03:03 nXu#9
I just want to tell Stockcar (too bad i don't think he reads this), that it's such a shame that you have to use Perfect Keylogger instead of making an own.
I sniffed your FTP account, thanks for so many logs from unknown people - deleted them and informed the people (not all, but many of them had MSN logs so i could add them on messenger)
09/26/2010 07:11 meak1#10
omg what a little mistake ->
My Game crashed all the time where i tested pickup funtion

PHP Code:
struct Packet {
    
short packetID;
    
int data;
    
BYTE end;
}; 

Packet *= new Packet
My code was before
PHP Code:
struct Packet {
    
short packetID;
    
int data;
    
BYTE end;
}; 

Packet *p
it was so simple^^ and i changed so much code to test how it works without crash.
U know what i mean? ur hack is not workind and u search some hours and at the end its only so little mistake


Someone want instant pickup?
09/26/2010 12:48 nXu#11
Meak.. when i was creating my bot, the reading memory for the players HP looked like:
Code:
Public HP as integer

function GetHP() as integer
   HP = readmemory(address, processhandle)
end function
And called it like this:
Code:
HP = GetHP()
Couldnt find the error, that the function sets HP to correct value, but doesn't return anything...

That was a little mistake >.<