Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions
Register FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
  #16  
Old 27-05-2012, 10:41
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,043 Times in 3,086 Posts
pakrat2k2 is on a distinguished road
let it run at night.
Reply With Quote
Sponsored Links
  #17  
Old 29-05-2012, 09:53
redetav redetav is offline
Registered User
 
Join Date: Mar 2012
Location: Brazil
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
redetav is on a distinguished road
Quote:
Originally Posted by pakrat2k2 View Post
just like resident evil its missing the get locale code ( peterf1999 posted this in another topic ) I'll just paste it here so yener may update his script to include this bit of code ( BOLD needs to be changed for Street Fighter of course.

Code:
[Registry]
Root: HKLM; Subkey: SOFTWARE\Capcom\RERC; ValueName: locale; ValueType: String; ValueData: {code:GetLocales}; Flags: uninsdeletekey

function GetLocales(Param: string): string;
begin
 
 case GetUILanguage and $3FF of
    
  $10: Result:='1040';
  $09: Result:='1033';
  $0A: Result:='1034';
  $07: Result:='1031';
  $0C: Result:='1036';
  $15: Result:='1045';
  $19: Result:='1049';
  $13: Result:='1043';
  else  Result:='1033';  

 end;
end;
Maybe it's just a small fix, maybe after yener90 finish your current projects, he look at that, but we have to thank him for all he has done and is doing, thanks yener90.
Reply With Quote
  #18  
Old 29-05-2012, 14:32
Joe Forster/STA's Avatar
Joe Forster/STA Joe Forster/STA is offline
Senior forum member
 
Join Date: Nov 2000
Location: Hungary
Posts: 9,836
Thanks: 20
Thanked 342 Times in 224 Posts
Joe Forster/STA is on a distinguished road
A more comprehensible and maintainable version (plain Pascal, never used Inno Setup myself):

Code:
function GetLocales(Param: string): string;
var
 UILanguage: Integer;
begin
 UILanguage := GetUILanguage and $3FF;
 if not (UILanguage in [$10, $09, $0A, $07, $0C, $15, $19, $13])
  then UILanguage := $09;
 Str($0400 or UILanguage, Result);
end;
__________________
Joe Forster/STA
For more information, see the FileForums forum rules and the PC Games forum FAQ!
Don't contact me via E-mail or PM to ask for help with anything other than patches (or software in general) done by me, otherwise your request may be deleted without any reply!
Homepage: http://sta.c64.org, E-mail: [email protected]; for attachments, send compressed (ZIP or RAR) files only, otherwise your E-mail will bounce back!
Reply With Quote
  #19  
Old 15-07-2012, 09:00
luckas_carp luckas_carp is offline
Registered User
 
Join Date: Jan 2011
Location: Argentina
Posts: 6
Thanks: 4
Thanked 0 Times in 0 Posts
luckas_carp is on a distinguished road
Thanks yener, conversion works correctly under windows 7 x 86!
Reply With Quote
  #20  
Old 22-10-2012, 13:25
mixz mixz is offline
Registered User
 
Join Date: Oct 2012
Location: egypt
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
mixz is on a distinguished road
What is this
when i open converter
i see that
<DVD not found. Click "Select" to select correct DVD Drive/Files>
i can understandwhat it want

Reply With Quote
  #21  
Old 16-12-2012, 13:42
Btx's Avatar
Btx Btx is offline
Registered User
 
Join Date: Nov 2012
Location: Anywhere
Posts: 105
Thanks: 623
Thanked 41 Times in 38 Posts
Btx is on a distinguished road
Where to put the folder with directx, windows live, vcredist ... ?

Last edited by Btx; 17-12-2012 at 10:17.
Reply With Quote
  #22  
Old 16-12-2012, 16:52
damar15's Avatar
damar15 damar15 is offline
Registered User
 
Join Date: Jul 2010
Location: jordan
Posts: 189
Thanks: 184
Thanked 165 Times in 41 Posts
damar15 is an unknown quantity at this point
Quote:
Originally Posted by mixz View Post
What is this
when i open converter
i see that
<DVD not found. Click "Select" to select correct DVD Drive/Files>
i can understandwhat it want

you extract the game on you hd dvd1 and dvd2 and select the foder wher you extract
__________________
" I " ---> Avoid It " We " ---> Use It.. " Ego" ---> Kill It.. " LOVE " --> Value It. " SMILE " --> Keep It.
Reply With Quote
  #23  
Old 17-12-2012, 10:19
Btx's Avatar
Btx Btx is offline
Registered User
 
Join Date: Nov 2012
Location: Anywhere
Posts: 105
Thanks: 623
Thanked 41 Times in 38 Posts
Btx is on a distinguished road
I want to do the conversion with the patch v1.6 and DLC unlocker .. Is that possible? 2DVDx5
Reply With Quote
  #24  
Old 27-07-2013, 08:30
elbubi's Avatar
elbubi elbubi is offline
Registered User
 
Join Date: Jan 2009
Location: Rosario, Argentina
Posts: 247
Thanks: 211
Thanked 45 Times in 41 Posts
elbubi is on a distinguished road
Thanks Yener.

I want to use it with 1.08 patch + dlc unlocker, does anyone know if it works and if it stills fit in 1xdvd5?

Regards and thanks in advance.
Reply With Quote
  #25  
Old 28-07-2013, 18:52
elbubi's Avatar
elbubi elbubi is offline
Registered User
 
Join Date: Jan 2009
Location: Rosario, Argentina
Posts: 247
Thanks: 211
Thanked 45 Times in 41 Posts
elbubi is on a distinguished road
Tested.

It works perfectly, but doesn't fit in 1xdvd5. Recoded videos and now it fits (4.1GB total)

Regards!
Reply With Quote
  #26  
Old 28-07-2013, 20:14
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,043 Times in 3,086 Posts
pakrat2k2 is on a distinguished road
thanks for posting back that info. Its important info that others who have the game & want to do the same to have.
Reply With Quote
  #27  
Old 01-08-2013, 01:51
mier90 mier90 is offline
Registered User
 
Join Date: Aug 2012
Location: Malaysia
Posts: 117
Thanks: 123
Thanked 50 Times in 36 Posts
mier90 is on a distinguished road
Quote:
Originally Posted by elbubi View Post
Tested.

It works perfectly, but doesn't fit in 1xdvd5. Recoded videos and now it fits (4.1GB total)

Regards!
is there any other method that can fit it into 1xdvd5 without recoded the videos?
Reply With Quote
  #28  
Old 01-08-2013, 09:47
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,043 Times in 3,086 Posts
pakrat2k2 is on a distinguished road
depends on wether your doing original version of game or game + updates. If doing game + updates then pm elbubi for details on what videos need to be re-encoded for it to fit on 1xdvd5
Reply With Quote
  #29  
Old 01-08-2013, 18:22
elbubi's Avatar
elbubi elbubi is offline
Registered User
 
Join Date: Jan 2009
Location: Rosario, Argentina
Posts: 247
Thanks: 211
Thanked 45 Times in 41 Posts
elbubi is on a distinguished road
For all the people having doubts how to get game+1.08update+dlc to fit in 1xdvd5, and don't want/know how to reencode videos, you can do the following.

1. Download & Install SF2XTekken BlackBox Repack.
2. Backup folder "stream\CMN\movie" (where all recoded videos are stored)
3. Uninstall BB repack.
4. Install Original game
5. Install Update 1.08
6. Install DLC + Unlockers (optional)
7. Copy backed up folders/files in step 2 overwriting original videos.
8. Use Yener great converter to fit all in only 1xdvd5.

Cheers!
Reply With Quote
The Following User Says Thank You to elbubi For This Useful Post:
pakrat2k2 (01-08-2013)
  #30  
Old 07-08-2013, 20:25
mier90 mier90 is offline
Registered User
 
Join Date: Aug 2012
Location: Malaysia
Posts: 117
Thanks: 123
Thanked 50 Times in 36 Posts
mier90 is on a distinguished road
Quote:
Originally Posted by elbubi View Post
For all the people having doubts how to get game+1.08update+dlc to fit in 1xdvd5, and don't want/know how to reencode videos, you can do the following.

1. Download & Install SF2XTekken BlackBox Repack.
2. Backup folder "stream\CMN\movie" (where all recoded videos are stored)
3. Uninstall BB repack.
4. Install Original game
5. Install Update 1.08
6. Install DLC + Unlockers (optional)
7. Copy backed up folders/files in step 2 overwriting original videos.
8. Use Yener great converter to fit all in only 1xdvd5.

Cheers!
Nice one! (Y) working like charm in w7x64.
Thanks!
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
INDEX - CD2DVD Conversion Index **UPDATED: 17-07-2024** Grumpy PC Games - CD/DVD Conversions 252 16-07-2024 20:35
Street Fighter X Tekken DVD9 to DVD5 Brunao PC Games - CD/DVD Conversions 3 17-12-2012 01:38



All times are GMT -7. The time now is 12:14.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com