View Full Version : [release] BF2 ITC v0.99 demo/retail
p3n1
21st June 2005, 17:25
Now here it is, the first pb proof (hopefully) version of the ITC.
A FEW NOTES, EVERYBODY SHOULD READ:
- THIS HACK CAN LEAD TO HARDWARE/CD-KEY BANS IN ALL ACTUAL PB GAMES!!! PLEASE USE IT AT YOUR OWN RISK!
- YOU CAN GET TK'S LOCALLY, SO YOU'LL GET KICKED FOR THEM!
- IT SIMPLY CHANGES YOUR TEAM VAR LOCALLY, SO U CAN SEE THE ENEMIES ON MINIMAP AND THEIR NAMETAGS. B4 SPAWNING YOU NEED TO CHANGE IT BACK, BETTER B4 SHOOTING TOO!
- EDIT: I AM USING THIS FOR ABOUT TWO WEEKS NOW, I DO NOT CHANGE BACK TEAMS EXCEPT I CAN'T SPAWN AT MY *NORMAL* SPAWN POINT. SO I GET TEAMKILLS OVER AND OVER, MY NAME STANDS ON THE WRONG TEAM AFTER THE ROUND, BUT THATS ALL FINE, BECAUSE THE SERVER THINKS WHAT HE HAS TO THINK -> THAT I AM ON THE NORMAL TEAM AND DID'T TEAMKILL ANYBODY!!! BUT THERE ARE A FEW BUGS KNOWN:
- YOU HEAR THE SOUNDS OF THE OTHER TEAM
- YOU RECEIVE NO ENEMY SIGHTED OR OTHER TEAM MESSAGES FROM THE TEAM THE SERVER THINKS YOU'RE ON
- YOU CANNOT VOTE ON COMMANDER MUTINY VOTES
...
IT HAS NOT BEEN TESTED FOR THE FULL RETAIL BY MYSELF, SO I THINK THE FULL RETAIL WILL CRASH. THERE IS A ITC RETAIL FOR THE NO-CD VERSION, BUT THAT HAS NEVER BEEN TESTED ON MULTIPLAYER BY ME - PLEASE DON'T ASK ABOUT THAT *SPECIAL* VERSION, OR YOU WILL BE SOON ON MY INGNORE LIST!!!
ChangeLog:
June, 25th
-removed some bugs
-better hotkey recognition
-pb memory scan evasion
-EDIT: Now the hotkey is "+"/ADD on NUMBLOCK
June, 21st
-completly rewritten in delphi (40kb in size, can be upx'd to about 20kb)
-improved the injected code
-if trainer is closed, memory is realigned
-2 versions, one for the demo, one for the retail (read .nfo!)
note: if BF2 is closed and the trainer stays open, the "game not found" message appears 5 times, this is to be changed in the next version.
all previous versions have been deleted!
The only things i wanna read, are:
1) thx
2) detected by pb (with id if possible)
3) can i get the source?
ad 3)
Source isn't available any longer/ old Source below
now have phun, ch33taz!
Edit: the retail does not work, i don't know why, could be something with the offsets...
but i am working on it...
2nd EDIT: Now everything should work fine, even the retail version!
3rd EDIT: Maybe the retail doesn't work, had no time to test yet.
THE SOURCE OF 0.99 / DELPHI
program itc_demo;
{$APPTYPE CONSOLE}
// BF2 (demo) Instant Team Changer v0.99 by p3n1/2k5
// Source for all fellas @ MPC
// Don't give it away or use it for anything else than
// educational purposes!!!
//
// EasyWrite stuff:
// offset 010cff
// mov eax,[ecx+0xd8]
// push eax
// mov eax,ecx
// add eax,0d8h
// cmp byte ptr[010c10],1
// jne 010eff
// mov byte ptr[010c10],0
// cmp byte ptr[eax],1
// jne 010dff
// mov byte ptr[eax],2
// pop eax
// retn
//
// offset 010dff
// mov byte ptr[eax],1
// pop eax
// retn
//
// offset 010eff
// pop eax
// retn
//
// offset 0x55A8A0
// jmp 00010cff
//
// Poke Stuff
// POKE 10c10 00
// Poke 10CFF 8B 81 D8 00 00 00 50 8B C1 05 D8
// Poke 10D0A 00 00 00 82 3D 10 0C 01 00 01 0F
// Poke 10D15 85 E5 01 00 00 C6 05 10 0C 01 00
// Poke 10D20 00 82 38 01 0F 85 D5 00 00 00 C6
// Poke 10D2B 00 02 58 C3
// Poke 10DFF C6 00 01 58 C3
// Poke 10EFF 58 C3
// Poke 55A8A0 E9 5A 64 AB FF
//
// Trigger (Minus on NumLock)
// POKE 00010c10 01
//
uses
SysUtils,
Windows,
Messages;
var
s1,s2,s3:String;
counter:integer;
quit:boolean;
// This is a function to convert Strings to PAnsiChar - Delphi Sux
FUNCTION Str2PChar (VAR S : String) : PChar;
BEGIN
IF (S <> '')
THEN BEGIN
IF (S[Length(S)]<>#0) { It has to end with a zero byte... }
THEN S := S + #0;
END;
Str2PChar := @S[1];
END;
// This is the dialog box's message procedure.
procedure Poke(Address: Cardinal; Bytes: Array Of Byte);
var
hWin: hWnd;
ProcId: Cardinal;
hProc: THandle;
NBW: Cardinal;
begin
s1:='BF2 (v1.0.2446.12, pid: ';
s2:=')';
counter:=0;
repeat //brute-force the caption ;)
s3:=s1+inttostr(counter)+s2;
hWin:= FindWindow(nil,str2pchar(s3));
if not (hWin=0) then break; // break if found
inc (counter);
until (counter>99999); // maximum process id
if hWin = 0 then begin // If we cant find the window...
// Display "game not running" message.
MessageBox(0, 'The game is not running.', 'BF2 DEMO ITC v0.99 Error', MB_ICONERROR);
Exit; // Exit the <poke> procedure.
quit:=true;
end;
GetWindowThreadProcessId(hWin, @ProcId); // Get the game's process id.
hProc:= OpenProcess(PROCESS_ALL_ACCESS, False, ProcId); // Open the game process.
// Write to the game's memory!
WriteProcessMemory(hProc, Ptr(Address), @Bytes[0], Length(Bytes), NBW);
CloseHandle(hProc); // Close the game process handle.
end;
procedure DoTimer;
begin
// The line below checks if minus on numpad is pressed, then Poke the memory if it's been
// pressed.
If (GetAsyncKeyState(VK_SUBTRACT) and 1) = 1 Then Poke($10c10, [$01]); //send the ITC cmd ;)
end;
begin
quit:=false;
// write the Code Cave to BF2
Poke($10c10, [$00]);
Poke($10cff, [$8B, $81, $D8, $00, $00, $00, $50, $8B, $C1, $05, $D8]);
Poke($10d0a, [$00, $00, $00, $82, $3D, $10, $0C, $01, $00, $01, $0F]);
Poke($10d15, [$85, $E5, $01, $00, $00, $C6, $05, $10, $0C, $01, $00]);
Poke($10d20, [$00, $82, $38, $01, $0F, $85, $D5, $00, $00, $00, $C6]);
Poke($10d2b, [$00, $02, $58, $C3]);
Poke($10dff, [$C6, $00, $01, $58, $c3]);
Poke($10eff, [$58, $C3]);
Poke($55a8a0, [$E9, $5A, $64, $AB, $FF]);
SetTimer(0, 0, 250, @DoTimer); // Set the hotkey checking timer.
// Show the dialog box.
if not (quit) then begin // Wait for Hotkey
MessageBox(0, 'Game found!'+#13#10+'Use the Minus key on Numpad to Change Teams!'+#13#10+'Press OK to Quit.', 'BF2 DEMO ITC v0.99', MB_ICONERROR);
// Clear Up the Games Memory, after closing trainer
Poke($10c10, [$00]);
Poke($10cff, [$00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00]);
Poke($10d0a, [$00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00]);
Poke($10d15, [$00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00]);
Poke($10d20, [$00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00]);
Poke($10d2b, [$00, $00, $00, $00]);
Poke($10dff, [$00, $00, $00, $00, $00]);
Poke($10eff, [$00, $00]);
Poke($55a8a0, [$8B, $81, $D8, $00, $00, $00]);
end;
ExitProcess(hInstance); // Exit the program when the message box closes.
end.
scruie
21st June 2005, 17:36
do 4 ever get any sleep? ;)
seen as not approved yet, did u use a template or tmk?
haven't installed bf2 demo, but on behalf of the community thanks for all the hardwork.
EDIT: if that source is password protected i don't think it will be allowed, it's a release all or not at all...
p3n1
21st June 2005, 17:38
do 4 ever get any sleep? ;)
seen as not approved yet, did u use a template or tmk?
haven't installed bf2 demo, but on behalf of the community thanks for all the hardwork.
THX man, i appreciate that. I wrote it using the only delphi trainer template i found, i had to mod it a little bit. :P
Spontaneous
21st June 2005, 17:39
Approved
chilli
21st June 2005, 21:07
it doesnt work with retail, it says bf not found though the game has loaded and i spawned on map.
chilli
21st June 2005, 21:33
check your pm i have a question and an info for ya
OhMyGod
21st June 2005, 22:44
I cant PM you? :-( Why cant i PM you? :-(((( :cry: I wouldlike a source but i cant PM you... ;-(
p3n1
21st June 2005, 22:58
I cant PM you? :-( Why cant i PM you? :-(((( :cry: I wouldlike a source but i cant PM you... ;-(
I don't knowm this message usually comes, if you typed the name wrong, my inbox is *not* full, i asure you... BTW, you got just one post, so please forget it...
VoN DuTch™
21st June 2005, 23:06
--Approved
Spontaneous
21st June 2005, 23:20
You need atleast 15 posts to send PMs.
Anti-jeeter
22nd June 2005, 00:11
Yo, ive downloaded the ITC .99 hack, but every time i run the game and turn it on. the game crashes? can you help me figure out what I am doing wrong.
Thanks
nitrogene
22nd June 2005, 00:38
thnks
Spontaneous
22nd June 2005, 00:39
Anti-jeeter, full or demo?
wakko
22nd June 2005, 00:54
ummm my game crashed also
i'm running demo
:dead:
Anti-jeeter
22nd June 2005, 01:00
Yea I am running the demo version of ITC v.99,but it crashes. Also i have the Acchack but cant seem to get that working, and i know of some players that use it. I appreciate any help
Thanks again
Jeet
p3n1
22nd June 2005, 01:32
Yea I am running the demo version of ITC v.99,but it crashes. Also i have the Acchack but cant seem to get that working, and i know of some players that use it. I appreciate any help
Thanks again
Jeet
can u post a screenie, because i tested it online, and it works...
thx
wakko
22nd June 2005, 01:43
i only trye single player.
I'll try multi i guess. and theres really nothing to take a ss from, it just closes :dead:
snoochy
22nd June 2005, 01:54
nice job works great... Hey i think im at 18 posts, think u might give me a break on the source...(I think u said 20) Its weird cuz i cant open the nop on my winwar not sure why but its easy to figure out.
wakko
22nd June 2005, 02:34
just tested in multiplayer, and it works, great hack, props p3n1 :lick:
stephenm000
22nd June 2005, 04:09
Works good for me, but switching teams so much sometimes gets confusing LOL!
Anti-jeeter
22nd June 2005, 04:29
ok maybe I am doing something wrong. Do i start the hack b4 i open battlefield 2 demo or do i open the demo and start a multiplayer game, then alt tab and turn the hack on? also what about the acchack, does that work and how do i start that one?
wakko
22nd June 2005, 06:00
what i do is i start the game, whens it's at the EA intro i alt+tab then i run it :cool:
p3n1
22nd June 2005, 08:44
ok maybe I am doing something wrong. Do i start the hack b4 i open battlefield 2 demo or do i open the demo and start a multiplayer game, then alt tab and turn the hack on? also what about the acchack, does that work and how do i start that one?
Just do, whats written in the nfo. I don't know, if it works together with the accuracy hack (which is useless im mp - nevertheless nice work xare!).
what i do is i start the game, whens it's at the EA intro i alt+tab then i run it :cool:
i didn't know, i works this soon, i waited, till i spawned :) ok, the sooner, the better!
:cool:
omnineo
22nd June 2005, 10:58
Thank You
Joyboy
22nd June 2005, 11:29
I dont get it. Using this hack in ranked server doesnt give any points? Can someone confirm it.
Judas989
22nd June 2005, 12:18
I don't understand the point of a hack like this. It's seen as a TK if you use this trainer to switch teams and kill someone who was previously (before you switched teams) on YOUR team. Do this so many times and you'll get the boot out of the server.
h4x0rz4lyfe
22nd June 2005, 13:20
I don't understand the point of a hack like this. It's seen as a TK if you use this trainer to switch teams and kill someone who was previously (before you switched teams) on YOUR team. Do this so many times and you'll get the boot out of the server.
I agree with him. This is very confusing to use. :disappoin Nice work though. Just keep us up to date on PB updates.
[AESiR]ViDAR
22nd June 2005, 15:02
No you got it all wrong, i tried it out on a lan game with my friend and what it does it make your comp think you switched teams but the server thinks you are still on the team you started with. Here is what it looks like when you tab.
Your Comp
=====================
Team A______||__Team B____||
=====================
Otherplayer__||____________||
You_________||____________||
=====================
Server
=====================
Team A______||__Team B____||
=====================
Otherplayer__||__You _______||
=====================
p3n1
22nd June 2005, 16:23
ViDAR']No you got it all wrong, i tried it out on a lan game with my friend and what it does it make your comp think you switched teams but the server thinks you are still on the team you started with. Here is what it looks like when you tab.
Your Comp
=====================
Team A______||__Team B____||
=====================
Otherplayer__||____________||
You_________||____________||
=====================
Server
=====================
Team A______||__Team B____||
=====================
Otherplayer__||__You _______||
=====================
You are right mate, the only thing, this can bring u, is the enemytags. it's the simplest and fastest way to hack this. it's neither intended to tk, because the server dsoes not count it, nor for spoofing your identity, same reason.
AND BEWARE - IF YOU DO NOT SWITCH BACK, B4 SHOOTING, THEN YOU'LL GET A TK ON YOUR OWN 'PUTER. SOMETIMES YOU'LL GET KICKED FOR TO MUCH TK'S BY YOUR OWN BATTLLEFIELD AND/OR PB!!!
wakko
22nd June 2005, 22:03
lol that happened to me. I had like 2 TK's and i was like "wait, this isn't right..." but i didn't get kicked O.O
nitrogene
22nd June 2005, 22:10
lol that happened to me. I had like 2 TK's and i was like "wait, this isn't right..." but i didn't get kicked O.O
Official servers have a pre set Tk limit , some are at -10 and it varies , but yeah if u don't switch back before killing and you keep on playing with it you will get booted from the server , you can also get lucky if the other guys dont punish you and you can get away with most of them , flysing and pressing the "-" can be a hassle
stephenm000
22nd June 2005, 22:15
Man those intro movies were getting sooo boring, THANKS A MILLION!!!
h4x0rz4lyfe
22nd June 2005, 23:33
PB was updated today...someone test this hack to see if it still works..thx :mad:
Sparten
22nd June 2005, 23:37
test it your self, why should other take the risk of getting kicked/banned for you?
alquemist
23rd June 2005, 00:33
If the hack is detected U will just get ban for 2 min. The only way way to get ban for ever wich is global ban is by try to hack pb for them not to detect the hack I THINK!!!!!! :bunny: lol :lick:
h4x0rz4lyfe
23rd June 2005, 00:39
Did PB detect it?
alquemist
23rd June 2005, 00:51
Check if it detected if its detected ull get ban for 2 min. noting will happen to u lol so dont worry! :confused:
p3n1
23rd June 2005, 03:39
it still remains undetected...
stephenm000
23rd June 2005, 04:09
I have not been detected yet.....
Flip1989.
23rd June 2005, 07:54
Noperz, its still undetected.
Judas989
23rd June 2005, 16:06
Hey p3n1, just wanted to say sorry I kinda knocked on your hack/trainer. I've been using it for a few hours and after you get past the confusion of which team you're on after you die and need to select a spawn point, it's pretty good.
IMHO, it's a good alternative to a wallhack. Nothing fancy, just exploiting a feature of the game (I guess, I didn't write/code it of course). Being nothing fancy and a fairly basic hack/trainer, hopefully it wont get PB banned so quickly... or at all *crosses fingers*. :devious:
Nice job.
snoochy
25th June 2005, 04:18
Yo, I was playin and got kicked for corrupt memory not for the hack and no time ban anyway heads up...Just wanted to note incase anyone else had the same... I have been using it with no problem, the only thing I changed was I am also running a mac spoofer maybe thats it. anyway heads up and thnx for the release it has been fun..
littlejohn1084
25th June 2005, 05:51
how exactly do you do this. Like the switching teams part and what do you do with that.
ok start join a game spawn then start the hack. then what?
scruie
25th June 2005, 06:00
how exactly do you do this. Like the switching teams part and what do you do with that.
ok start join a game spawn then start the hack. then what?
the instructions for this hack are given in the first post. please read what the hack maker says!
(read .nfo!)
-EDIT: Now the hotkey is "-"/MINUS on NUMBLOCK
p3n1
25th June 2005, 06:23
IT GOT DETECTED: MEMORY CORRUPTION Ban for 0 Minutes (id 81074)
- i made a little update, so I can use it again :cool: ->look in the starting post!
but i won't release the source anymore...
keep on cheetin'
littlejohn1084
25th June 2005, 06:45
yea but when I hit - i see the other team but then when i shoot them i get a tk kill. am I the only one that sees the [teamkill] and the crazy negative points?
p3n1
25th June 2005, 06:50
yea but when I hit - i see the other team but then when i shoot them i get a tk kill. am I the only one that sees the [teamkill] and the crazy negative points?
this was mentioned earlier here i think, but yes, you are the only one. sometimes you'll get kicked, if you do not change the team before shooting.
u should press "+"
- greets
littlejohn1084
25th June 2005, 06:56
ok thanks so much, this clears up a lot. Now I just have to wait for the link to work.
metallynx
26th June 2005, 01:45
can someone tell me what this hack does? and how i can make them work? there was no readme so i dont know anythinga bout it
Silent Hunter
26th June 2005, 02:18
IT GOT DETECTED: MEMORY CORRUPTION Ban for 0 Minutes (id 81074)
- i made a little update, so I can use it again :cool: ->look in the starting post!
but i won't release the source anymore...
keep on cheetin'
I tried it out for the Full version in singleplayer to test it out but every single time that i use the hotkey (number pad +) and kill one of my own allys it crashes the game :(
can someone tell me what this hack does? and how i can make them work? there was no readme so i dont know anythinga bout it
it lets you change teams instantly then kill your allys or allyed buildings just as if you were on the other team (good for infiltrating bases and e-z kills)
scruie
26th June 2005, 03:04
can someone tell me what this hack does? and how i can make them work? there was no readme so i dont know anythinga bout it
read the thread, it was answered just b4 u posted this...
R4ndomh3ro
27th June 2005, 05:17
Well, the only banning I've gotten is from Corrupt memory or something. 0 mins tho :D
p3n1
27th June 2005, 14:45
Well, the only banning I've gotten is from Corrupt memory or something. 0 mins tho :D
sometimes, the hack isn't fast enough for pb, so it gets detected. if you got winxp, set the ptiority og bf2 lower than normal and maybe itc/demo above normal. then it should work. but sometimes you'll get kicked, i work on that.
R4ndomh3ro
27th June 2005, 21:09
Error code is 81704
Corrupted File/Memory
p3n1
27th June 2005, 21:12
Error code is 81704
Corrupted File/Memory
That's the error code, it gave me using 0.99, are you sure, you are using 1.0?
If that's the case, follow the instructions 2 posts above. if that doesn't help, it has been detected again. i'm playing for about 4 hours now, it hasn't been detected yet...
jimpalm98
29th June 2005, 11:42
How do I view the .nfo file to learn to use the hack?
Also will using this result in a hardware ban?
thanks
muhko
29th June 2005, 11:59
nfo files can be opened in notepad (set your font to "terminal" for best results) or DAMN nfo viewer (Google it).
mojo69
29th June 2005, 15:40
Can someone explain this a little better? This is the way I think it works...
I spawn as the US. I then use the switcher to make it look like I am on the Chinese side. Then I just start killing the US team and switch back to the US side?
OhMyGod
29th June 2005, 15:42
The hack doesnt work for me. First time when i run it after respawn im being disconnected. Second time when i rejoin, after hiting + key game crashes.
p3n1
30th June 2005, 01:11
The hack doesnt work for me. First time when i run it after respawn im being disconnected. Second time when i rejoin, after hiting + key game crashes.
everytime the same...
which version are you using? please note, that i never said or wrote, it works for the retail.
l3ushwig
30th June 2005, 06:15
Any way to get the game to stop crashing when useing it?
p3n1
30th June 2005, 06:50
Any way to get the game to stop crashing when useing it?
please read the nfo and the starting post, i've tested it with the demo and with the *special* version for retail in single player mode. i got no retail version yet (till tomorrow i hope), also this special version is not to be talked about in that forum.
hope it's clear now...
l3ushwig
30th June 2005, 08:13
please read the nfo and the starting post, i've tested it with the demo and with the *special* version for retail in single player mode. i got no retail version yet (till tomorrow i hope), also this special version is not to be talked about in that forum.
hope it's clear now...
I know... im talking with the demo i can maybe switch 2 times then it crashes.
p3n1
30th June 2005, 09:01
I know... im talking with the demo i can maybe switch 2 times then it crashes.
i really don't know, why it should crash with the demo... can you make a screenshot next time?
Joyboy
30th June 2005, 09:59
Ok i wanted to know that if this hack is going to be detected first time, it will be instant HW/ cd-key ban?
p3n1
30th June 2005, 10:54
Ok i wanted to know that if this hack is going to be detected first time, it will be instant HW/ cd-key ban?
it was detected once, cause i used tmk -> search function/older threads.
nobody can tell, what the results will be, but here is a warning: it *can* lead to hardware bans/cd-key bans!!! :tired:
[XEF]Leg@liz
30th June 2005, 15:10
I have BF2 demo, then I launch ict_demo.exe but how to activate it during the play? ALT+Numpad 1?
scruie
30th June 2005, 16:46
Leg@liz] I have BF2 demo, then I launch ict_demo.exe but how to activate it during the play? ALT+Numpad 1?
honestly do u ppl ever read? it's just the + key. its all there in the first post by p3n1 who created this hack. read what the hack maker says in his first post...
Gecko_28
30th June 2005, 17:24
Ah, I must have did something wrong, My game crashed after I went from Chinese-Back to US to shoot the chinese players w/out getting a teamkill. Are you supposed to get TK's? Then the server will give you kills for it?
[XEF]Leg@liz
30th June 2005, 18:15
honestly do u ppl ever read? it's just the + key. its all there in the first post by p3n1 who created this hack. read what the hack maker says in his first post...
Thank you but when I press on the key "+" nothing this master key however I have to launch ict_demo.exe before entering the play but I wonder whether made launch ict_demo.exe is used for what? Because the program does not appear in the list of the processes.
See : http://img179.imageshack.us/img179/9545/bf2hacklol7qv.jpg
EDIT : OK good work,
"- HOT KEY Changed To ADD/+ on NumBlock."
Does Ok but "ADD" mean what?
On don't my keyboard I have a key "ADD" lol?
Gecko_28
1st July 2005, 06:05
Any way to get the game to stop crashing when useing it?
Any thoughts? Cause I love this cheat, but It keeps crashing when you use it too much.
Any thoughts? Cause I love this cheat, but It keeps crashing when you use it too much.
i stated otherwise before, but here's a tip for you: try playing with team changed, ignore the tk's and switch only, if needed (to respawn). also try setting the priority of bf2 to lowest. make a new batch file in bf2 folder and enter following:
@start /low bf2.exe "+fullscreen 0" : :cheeky:
Gecko_28
1st July 2005, 16:43
How do you make this batch file? And where do you put it in the bf2 folder? Anywhere? Can you link a screenshot?
How do you make this batch file? And where do you put it in the bf2 folder? Anywhere? Can you link a screenshot?
this isn't really the place for answering n00b questions, even if they tried google (which i doubt you did). but anyways:
- open the bf2 folder in explorer
- rightclick anywhere but on files or folders
- choose 'new' then 'new txt file'
- rename that new textfile to '!start.bat' or whatever you like.
- rightcklick on it, choose 'edit' or 'open with...' and 'notepad'
- copy/paste the line above ('@start /low....') into the file
- close and save
- run it
:smoke:
Gecko_28
1st July 2005, 18:08
Thanks, though Ive been here for a while, never tried making my own hacks. So Im just a cheater heh. Ill try it out and give ya some feedback.
Gecko_28
1st July 2005, 23:15
Gah...What Am I doing wrong...Is this right?
Screenie http://i8.photobucket.com/albums/a49/StealthGecko/Problem.jpg
Gah...What Am I doing wrong...Is this right?
Screenie http://i8.photobucket.com/albums/a49/StealthGecko/Problem.jpg
yes it is, if this doesn't work for you, i really don't know, how to help you...
Gecko_28
1st July 2005, 23:31
I think Im gonna try using pb buster with it...
I think Im gonna try using pb buster with it...
you'll have a lot of fun, when u try that :D
btw, can you make a screenie when it crashes the next time? or does it just terminate w/o an error message?
jclbqe
2nd July 2005, 16:02
I have been using ITC for a long time, it has two problems
1. Crushes like crazy without showing up any messages
2. When you used a long time, whoever you killed is TK, that even include your teammates and you enemy
I have been using ITC for a long time, it has two problems
1. Crushes like crazy without showing up any messages
2. When you used a long time, whoever you killed is TK, that even include your teammates and you enemy
i found out, why it crashes under *excessive* use: if you press the hotkey too long or too often, the memory in bf2 stays unpatched in the moment pb scans it. so there isn't really a way to avoid it bedides reprogrtamming the whole thing. just use it only after spawning your normal team, then play with it until you get killed.
refards p3n1
Joyboy
2nd July 2005, 20:43
Ok p3n1 can u aswer what was that:
I was playing bf2 and pushed + [num key} and changed team, like before, but 1 guy with tank [my own team member] was blue too? I shot him and saw team damage warning? Ok i pressed the hotkey again and i was back on my team, but now that guy with tank was my enemy (red). I shot him and again got message that i hurted teammate. Ok i looked my real team whole players list and HE WAS my teammate really. Now thats strange, i have seen it couple times more, not oftenly but still. U can press hotkey many times it wont change, does that mean something? I mean can i see whos using this hack too?
Ok p3n1 can u aswer what was that:
I was playing bf2 and pushed + [num key} and changed team, like before, but 1 guy with tank [my own team member] was blue too? I shot him and saw team damage warning? Ok i pressed the hotkey again and i was back on my team, but now that guy with tank was my enemy (red). I shot him and again got message that i hurted teammate. Ok i looked my real team whole players list and HE WAS my teammate really. Now thats strange, i have seen it couple times more, not oftenly but still. U can press hotkey many times it wont change, does that mean something? I mean can i see whos using this hack too?
:D
i saw that things, too - last time i was shot by a sniper, that doesn't appear on my minimap. later i saw him, he has a red nametag visible trough walls all the time.
i think it can be, if there is another player, who uses this hack.
it's funny, don't you think? :)
sometimes playing with this i feel like me against the whole enemy - has single player feeling. but most times the enemy has no chance to stand ;)
Joyboy
3rd July 2005, 10:35
:D
i saw that things, too - last time i was shot by a sniper, that doesn't appear on my minimap. later i saw him, he has a red nametag visible trough walls all the time.
i think it can be, if there is another player, who uses this hack.
it's funny, don't you think? :)
sometimes playing with this i feel like me against the whole enemy - has single player feeling. but most times the enemy has no chance to stand ;)
Hehe. Now the problem is, that if u are in server where lots of guys using it, that would make a big mess :confused:
That would explain, why i got hit many times by own teammate (not accidently) :cool:
But sure it is funny to see, how many pure players are in your own team.
Gecko_28
3rd July 2005, 19:25
ha! The one on UC never crashed once, and it uses the - key! Its so much better than the one here.
scruie
3rd July 2005, 20:56
ha! The one on UC never crashed once, and it uses the - key! Its so much better than the one here.
then go back there and use it!
ha! The one on UC never crashed once, and it uses the - key! Its so much better than the one here.
lol...
that shows me, how carefully you read threads. in uc, there is the same version as here, v1.0. but the admins @ uc haven't updated the sticky yet, so you just download the 0.99 if you take the one from the sticky... :tired:
Rizno
17th July 2005, 02:31
I love this hack, it's great. I prefer this more than a Wallhack actually, great work. Hope to see future undetected releases. *Thumbs up.*
NOTE: I'm using the full version of the game on Multiplayer. Works a charm.
wboss
15th September 2008, 15:01
does any body still have itc.rar as i can't seem to download it or a hack for the first retail version. thanks
xtri
16th September 2008, 20:48
Nice Bumping A 3 Year Old Thread.
wboss
16th September 2008, 21:23
well if the thread still open. then why not. still a good game.
scruie
18th September 2008, 23:39
does any body still have itc.rar as i can't seem to download it or a hack for the first retail version. thanks
Doubt it. Try searching http://www.mpcdownloads.com/
wboss
19th September 2008, 20:11
Doubt it. Try searching http://www.mpcdownloads.com/
not there. :\
scruie
20th September 2008, 21:57
This cheat is very old. And, I really don't see the point in trying to get it.
vBulletin® v3.7.0, Copyright ©2000-2008, Jelsoft Enterprises Ltd.