Do you think I could just leave this part blank and it'd be okay? We're just going to replace the whole thing with a header image anyway, right?
You are not logged in.
how about a bot which can do scrolling text?
!title [insert words here use ; [semi-colon] to indicate breaks in title]
!mode #
[change title animation
-1-scrolling non stop
-2#-scrolling stops in middle for #000ms
-3-fast in, stops, second part of title moves first part out of the way.[as indicated using ; [semi-colons]]
Thank you eleizibeth ^
I stack my signatures rather than delete them so I don't lose them
Offline
See, that I could see being REALLY hard to make...
If EEAB were.
Acually, almost easy, I had the same idea!But it would be an auto clicker, so you wouldnt be able to move :/ You would have to go on another computer. Ill work on it and put your name squadfs in the bot for idea, thanks
Pugmatt wrote:i make bots for ee.
Pugmatt wrote:cyth1e doesnr tell anyone how he makes bots, neither do i
Why don't you? Could anything bad ever come from saying how you made it? Unless you go into great detail, no doubt with specific examples of working code, no one that can't do it already is going to get a hold of anything bad. I'd like to know how you're making bots to know what the limitations are, you know, I wouldn't want to suggest something you couldn't impliment.
Ummm cause I did all the research all by myself? (with some help of ee beast, but he was doing the same thing i was doing at that point,looking up on how to make bots) We figured it out, and now we make bots. I think you can figure it out too if you try. Besides, like 20 people ask me how to make a bot, im not gonna explain how to do it to 100s of people. And no, i won't make a topic.You guys can learn. If you cant figure it out, then your just being lazy, and you wont be able to do it, sorry.
Last edited by Pugmatt (Sep 15 2011 6:25:03 pm)
^^lol not really practical unless you can figure out packet sending
Player Since 2011. I used to make bots and stuff.
Offline
^^ Ya :/ We gotta figure that out o_o
EDIT: YESH!! DIS IS MEH 300TH POST!! WOOT!
Last edited by Pugmatt (Sep 15 2011 6:31:05 pm)
Ummm cause I did all the research all by myself? (with some help of ee beast, but he was doing the same thing i was doing at that point,looking up on how to make bots) We figured it out, and now we make bots. I think you can figure it out too if you try. Besides, like 20 people ask me how to make a bot, im not gonna explain how to do it to 100s of people. And no, i won't make a topic.You guys can learn. If you cant figure it out, then your just being lazy, and you wont be able to do it, sorry.
You found out how to do it by yourself, so what? If the whole world kept their discoveries to themselves, mankind would never have advanced to where it is today. As for me figuring it out myself, I did that over a year ago, and I'd be happy to tell anyone that asked me how it was done. You see, I'm not often going to make people do work that isn't necessary without a good reason.
^^ Ya hmm We gotta figure that out o_o
Perhaps if you were a little more helpful yourself, it'd be me telling you how to do that right now, but you aren't.
^^ Dude, see? That's just lazy, your not even gonna try, your just gonna ask people, I'm done talking to you. Goodbye.
EDIT:I'm not even that good at explaining things, i tried to tell someone how, but they didnt understand, so I'm not even a good explainer, ask someone else.
Last edited by Pugmatt (Sep 15 2011 6:57:30 pm)
I'm just going to bump this a bit with this bypass linus21. Heheh.
also, research? I'm sure some people can figure these things out with research.
*u stinky*
Offline
^^ Dude, see? That's just lazy, your not even gonna try, your just gonna ask people, I'm done talking to you. Goodbye.
EDIT:I'm not even that good at explaining things, i tried to tell someone how, but they didnt understand, so I'm not even a good explainer, ask someone else.
Did you even read my post? Not only did I say I've already made bots before, I also never asked for your help.
Last edited by Twipply (Sep 15 2011 7:21:34 pm)
^^Oh.. sorry, o_O My bad, take back what i said before, sometimes and get things right in my brain. sorry
^i pmed him and explained, pugmatt and I have been trying to figure out how to make packet sending bots forever, so you know how right? im not sure about pugmatt but i would gladly give you alot of reps or whatever if you showed me
Player Since 2011. I used to make bots and stuff.
Offline
Can we please get back to topic now....
Can we please get back to topic now....
As I already said, unless you or your friend can tell me some more information about how your bot works, I can't offer many valid suggestions as I don't know what it's capable of.
DELETY DELETY POST.
Last edited by ?tilla (Sep 25 2011 12:15:52 pm)
*u stinky*
Offline
I have a question. How to use one of these?
Also, are you sure you aren't just creating a macro..? Because these macros are multiplying.
*u stinky*
Offline
^could you explain more on the packet sending, and whats the difference between bot and a macro, ive made pretty advanced autoclicker bots, but me and pugmatt have been researching forever on how to upload packets, example codes never work.. im still not gonna give up
Player Since 2011. I used to make bots and stuff.
Offline
^could you explain more on the packet sending, and whats the difference between bot and a macro, ive made pretty advanced autoclicker bots, but me and pugmatt have been researching forever on how to upload packets, example codes never work.. im still not gonna give up
If you want to send your own packets, I suggest you do so with .dll injection. If you want to try that with a real programming language, then perhaps download VC++ and Microsoft Detours. Look for a winsock send/recv hook.
Although, I suspect anything like that would take a long time for you two to do by yourselves with no prior experience.
Thanks I have heard of proxy, Ill look into it.
^im looking into dll injection
any one got any example codees or info?
Player Since 2011. I used to make bots and stuff.
Offline
Lol. DLL injection, uhm. I wouldn't go there, it's too much work if you don't already have your own client (if you ever plan a release)
Sub Receive Packet="" BytesString="" If Source="SERVER" Then If ReadMethod=0 Then Packet=ClientSocket.Read(ClientSockID(Index),2) If ClientSocket.Transferred=-1 Or Len(Packet)<>2 Then Printx "Error: Lost connection to server. [Disconnected]" Printx "[DEBUG] Transferred:["+Str$(ClientSocket.Transferred)+"] Length:["+Str$(Len(Packet))+"]" Drop(Index) Exit Sub End If BytesString=Packet Bytes=EEInt2(Asc(Mid$(Packet,1,1)),Asc(Mid$(Packet,2,1))) If Bytes<2 Then Printx "Error: Possible exploit detected. Packet is reporting a length of "+Str$(Bytes)+" bytes." Drop(Index) Exit Sub End If End If If ReadMethod=2 Then Packet=ClientSocket.ReadLine(ClientSockID(Index)) Else If ClientSocket.IsServerReady(ClientSockID(Index))=0 Then Printx "Error: Possible exploit detected. Server may or may not intend on sending (any more) data." Drop(Index) Exit Sub End If Packet=ClientSocket.Read(ClientSockID(Index),Bytes) End If If ClientSocket.Transferred=-1 Or Packet="" Then Printx "Error: Lost connection to server. [Connection reset by peer]" Printx "[DEBUG] Transferred["+Str$(ClientSocket.Transferred)+"] Length:["+Str$(Len(Packet))+"] Drop(Index) Exit Sub End If If ReadMethod=0 Then BufferIdle(Index)=BufferIdleTime While Len(Packet)<>Bytes And BufferIdle(Index)<>0 PPacket=Packet If ClientSocket.IsServerReady(ClientSockID(Index)) Then Packet=Packet+ClientSocket.Read(ClientSockID(Index),Bytes-Len(Packet)) End If If Packet<>PPacket Then BufferIdle(Index)=BufferIdleTime End If If ClientSocket.Transferred=-1 Then Exit While End If DoEvents Wend If Len(Packet)<>Bytes Then Printx "Error: Invalid packet length from server." Printx "[DEBUG] Reported:["+Str$(Bytes)+"] Actual:["+Str$(Len(Packet))+"]" Drop(Index) Exit Sub End If End If If DisplayInf Then Printx "[RECV] Index:["+Str$(Index)+"] ID:["+Str$(ClientSockID(Index))+"] IP:["+IPSocket.GetPeerName(ClientSockID(Index))+"]" End If If DisplayRaw Then Printx "["+Str$(Len(Packet))+"] Packet:["+ReplaceSubStr$(Packet,Bell,"")+"]" End If If ReadMethod=0 Then DPacket="" If Mid$(Packet,1,2)<>Chr$(255)+Chr$(255) Then DPacket=Decrypt(Packet,DWindR(Index)) If Len(DPacket)<2 Then Printx "Error: Invalid packet from server. Decrypted packet length="+Str$(Len(DPacket)) Drop(Index) Exit Sub End If If DisplayDec Then Printx "[DEC] ["+Str$(Asc(Mid$(DPacket,1,1)))+"_"+Str$(Asc(Mid$(DPacket,2,1)))+"] "+ReplaceSubStr$(Delete$(DPacket,1,2),Bell,"") End If End If End If If DisplayInt Then If ReadMethod=0 And DisplayDec Then If DPacket<>"" Then Printx "[INT] "+Bytes2Int(BytesString+DPacket) End If Else Printx "[INT] "+Bytes2Int(BytesString+Packet) End If End If If ReadMethod=0 Then If Mid$(Packet,1,2)=Chr$(255)+Chr$(255) And DWindR(Index)=0 Then Printx "[INIT] "+Bytes2Int(BytesString+Packet) If Len(Packet)<8 Then Printx "[NOTICE] This IP appears to be banned." Else DWindR(Index)=Asc(Mid$(Packet,6,1)) DWindS(Index)=Asc(Mid$(Packet,7,1)) PID(Index)=Mid$(Packet,8,2) Printx "DWIND VALUES - RECV:["+Str$(DWindR(Index))+"] SEND:["+Str$(DWindS(Index))+"]" Printx "PLAYER ID:["+Bytes2Int(PID(Index))+"("+Str$(EOint2(Asc(Mid$(PID(Index),1,1)),Asc(Mid$(PID(Index),2,1))))+")]" End If Packet=Encrypt(DPacket,DWindR(Index)) BytesString=EEBytes2(Len(Packet)) End If
Meh.
*u stinky*
Offline
^im looking into dll injection
any one got any example codees or info?
You probably just want to google something like, "Detours send/recv hook". A bit like this might be what you want, specifically, the source code linked to at the bottom.
But you need to know that this is C++, which I imagine you have no experience in, and most likely no programming experience at all. To go straight in with .dll files and hooks, probably not the best of ideas.
Do you know what hex is? Are you good with logic & maths?
Lol. DLL injection, uhm. I wouldn't go there, it's too much work if you don't already have your own client (if you ever plan a release)
I don't know why I'd be using .dll injection if I had my own client. But why is a .dll too much work anyway? I could write you an autobuilder in an hour if you really wanted it.
Last edited by Twipply (Sep 15 2011 8:12:26 pm)
I'm getting my bot!
(DELETED)
OFF-TOPIC: I just put my name to be on the PiX crew can i?
Last edited by Fer22f (Sep 15 2011 8:23:09 pm)
^lol that wont help you dude, cheat engine cant work for a bot
Player Since 2011. I used to make bots and stuff.
Offline
Hahahaha cant?
If u just change internal array of blocks of EE
You edit blocks.
And blocks dont will have fail.
Because EE automatic made it without fail.
Sometime u put a brick and it FAILS?
[ Started around 1731648546.7455 - Generated in 0.086 seconds, 14 queries executed - Memory usage: 1.68 MiB (Peak: 1.9 MiB) ]