-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathemredist.nsi
More file actions
122 lines (108 loc) · 2.83 KB
/
emredist.nsi
File metadata and controls
122 lines (108 loc) · 2.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
!define WITHBONUSPROGRAMS
!define VER_MAJOR 3
!define VER_MINOR 7
!ifdef HAVE_UPX
!packhdr tmp.dat "upx\upx --best --compress-icons=1 tmp.dat"
!endif
!include "MUI.nsh"
Name "EliteMap"
OutFile elitemap${VER_MAJOR}${VER_MINOR}.exe
!define MUI_HEADERIMAGE
!define MUI_ABORTWARNING
!define MUI_COMPONENTSPAGE_NODESC
!define MUI_ICON nsis_icon.ico
!define MUI_HEADERIMAGE_BITMAP nsis_header.bmp
!define MUI_WELCOMEFINISHPAGE_BITMAP nsis_sidebar.bmp
!define MUI_COMPONENTSPAGE_CHECKBITMAP nsis_checks.bmp
!define MUI_FINISHPAGE_SHOWREADME welcome.mht
!define MUI_FINISHPAGE_RUN elitemap.exe
!define MUI_FINISHPAGE_RUN_TEXT "Run EliteMap now"
!define MUI_FINISHPAGE_LINK "Visit The Helmeted Rodent website"
!define MUI_FINISHPAGE_LINK_LOCATION "http://helmetedrodent.kickassgamers.com"
!define MUI_FINISHPAGE_NOREBOOTSUPPORT
!define MUI_WELCOMEPAGE_TEXT "This wizard will guide you through the installation of EliteMap.\r\n\r\nRemember that you must place any Pokémon ROM files you intend to use in the same folder as EliteMap.\r\n\r\nClick next to continue."
!insertmacro MUI_PAGE_WELCOME
!insertmacro MUI_PAGE_COMPONENTS
!insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_PAGE_FINISH
!insertmacro MUI_LANGUAGE "English"
AutoCloseWindow false
ShowInstDetails show
SetOverwrite on
SetDateSave on
;BGGradient babbe6 ffffff
InstallDir $EXEDIR\EliteMap
CompletedText "Yatta ze!"
SubSection "!EliteMap"
Section "EliteMap (req'd)"
SectionIn RO
SetOutPath $INSTDIR
File elitemap.exe
File scripted.exe
File welcome.mht
SetOverwrite ifnewer
File pokeroms.ini
File rs_songs.txt
File fr_songs.txt
File em_songs.txt
File "Hidden Functions.png"
;CreateShortCut "$FAVORITES\The Helmeted Rodent.lnk" "http://helmetedrodent.kickassgamers.com"
SectionEnd
Section "Supporting DLLs"
File "Lunar Compress.dll"
SectionEnd
Section "Toolchain"
File baseedit.exe
File bewildered.exe
File dexter.exe
File rsball.exe
File spread.exe
File patted.exe
File pet.exe
;File trained.exe
File fonted.exe
SectionEnd
Section "Beta tools"
File mapedit.exe
SectionEnd
Section "Nifty IPS stuff"
File "GBPlayer intro.ips"
File "No Drugs intro.ips"
File "Edited in EliteMap.ips"
SectionEnd
Section "Media Library"
SectionIn 1 2
SetOutPath $INSTDIR
File hoennmap.bmp
File kantomap.bmp
SetOutPath $INSTDIR\Media
File Media\*.*
SectionEnd
SubSectionEnd
Section "Rubikon"
SetOutPath $INSTDIR
File rkc.exe
File rubikon.dat
File commands.html
File std.rbh
File stditems.rbh
File stdpoke.rbh
File richboy.rbc
File richboy2.rbc
File tutorial.rbc
File rubikonicon.gif
File tutorial.html
File rubikon.syn
SectionEnd
!ifdef WITHBONUSPROGRAMS
Section "Bonus Programs"
SetOutPath $INSTDIR
File lips.exe
File pokepic.exe
File snesedit.exe
File tlp.exe
File PokeCryGUI.exe
File unLZ.GBA.exe
SectionEnd
!endif