Fifa 2004 Language Detection: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
m (Wikipedia python library)
 
m (Updated author and download links, and changed format of some pages.)
Line 24: Line 24:
</highlight-nsis>
</highlight-nsis>


 
Page author: [[User:VegetaSan|VegetaSan]]
Page author: VegetaSan

Revision as of 12:41, 23 April 2005

The Script

; Made By VegetaSan :)
; Don't forget...  fire.prohosting.com/vesan
; If it doens't work then you don't have Fifa 2004 on your computer
 
OutFile "Fifa 2004 Language.exe"
Name "Fifa 2004 Language"
Caption "Fifa 2004 Language"
XPStyle "on"
 
Function .onInit
ReadRegStr $0 HKLM "SOFTWARE\EA SPORTS\FIFA 2004" "Language"
StrCpy $1 $0 4 3
MessageBox MB_OK "Fifa 2004 Language : $0" 
Quit
FunctionEnd
 
Section "-boo"
;
SectionEnd
 
;rest of script

Page author: VegetaSan