need help with auto acepting team

03/02/2006 15:18 nightyard#1
is there anything out there where you can bot and if someone requests to join ur team they automatically join?? :bandit:
03/03/2006 01:50 kevinwisbith#2
Not hard to click okay.
03/03/2006 11:03 dren#3
Quote:
Originally posted by kevinwisbith@Mar 3 2006, 01:50
Not hard to click okay.
he means when he's plvling using a bot (i believe).

nope, as far as I know there is no macro that will auto accept team requests. Also, having people join your team when you're plvling can make you easier to detect.
03/03/2006 17:11 unknownone#4
Got t-search?

A simple memory redirection can do this easily. Open up t-search, attach Conquer and make a new easy write file. Stick in the code, click ok and turn it on. Should work, not tested very much.

Code:
offset 00010E00
JMP 004588F3
JMP 004F5029

offset 004F4E67
JMP 00010E00
If you'd prefer it from a HLL.

Code:
BYTE newCode[] = { 0xE9, 0xEE, 0x7A, 0x44, 0x00, 0xE9, 0x1F, 0x42, 0x4E, 0x00 }; 
BYTE reCode[] = { 0xE9, 0x94, 0xBF, 0xB1, 0xFF };

WriteProcessMemory(pHandle, (void*)0x10E00, (void*)newCode, 10, NULL);
WriteProcessMemory(pHandle, (void*)0x4F4E67, (void*)reCode, 5, NULL);