Author Topic: unlock new games (eg kof2003...)  (Read 8180 times)

Offline oliverkof

  • Newbies
  • *
  • Posts: 13
  • Karma: +0/-0
unlock new games (eg kof2003...)
« on: November 10, 2005, 03:13:35 AM »
Hello every one,

I was sucessfully to add new neogeo driver into FBA (half actually)!
But the problem is that the new games are locked!!! new games include all post kof2002 games such as kof2003, svc, samsaho5, ...

Does anyone know how i can unlock the games and play it by fba ?????????????????????????????????????????????????????????????

(i found the new neogeo source code from
http://fbap.1emulation.com/
)


by the way, i found these links do not work!!!

Here's the source for saving decrypted roms:

decrypted Cs

http://neosource.1emu.net/pages/source/savedeccs.htm

decrypted (descrambled) Ps

http://neosource.1emu.net/pages/source/savedecp.htm

decrypted S1

http://neosource.1emu.net/pages/source/savedecs.htm

decrypted Vs

http://neosource.1emu.net/pages/source/savedecv.htm
 
 
 
« Last Edit: November 12, 2005, 11:24:29 PM by iq_132 »

Offline Badablek

  • Jr. Member
  • **
  • Posts: 63
  • Karma: +0/-0
  • Member
Re: unlock new games (eg kof2003...)
« Reply #1 on: November 11, 2005, 10:04:50 AM »
Quote
Does anyone know how i can unlock the games and play it by fba


Open fbap.ini (Folder "Config"), go to

 // --- Miscellaneous settings ------------------------------------------------

// If non-zero, enable locked games
// 1=Disable, 0=Enable
nLockGames 1

Change nLockGames 1 with nLockGames 0

Save, enjoy


bye

Offline iq_132

  • Administrator
  • *****
  • Posts: 3724
  • Karma: +411/-0
  • Definitely not Dink!
    • NeoSource
Re: unlock new games (eg kof2003...)
« Reply #2 on: November 11, 2005, 12:44:21 PM »
You can also go through d_neogeo.cpp and remove | BDF_LOCKED from all of the locked drivers, but according to the license, you MUST NOT DISTRIBUTE binaries with games unlocked -- you must keep your fba.exe to yourself.

Also, I have those .htm files, so I'll re-upload them and change the links on my forum for them. ;)
« Last Edit: November 11, 2005, 12:47:23 PM by iq_132 »


Offline oliverkof

  • Newbies
  • *
  • Posts: 13
  • Karma: +0/-0
Re: unlock new games (eg kof2003...)
« Reply #3 on: November 12, 2005, 02:23:15 AM »
It works now! Thank you!

By the way, have those links fixed ? ? ?

Offline iq_132

  • Administrator
  • *****
  • Posts: 3724
  • Karma: +411/-0
  • Definitely not Dink!
    • NeoSource
Re: unlock new games (eg kof2003...)
« Reply #4 on: November 12, 2005, 11:28:48 PM »
Yup, I uploaded them to neosource and have changed the links.


Offline oliverkof

  • Newbies
  • *
  • Posts: 13
  • Karma: +0/-0
Re: unlock new games (eg kof2003...)
« Reply #5 on: November 13, 2005, 10:19:46 PM »
Thank you! Those drivers are pretty useful! :biggrin:

by the way,
I found these link was broken as well:
http://neosource.1emu.net/pages/games/neopcm2.htm
in http://neosource.1emu.net/pages/source/savedecv.htm

iq_132, would you mind fixing it as well if having time!

Offline oliverkof

  • Newbies
  • *
  • Posts: 13
  • Karma: +0/-0
Re: unlock new games (eg kof2003...)
« Reply #6 on: November 13, 2005, 11:02:57 PM »
Hi, Does anyone know the source to change 'load game' window from original to the fbap one?
I attached those pictures below!
(the fbap source code is available from http://fbap.1emulation.com/, i don't know where is the part for this change)

sorry, one more question:

how can i change/add those Japanese character for the name of games? :idiot:
« Last Edit: November 14, 2005, 02:02:01 PM by iq_132 »

Offline iq_132

  • Administrator
  • *****
  • Posts: 3724
  • Karma: +411/-0
  • Definitely not Dink!
    • NeoSource
Re: unlock new games (eg kof2003...)
« Reply #7 on: November 14, 2005, 02:07:38 PM »
Hi, Does anyone know the source to change 'load game' window from original to the fbap one?
I attached those pictures below!
(the fbap source code is available from http://fbap.1emulation.com/, i don't know where is the part for this change)
Check the src\burner\win32\app.rc for those changes :)

Quote
sorry, one more question:

how can i change/add those Japanese character for the name of games? :idiot:

Code: [Select]
struct BurnDriver BurnDrvQuizdais = {
"quizdais", NULL, "neogeo", "1991",
"Quiz Daisousa Sen - the last count down\0", NULL, "SNK", "Neo Geo",
L"\u30AF\u30A4\u30BA\u5927\u635C\u67FB\u7DDA - the last count down\0Quiz Daisousa Sen\0", NULL, NULL, NULL,
BDF_GAME_WORKING, 2, HARDWARE_SNK_NEOGEO,
NULL, quizdaisRomInfo, quizdaisRomName, neogeoInputInfo, neogeoDIPInfo,
NeoInit, NeoExit, NeoFrame, NeoRender, NeoScan, &NeoRecalcPalette,
nNeoScreenWidth, 224, 4, 3
};

The line that starts out L"\u30AF\u30A4 is where you would put the japanese text, I'm not any more familiar with it than that though...