|
|
|
#1
|
|||
|
|||
|
GOOD JOB !!!!!
It is currently wokring for the 1.03 French version :-D |
| Sponsored Links |
|
#2
|
|||
|
|||
|
I can confirm that it crashes in Window Vista x86 on the scrin mission stated above... If the tanks are set to invincible or the scrin mind control guy is the game will crash after time... I tried twice by setting all units invincible, and then just setting the tanks invincible, both times it crashed...
|
|
#3
|
|||
|
|||
|
Quote:
best, Cal |
|
#4
|
|||
|
|||
|
YAY thanks for all your effort Cal!
and for v1.03v3 now.
Last edited by PCGamer; 04-04-2007 at 09:30. |
|
#5
|
|||
|
|||
|
Version 4 - C & C 3 Retail Trainer 1.03 patch
Command and Conquer Retail Version Trainer Version 4 April 5, 2007 Version Revision 4 This is for the RETAIL with 1.03 New Feature- No Fog of War Updated- energy consumption. toggle energy consumption to 1000, to 0, or to normal This trainer gives you instant Build of Structures, Uprades, and Units Press Shift-A instant build on/off Press Shift-B increase money by 20000 Press Shift-C set energy consumption to 1000, 0, normal Press Shift-D instant sidebar upgrades on/off Press Shift-E enable no fog of war (on only) Note: Fog of War is not perfect. I tried for weeks now to find a section of code that would instantly turn off and on the tiles for the Fog of War (darkened areas of the screen). What we have is a routine that is called at the start of the map and when certain things (like placing structures, etc.) are done. Therefore, to enable the No Fog of War, you must either activate the effect before the map loads, or activate the effect and then place a structure. Once activated, you cannot remove the fog effect. I am still searching for a better solution but at this time this is all that I have found- Added health modifications below: Note, this is very powerful, it affects whatever unit is selected as well as whatever unit the mouse cursor is over. The best way to use this is to select the unit, and move the cursor far away from all units and stuctures before pressing the keys. Should also work with multiple units selected. Press Shift-F1 set health invincible Press Shift-F2 set health normal Press Shift-F3 set health zero Note: Invincible units will have a blinking or non-blinking yellow bar that is longer than usual to indicate that they are modified. Feedback Welcome- get it from www.gamecopyworld.com when it propogates or go here to download now: http://www.rebelz-nation.com/modules...ic&p=6025#6025 feedback at: http://www.rebelz-nation.com/modules...ic&p=6025#6025 or: http://www.fileforums.com/showthread...819#post338819 Best. Caliber |
|
#6
|
|||
|
|||
|
Yay thanks again Calibre! You've made my C&C 3 gaming experience most enjoyable!
|
|
#7
|
|||
|
|||
|
Quote:
Thanks a lot! |
|
#8
|
|||
|
|||
|
yes i confirm also crash in and if not just when mission accomplished for scrin missions 2
|
|
#9
|
|||
|
|||
|
Just want to say thanks for the trainer. It's great to fly through the boring Scrin missions. I beat GDI and Nod both on normal but Scrin was just too boring after the first mission. Thankfully with this trainer I don't have to play much with them and just use it to beat the other 3 missions really fast. Keep up the good work.
|
|
#10
|
|||
|
|||
|
You are very fast, nice job, much appreciated.
__________________
~~Desu |
|
#11
|
|||
|
|||
|
@cali..
ok, i tested your trainer last night, that is one very odd trainer you have coded.. for instance.. why does just pressing the SHIFT key start a stream of writeprocessmemory calls? even before you press one of the other buttons, very odd.. and its certainly not good for the game attaching that stream onto a common key such as SHIFT. instant build: I used my FOW option to see the enemy and for some strange reason your INSTANT BUILD CODE doesnt break, which would indicate that the enemy DOES NOT!! get usage from the option.. BUT!!! they do.. i watched them several times raise 2 buildings at EXACTLY the same time, this is impossible because of the build times unless they were built instantly so the enemy are DEFINITLY getting the benefit from your instant build option.. mouse over: your routines are very badly chosen.. the pointers are far from isolated and include all sorts of stray pointers which could easily crash the game if you write to the wrong one, atm the worst case was that the pointers strayed into several soliders i didnt want to give health or kill.. its rather funny that you yourself claim this is the EASY!!!! way and a copout.. yet.. doesnt look so easy that your not making mistakes.. prob best to judge things ONCE you got them correct instead of just assuming next time. i wont go on.. i know how annoying it is people listing problems with ur trainers.. but i can assure u these are 100% factual errors.. not the shit that most idiots make up.. which i get my fare share aswell.. good luck in fixing them, from what you keep saying you dont have much time, eventually im sure u will get there.. good luck.. |
|
#12
|
|||
|
|||
|
Quote:
thanks for all of this info. i will look into it. i appreciate you looking at the code and giving me some pointers. perhaps i should look at different places to install the instant build code (maybe different places that aren't accessed). could it be also, that the enemy has two building structures (structures that build buildings). in those cases, two buildings could be raised at nearly the same time since two structures are doing the building simultaneously. the shift key thing must be an artifact in the way that i coded the capture of the Shift-function keys. it checks first to see if shift is pressed and then checks to see if the function key is pressed. if function is pressed a 1,2,3 is sent to a variable. if no function pressed then 0 is sent to the variable. this sets the health code to do several things based on the variable's contents (nothing, invincible, normal, zerohealth). i don't think the shift key is used much in the game so this is how i coded it based on my thoughts of what to try. perhaps there is a better way? regarding the global god mode vs. individual unit, it appears to me that if both troops (enemy and freindly) access the same functions to modify their health, then if their structures in memory are identical then it becomes harder to trace code down to find just code that is accessed by one and not the other when it comes to certain things like health. at least for me it is. it's so much simpler to breakpoint on friendly health and see what accesses it and then breakpoint on enemy health and see what accesses and voila, the only difference is when your mouse goes over it then it's easier to code health changes that way. for this game, though it presents some problems. the magic peice of code is the following in the cncgame.dat: FLD DWORD PTR DS:[ECX+8] RETN this small peice of code is CALLed by other areas to access the troop health when you put the mouse over them. the two areas i concerned myself with were: 0047E4A3 8B06 MOV EAX,DWORD PTR DS:[ESI] 0047E4A5 8BCE MOV ECX,ESI 0047E4A7 FF50 18--> CALL DWORD PTR DS:[EAX+18] 0047E4AA D91B FSTP DWORD PTR DS:[EBX] 0047E4AC 5F POP EDI health 2 0047E4F6 85C9 TEST ECX,ECX 0047E4F8 74 09 JE SHORT cnc3game.0047E503 0047E4FA 8B01 MOV EAX,DWORD PTR DS:[ECX] 0047E4FC FF50 18--> CALL DWORD PTR DS:[EAX+18] 0047E4FF D803 FADD DWORD PTR DS:[EBX] 0047E501 D91B FSTP DWORD PTR DS:[EBX] health 1 is called mostly by buildings and health 2 mostly by troops at any rate, an anomaly is that when a unit is being shot at, the code is also accessed (not just mouse over). so i didn't trace that fully. it also affects the god mode commands. for instance if you have selected a NOD troop and you are GDI and the NOD troops are shooting your GDI but you don't have GDI highlighted, just NOD, and you press F3 to set NOD to 0, then the GDI will sometimes get 0. even though you select each troop group with the mouse, each troop member has health individually and that FLD DWORD PTR DS:[ECX+8] function gets called by each of them in a loop. at any rate, yes-it was a little more of a challenge for this game than i anticipated, but i can work through the kinks. i never did find a loop of code that goes through only unit health of friendlies and i could not get any differences in the unit structures with freind/foe to make a global unit invincible option. i am curious how you found such a place as you told me earlier. btw, is anyone having troubles with your trainers at CH with the Scrin mission? also, i don't know where you accessed the health pointer when mouse over, but i didn't find alot of them and chose that one up there. so if you did something similar to me then likely you had units accessesing that code when friendlies where being shot at, just as i described. this may be the reason some people were complaining of random troops getting set to zero or invincible on the CH website. i saw those posts and it isn't always that people aren't reading the instructions. this isn't a jab at you, just something that i noticed when testing my own trainer and that function being called. also, i still can't get the fog thing perfect. i have only a half-baked working solution that isn't instant and can't be turned off and on. i am curious how you did it. it drives me crazy that i cannot isolate the code perfectly. i know you are busy too with trainer work and other coding ventures and so i appreciate the time with this. i also enjoy talking like this about the code and such and i always hope to learn more. thanks sheep- best, Cal Last edited by Caliber; 05-04-2007 at 06:49. |
|
#13
|
|||
|
|||
|
@cali
I do indeed use code close to that location but you must be doing something VERY wrong.. as i conducted several tests last night to make sure my pointers were 100%.. of course i dont use the exact locations u have there but close.. I set 2 forces (about 10 squads on each side) of NOD and GDI, i gave them BOTH infinite health, so they could CONSTANTLY fire against each other.. once this was done i spent the next 30 minutes trying to replicate the FAULT in your trainer.. i put the SLOW MOTION option on which is administered EXACTLY the same way as he health and spent about 10 - 15 minutes moving back and forth over the entire NOD force.. now according to you if my trainer suffers from the same fault as yours then some .. MOST DEFINITELY at least 1 of my gdi troops would suffer from slow speed as it would be administered to them as the pointer changed.. im happy to report that not 1 had slow speed, once i had proven this i set the 0 health option ON and killed the NOD, again.. if my trainer was faulty i would have found at least 1 of my team either DEAD or with 0 health.. i personally counted every unit and every one had infinite health.. anyone can do this test for themselves.. be my guest.. i detailed the REASON people are having problems with my trainer and its not because of STRAY pointers, its because the keys are active before the option is enabled, something ive now remedied and will be rlsing in the next version.. you can look back as far as WHEN i started making trainers you will see assholes claiming these MOUSE OVER options work for structures or units that it shouldnt.. so dont go by a few morons on a forum.. if there TRULY was a problem.. the forum would be swamped.. i know when there is a serious problem its reported by people who consistantly use my trainers and are genuinely NORMAL people.. i can count on this demograph to report bad options as they have done on every trainer ive done in CH so far.. and these posts arent supposed to be BAD MOUTHING anyone.. before people start throwing down their lives in defence of cali
|
|
#14
|
|||
|
|||
|
Quote:
thanks for doing that. i must have a problem then with the way that i am doing the writes or something. thanks for the info- best, Cal |
|
#15
|
|||
|
|||
|
Quote:
best, Cal |
![]() |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Rainbow Six Vegas v1.04 Trainer Doesn't work | mfw41 | Game Trainers | 7 | 30-03-2007 22:13 |
| The best (and fun) NFS:Carbon trainer available | intoksicated | General Gaming | 3 | 22-12-2006 04:55 |
| Gothic 2 Trainer prb | Dark3lement | General Gaming | 3 | 17-08-2006 15:50 |
| trainer patch for spyro 3 ntsc | VorteX | PSX Games | 0 | 22-08-2001 17:45 |