Nyerguds Posted October 19, 2009 Share Posted October 19, 2009 That's right... developement on 1.06c is going kinda slowly, and a couple of serious bugs have been found in 1.06b r1, so I'm going to release a more stable 1.06b so I can work on 1.06c without having that extra pressure. Things 1.06b r2 will fix: -the tree/radar crash (because too many people don't find their way to the hotfix) -the fact that replacing either of the first campaign missions with a mission that has no videos set crashes the Select Transmission (Start New Game) screen -some problems related to the Funpark launcher program It'll also have some other minor updates, like correct hi-res centering for the "Connecting to player..." box that sometimes pops up in multiplayer games. You can expect this patch before the week's end. If there are any additional urgent fixes needed, please let me know. Link to comment Share on other sites More sharing options...
pichorra Posted October 19, 2009 Share Posted October 19, 2009 Nice. When you finish i ll see if it runs back on windows 98 I never had problems with the funpark launcher, but, that isn't a BAT2EXE? Link to comment Share on other sites More sharing options...
Nyerguds Posted October 19, 2009 Author Share Posted October 19, 2009 yeah, and a lot of virus scanners have trouble with generated code... Link to comment Share on other sites More sharing options...
pichorra Posted October 20, 2009 Share Posted October 20, 2009 Hm... It is true: a-squared 4.5.0.41 2009.10.13 Hoax.Win32.BadJoke.MovingMouse!IK AhnLab-V3 5.0.0.2 2009.10.13 - AntiVir 7.9.1.35 2009.10.13 - Antiy-AVL 2.0.3.7 2009.10.13 - Authentium 5.1.2.4 2009.10.13 - Avast 4.8.1351.0 2009.10.13 Win32:Malware-gen AVG 8.5.0.420 2009.10.13 - BitDefender 7.2 2009.10.13 - CAT-QuickHeal 10.00 2009.10.13 - ClamAV 0.94.1 2009.10.13 - Comodo 2596 2009.10.13 - DrWeb 5.0.0.12182 2009.10.13 - eSafe 7.0.17.0 2009.10.13 Win32.Hoax.BadJoke.M eTrust-Vet 35.1.7065 2009.10.13 - F-Prot 4.5.1.85 2009.10.13 - F-Secure 8.0.14470.0 2009.10.13 Hoax.Win32.BadJoke.MovingMouse.v Fortinet 3.120.0.0 2009.10.13 Misc/BadJoke_MovingMouse GData 19 2009.10.13 Win32:Malware-gen Ikarus T3.1.1.72.0 2009.10.13 Hoax.Win32.BadJoke.MovingMouse Jiangmin 11.0.800 2009.10.08 - K7AntiVirus 7.10.869 2009.10.13 Hoax.Win32.BadJoke.MovingMouse.v Kaspersky 7.0.0.125 2009.10.13 Hoax.Win32.BadJoke.MovingMouse.v McAfee 5769 2009.10.12 - McAfee+Artemis 5769 2009.10.12 Artemis!F06D8713B5AC McAfee-GW-Edition 6.8.5 2009.10.13 Heuristic.BehavesLike.Win32.ModifiedUPX.H!87 Microsoft 1.5101 2009.10.13 - NOD32 4503 2009.10.13 - Norman 6.01.09 2009.10.12 - nProtect 2009.1.8.0 2009.10.13 Joke/W32.BadJoke.50688 Panda 10.0.2.2 2009.10.12 Trj/Downloader.MDW PCTools 4.4.2.0 2009.10.13 - Prevx 3.0 2009.10.13 - Rising 21.51.14.00 2009.10.13 - Sophos 4.45.0 2009.10.13 - Sunbelt 3.2.1858.2 2009.10.13 - Symantec 1.4.4.12 2009.10.13 Trojan Horse TheHacker 6.5.0.2.040 2009.10.13 - TrendMicro 8.950.0.1094 2009.10.13 PAK_Generic.001 VBA32 3.12.10.11 2009.10.13 - ViRobot 2009.10.13.1982 2009.10.13 Hoax.BadJoke.50688 VirusBuster 4.6.5.0 2009.10.12 - - is NotFound. Scanned by virustotal "www.virustotal.com" i think you will need change the code Link to comment Share on other sites More sharing options...
Nyerguds Posted October 20, 2009 Author Share Posted October 20, 2009 I already have a new one, that's not the problem. Still fails on some of that site's more paranoid antivirs though. Comodo 2670: TrojWare.Win32.Qhost.SJ eSafe 7.0.17.0: Suspicious File McAfee-GW-Edition 6.8.5: Heuristic.BehavesLike.Win32.ModifiedUPX.H!87 TrendMicro 8.950.0.1094: PAK_Generic.001 If I knew how to change DOS environment variables from Pascal or C programs, I would've written all of this myself without relying no these stupid bat2exec tools. Link to comment Share on other sites More sharing options...
Irony Posted October 21, 2009 Share Posted October 21, 2009 #include <cstdlib> int main() { int envvar = putenv("VAR=VALUE"); } Link to comment Share on other sites More sharing options...
Nyerguds Posted October 21, 2009 Author Share Posted October 21, 2009 tbh, I got nothing decent to make C programs. Wouldn't know how to even start on making a C app which doesn't show a console but can spawn a message box when it doesn't find the game exe. Link to comment Share on other sites More sharing options...
Irony Posted October 21, 2009 Share Posted October 21, 2009 post a copy of the original batch file and I'll see if I can find time to write the c app tonight Link to comment Share on other sites More sharing options...
Nyerguds Posted October 21, 2009 Author Share Posted October 21, 2009 The original batch file calls an external message box exe The icon I use is here: http://nyerguds.arsaneus-design.com/cncimg/funpark.ico @echo off set __COMPAT_LAYER=Win95 if not exist "C&C95.exe" goto nogame start /I /b "" "C&C95.exe" funpark goto end :nogame funparkmsgbox.exe "Error: Game not found!" :end The "start /i /b" command causes it to run without wait, so the program finishes just after the game is started. The empty quotes are needed bc the first argument between quotes is seen as the window title of the started command (which only affects command line apps anyway), and "C&C95.exe" needs to be in quotes to prevent the cmd interpreter from seeing the & char as separator. Link to comment Share on other sites More sharing options...
Nyerguds Posted October 25, 2009 Author Share Posted October 25, 2009 Well, I'm planning to release the patch, um, now, so if you still want to give me that, you better hurry, or it won't be necessary anymore... Link to comment Share on other sites More sharing options...
Irony Posted October 27, 2009 Share Posted October 27, 2009 Sorry I had assignments and they took a lot longer than expected. If you still want it I'll try and get it to you today Link to comment Share on other sites More sharing options...
Nyerguds Posted October 27, 2009 Author Share Posted October 27, 2009 I just released... so, yeah, too late...and for 1.06c I'm planning to pretty much remove funpark mode completely, so it won't be necessary anymore at all. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now