| 1 | ;NSIS Modern User Interface version 1.70
|
|---|
| 2 |
|
|---|
| 3 | ;--------------------------------
|
|---|
| 4 | ;Include Modern UI
|
|---|
| 5 |
|
|---|
| 6 | !include "MUI.nsh"
|
|---|
| 7 |
|
|---|
| 8 | ;--------------------------------
|
|---|
| 9 | ;General
|
|---|
| 10 |
|
|---|
| 11 | !define VERSION "1.1"
|
|---|
| 12 | !define TITLE "CzWoW"
|
|---|
| 13 | !define FULL_TITLE "Clientská èestina WoW"
|
|---|
| 14 | !define CREATOR "maron"
|
|---|
| 15 | !define CHANGELOG_FILE "CzWoW.html"
|
|---|
| 16 | !define CHANGELOG_FILE_NAME "O èetinì.lnk"
|
|---|
| 17 | !define STARTER "WoW.exe"
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 | ;Name and file
|
|---|
| 22 | Name "${FULL_TITLE} ${VERSION}"
|
|---|
| 23 | OutFile "Instalace-${TITLE}-${VERSION}.exe"
|
|---|
| 24 |
|
|---|
| 25 |
|
|---|
| 26 | ;Default installation folder
|
|---|
| 27 | InstallDirRegKey HKLM "SOFTWARE\Blizzard Entertainment\World of Warcraft" "InstallPath"
|
|---|
| 28 | InstallDir "$PROGRAMFILES\World of Warcraft\"
|
|---|
| 29 |
|
|---|
| 30 | ;--------------------------------
|
|---|
| 31 | ;Interface Settings
|
|---|
| 32 |
|
|---|
| 33 | !define MUI_ABORTWARNING
|
|---|
| 34 |
|
|---|
| 35 | ;--------------------------------
|
|---|
| 36 | ;Language Selection Dialog Settings
|
|---|
| 37 |
|
|---|
| 38 | ;Remember the installer language
|
|---|
| 39 | !define MUI_LANGDLL_REGISTRY_ROOT "HKCU"
|
|---|
| 40 | !define MUI_LANGDLL_REGISTRY_KEY "Software\${CREATOR}\${FULL_TITLE}"
|
|---|
| 41 | !define MUI_LANGDLL_REGISTRY_VALUENAME "Installer Language"
|
|---|
| 42 |
|
|---|
| 43 | ;--------------------------------
|
|---|
| 44 |
|
|---|
| 45 | ;Pages
|
|---|
| 46 |
|
|---|
| 47 | ;!define MUI_ICON "Heroes.ico"
|
|---|
| 48 | ;!define MUI_UNICON "Heroes.ico"
|
|---|
| 49 |
|
|---|
| 50 | !insertmacro MUI_PAGE_WELCOME
|
|---|
| 51 | ;!insertmacro MUI_PAGE_LICENSE "${NSISDIR}\Contrib\Modern UI\License.txt"
|
|---|
| 52 | !insertmacro MUI_PAGE_COMPONENTS
|
|---|
| 53 | !insertmacro MUI_PAGE_DIRECTORY
|
|---|
| 54 | !insertmacro MUI_PAGE_INSTFILES
|
|---|
| 55 |
|
|---|
| 56 | !insertmacro MUI_UNPAGE_CONFIRM
|
|---|
| 57 | !insertmacro MUI_UNPAGE_INSTFILES
|
|---|
| 58 |
|
|---|
| 59 |
|
|---|
| 60 | ;--------------------------------
|
|---|
| 61 | ;Languages
|
|---|
| 62 |
|
|---|
| 63 | !insertmacro MUI_LANGUAGE "English"
|
|---|
| 64 | !insertmacro MUI_LANGUAGE "Czech"
|
|---|
| 65 |
|
|---|
| 66 | ;--------------------------------
|
|---|
| 67 | ;Reserve Files
|
|---|
| 68 |
|
|---|
| 69 | ;These files should be inserted before other files in the data block
|
|---|
| 70 | ;Keep these lines before any File command
|
|---|
| 71 | ;Only for solid compression (by default, solid compression is enabled for BZIP2 and LZMA)
|
|---|
| 72 |
|
|---|
| 73 | !insertmacro MUI_RESERVEFILE_LANGDLL
|
|---|
| 74 |
|
|---|
| 75 | ;--------------------------------
|
|---|
| 76 | ;Installer Sections
|
|---|
| 77 |
|
|---|
| 78 | Section "Nutné souèásti" Nutne
|
|---|
| 79 |
|
|---|
| 80 | SectionIn RO
|
|---|
| 81 |
|
|---|
| 82 | ; Write the uninstall keys for Windows
|
|---|
| 83 | WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${TITLE}" "DisplayName" "${FULL_TITLE}"
|
|---|
| 84 | WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${TITLE}" "UninstallString" '"$INSTDIR\${TITLE}-Uninstall.exe"'
|
|---|
| 85 | WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${TITLE}" "NoModify" 1
|
|---|
| 86 | WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${TITLE}" "NoRepair" 1
|
|---|
| 87 |
|
|---|
| 88 |
|
|---|
| 89 | SetOutPath "$INSTDIR\CzWoW"
|
|---|
| 90 |
|
|---|
| 91 | ;ADD YOUR OWN FILES HERE...
|
|---|
| 92 | File "CzWoW\${CHANGELOG_FILE}"
|
|---|
| 93 | File "CzWoW\*.*"
|
|---|
| 94 |
|
|---|
| 95 | ;Store installation folder
|
|---|
| 96 | WriteRegStr HKCU "Software\${CREATOR}\${TITLE}" "" $INSTDIR
|
|---|
| 97 |
|
|---|
| 98 | ;Create uninstaller
|
|---|
| 99 | WriteUninstaller "$INSTDIR\${TITLE}-Uninstall.exe"
|
|---|
| 100 |
|
|---|
| 101 | SectionEnd
|
|---|
| 102 |
|
|---|
| 103 | Section "Addon" Addon
|
|---|
| 104 | SetOutPath "$INSTDIR\Interface\AddOns\CzWoW\"
|
|---|
| 105 | File "Interface\AddOns\CzWoW\*.*"
|
|---|
| 106 | SetOutPath "$INSTDIR\Interface\AddOns\ProffBot\"
|
|---|
| 107 | File "Interface\AddOns\ProffBot\*.*"
|
|---|
| 108 | SectionEnd
|
|---|
| 109 |
|
|---|
| 110 | Section "Èeské texty" CZTexts
|
|---|
| 111 | SetOutPath "$INSTDIR\Interface\AddOns\CzWoW\"
|
|---|
| 112 | File "CZ\*.*"
|
|---|
| 113 | SectionEnd
|
|---|
| 114 |
|
|---|
| 115 | Section "Slovenské texty" SKTexts
|
|---|
| 116 | SetOutPath "$INSTDIR\Interface\AddOns\CzWoW\"
|
|---|
| 117 | File "SK\*.*"
|
|---|
| 118 | SectionEnd
|
|---|
| 119 |
|
|---|
| 120 | Section "Fonty" Fonts
|
|---|
| 121 | SetOutPath "$INSTDIR\Data\Fonts\"
|
|---|
| 122 | File "Data\Fonts\*.*"
|
|---|
| 123 | SectionEnd
|
|---|
| 124 |
|
|---|
| 125 | Section "Zvuk" Sound
|
|---|
| 126 | SetOutPath "$INSTDIR\Data\Sound\"
|
|---|
| 127 | File "Data\Sound\*.*"
|
|---|
| 128 |
|
|---|
| 129 | SetOutPath "$INSTDIR\Data\Sound\Creature\Abomination"
|
|---|
| 130 | File "Data\Sound\Creature\Abomination\*.*"
|
|---|
| 131 | SetOutPath "$INSTDIR\Data\Sound\Creature\Archer"
|
|---|
| 132 | File "Data\Sound\Creature\Archer\*.*"
|
|---|
| 133 | SetOutPath "$INSTDIR\Data\Sound\Creature\CairneBloodhoof"
|
|---|
| 134 | File "Data\Sound\Creature\CairneBloodhoof\*.*"
|
|---|
| 135 | SetOutPath "$INSTDIR\Data\Sound\Creature\Druid of the Claw"
|
|---|
| 136 | File "Data\Sound\Creature\Druid of the Claw\*.*"
|
|---|
| 137 | SetOutPath "$INSTDIR\Data\Sound\Creature\Dryad"
|
|---|
| 138 | File "Data\Sound\Creature\Dryad\*.*"
|
|---|
| 139 | SetOutPath "$INSTDIR\Data\Sound\Creature\Footman"
|
|---|
| 140 | File "Data\Sound\Creature\Footman\*.*"
|
|---|
| 141 | SetOutPath "$INSTDIR\Data\Sound\Creature\Forest Troll"
|
|---|
| 142 | File "Data\Sound\Creature\Forest Troll\*.*"
|
|---|
| 143 | SetOutPath "$INSTDIR\Data\Sound\Creature\Grunt"
|
|---|
| 144 | File "Data\Sound\Creature\Grunt\*.*"
|
|---|
| 145 | SetOutPath "$INSTDIR\Data\Sound\Creature\Hero Moon Priestess"
|
|---|
| 146 | File "Data\Sound\Creature\Hero Moon Priestess\*.*"
|
|---|
| 147 | SetOutPath "$INSTDIR\Data\Sound\Creature\Hero Mountain King"
|
|---|
| 148 | File "Data\Sound\Creature\Hero Mountain King\*.*"
|
|---|
| 149 | SetOutPath "$INSTDIR\Data\Sound\Creature\HumanFemaleOfficialNPC"
|
|---|
| 150 | File "Data\Sound\Creature\HumanFemaleOfficialNPC\*.*"
|
|---|
| 151 | SetOutPath "$INSTDIR\Data\Sound\Creature\HumanFemaleStandardNPC"
|
|---|
| 152 | File "Data\Sound\Creature\HumanFemaleStandardNPC\*.*"
|
|---|
| 153 | SetOutPath "$INSTDIR\Data\Sound\Creature\HumanFemaleWarriorNPC"
|
|---|
| 154 | File "Data\Sound\Creature\HumanFemaleWarriorNPC\*.*"
|
|---|
| 155 | SetOutPath "$INSTDIR\Data\Sound\Creature\HumanMaleOfficialNPC"
|
|---|
| 156 | File "Data\Sound\Creature\HumanMaleOfficialNPC\*.*"
|
|---|
| 157 | SetOutPath "$INSTDIR\Data\Sound\Creature\HumanMaleStandardNPC"
|
|---|
| 158 | File "Data\Sound\Creature\HumanMaleStandardNPC\*.*"
|
|---|
| 159 | SetOutPath "$INSTDIR\Data\Sound\Creature\HumanMaleWarriorNPC"
|
|---|
| 160 | File "Data\Sound\Creature\HumanMaleWarriorNPC\*.*"
|
|---|
| 161 | SetOutPath "$INSTDIR\Data\Sound\Creature\Huntress"
|
|---|
| 162 | File "Data\Sound\Creature\Huntress\*.*"
|
|---|
| 163 | SetOutPath "$INSTDIR\Data\Sound\Creature\JainaProudmoore"
|
|---|
| 164 | File "Data\Sound\Creature\JainaProudmoore\*.*"
|
|---|
| 165 | SetOutPath "$INSTDIR\Data\Sound\Creature\Mortar Team"
|
|---|
| 166 | File "Data\Sound\Creature\Mortar Team\*.*"
|
|---|
| 167 | SetOutPath "$INSTDIR\Data\Sound\Creature\Muradin"
|
|---|
| 168 | File "Data\Sound\Creature\Muradin\*.*"
|
|---|
| 169 | SetOutPath "$INSTDIR\Data\Sound\Creature\JainaProudmoore"
|
|---|
| 170 | File "Data\Sound\Creature\JainaProudmoore\*.*"
|
|---|
| 171 | SetOutPath "$INSTDIR\Data\Sound\Creature\Necromancer"
|
|---|
| 172 | File "Data\Sound\Creature\Necromancer\*.*"
|
|---|
| 173 | SetOutPath "$INSTDIR\Data\Sound\Creature\NightElfFemalePriestessNPC"
|
|---|
| 174 | File "Data\Sound\Creature\NightElfFemalePriestessNPC\*.*"
|
|---|
| 175 | SetOutPath "$INSTDIR\Data\Sound\Creature\NightElfFemaleSentinelNPC"
|
|---|
| 176 | File "Data\Sound\Creature\NightElfFemaleSentinelNPC\*.*"
|
|---|
| 177 | SetOutPath "$INSTDIR\Data\Sound\Creature\NightElfFemaleStandardNPC"
|
|---|
| 178 | File "Data\Sound\Creature\NightElfFemaleStandardNPC\*.*"
|
|---|
| 179 | SetOutPath "$INSTDIR\Data\Sound\Creature\NightElfMaleOfficialNPC"
|
|---|
| 180 | File "Data\Sound\Creature\NightElfMaleOfficialNPC\*.*"
|
|---|
| 181 | SetOutPath "$INSTDIR\Data\Sound\Creature\NightElfMaleStandardNPC"
|
|---|
| 182 | File "Data\Sound\Creature\NightElfMaleStandardNPC\*.*"
|
|---|
| 183 | SetOutPath "$INSTDIR\Data\Sound\Creature\NightElfMaleWarriorNPC"
|
|---|
| 184 | File "Data\Sound\Creature\NightElfMaleWarriorNPC\*.*"
|
|---|
| 185 | SetOutPath "$INSTDIR\Data\Sound\Creature\Peasant"
|
|---|
| 186 | File "Data\Sound\Creature\Peasant\*.*"
|
|---|
| 187 | SetOutPath "$INSTDIR\Data\Sound\Creature\Peon"
|
|---|
| 188 | File "Data\Sound\Creature\Peon\*.*"
|
|---|
| 189 | SetOutPath "$INSTDIR\Data\Sound\Creature\Rifleman"
|
|---|
| 190 | File "Data\Sound\Creature\Rifleman\*.*"
|
|---|
| 191 | SetOutPath "$INSTDIR\Data\Sound\Creature\Satyre"
|
|---|
| 192 | File "Data\Sound\Creature\Satyre\*.*"
|
|---|
| 193 | SetOutPath "$INSTDIR\Data\Sound\Creature\SylvanasWindrunner"
|
|---|
| 194 | File "Data\Sound\Creature\SylvanasWindrunner\*.*"
|
|---|
| 195 | SetOutPath "$INSTDIR\Data\Sound\Creature\Tauren"
|
|---|
| 196 | File "Data\Sound\Creature\Tauren\*.*"
|
|---|
| 197 | SetOutPath "$INSTDIR\Data\Sound\Creature\Thrall"
|
|---|
| 198 | File "Data\Sound\Creature\Thrall\*.*"
|
|---|
| 199 | SetOutPath "$INSTDIR\Data\Sound\Creature\TyrandeWhisperwind"
|
|---|
| 200 | File "Data\Sound\Creature\TyrandeWhisperwind\*.*"
|
|---|
| 201 | SetOutPath "$INSTDIR\Data\Sound\Creature\Varimathras"
|
|---|
| 202 | File "Data\Sound\Creature\Varimathras\*.*"
|
|---|
| 203 | SetOutPath "$INSTDIR\Data\Sound\Creature\Witch Doctor"
|
|---|
| 204 | File "Data\Sound\Creature\Witch Doctor\*.*"
|
|---|
| 205 | SetOutPath "$INSTDIR\Data\Sound\Creature\Wolf Rider"
|
|---|
| 206 | File "Data\Sound\Creature\Wolf Rider\*.*"
|
|---|
| 207 |
|
|---|
| 208 | SetOutPath "$INSTDIR\Data\Sound\Character\Gnome\GnomeMaleErrorMessages"
|
|---|
| 209 | File "Data\Sound\Character\Gnome\GnomeMaleErrorMessages\*.*"
|
|---|
| 210 | SetOutPath "$INSTDIR\Data\Sound\Character\Gnome\GnomeVocalMale"
|
|---|
| 211 | File "Data\Sound\Character\Gnome\GnomeVocalMale\*.*"
|
|---|
| 212 |
|
|---|
| 213 | SetOutPath "$INSTDIR\Data\Sound\Character\Human\FemaleErrorMessages"
|
|---|
| 214 | File "Data\Sound\Character\Human\FemaleErrorMessages\*.*"
|
|---|
| 215 | SetOutPath "$INSTDIR\Data\Sound\Character\Human\HumanVocalFemale"
|
|---|
| 216 | File "Data\Sound\Character\Human\HumanVocalFemale\*.*"
|
|---|
| 217 | SetOutPath "$INSTDIR\Data\Sound\Character\Human\HumanVocalMale"
|
|---|
| 218 | File "Data\Sound\Character\Human\HumanVocalMale\*.*"
|
|---|
| 219 | SetOutPath "$INSTDIR\Data\Sound\Character\Human\MaleErrorMessages"
|
|---|
| 220 | File "Data\Sound\Character\Human\MaleErrorMessages\*.*"
|
|---|
| 221 |
|
|---|
| 222 | SetOutPath "$INSTDIR\Data\Sound\Character\NightElf\NightElfFemaleErrorMessages"
|
|---|
| 223 | File "Data\Sound\Character\NightElf\NightElfFemaleErrorMessages\*.*"
|
|---|
| 224 | SetOutPath "$INSTDIR\Data\Sound\Character\NightElf\NightElfMaleErrorMessages"
|
|---|
| 225 | File "Data\Sound\Character\NightElf\NightElfMaleErrorMessages\*.*"
|
|---|
| 226 | SetOutPath "$INSTDIR\Data\Sound\Character\NightElf\NightElfVocalFemale"
|
|---|
| 227 | File "Data\Sound\Character\NightElf\NightElfVocalFemale\*.*"
|
|---|
| 228 | SetOutPath "$INSTDIR\Data\Sound\Character\NightElf\NightElfVocalMale"
|
|---|
| 229 | File "Data\Sound\Character\NightElf\NightElfVocalMale\*.*"
|
|---|
| 230 |
|
|---|
| 231 | SetOutPath "$INSTDIR\Data\Sound\Character\Tauren\TaurenMale"
|
|---|
| 232 | File "Data\Sound\Character\Tauren\TaurenMale\*.*"
|
|---|
| 233 |
|
|---|
| 234 | SetOutPath "$INSTDIR\Data\Sound\Interface\NPC\Human\Female"
|
|---|
| 235 | File "Data\Sound\Interface\NPC\Human\Female\*.*"
|
|---|
| 236 | SetOutPath "$INSTDIR\Data\Sound\Interface\NPC\Human\Male"
|
|---|
| 237 | File "Data\Sound\Interface\NPC\Human\Male\*.*"
|
|---|
| 238 |
|
|---|
| 239 | SetOutPath "$INSTDIR\Data\Sound\Music\GlueScreenMusic"
|
|---|
| 240 | File "Data\Sound\Music\GlueScreenMusic\*.*"
|
|---|
| 241 |
|
|---|
| 242 | SectionEnd
|
|---|
| 243 |
|
|---|
| 244 | Section "Nabídka Start" start
|
|---|
| 245 | CreateDirectory "$SMPROGRAMS\${FULL_TITLE}"
|
|---|
| 246 | CreateShortCut "$SMPROGRAMS\${FULL_TITLE}\Uninstall.lnk" "$INSTDIR\${TITLE}-uninstall.exe"
|
|---|
| 247 | CreateShortCut "$SMPROGRAMS\${FULL_TITLE}\${CHANGELOG_FILE_NAME}" "$INSTDIR\czwow\${CHANGELOG_FILE}"
|
|---|
| 248 | ;CreateShortCut "$SMPROGRAMS\${FULL_TITLE}\${TITLE}.lnk" "$INSTDIR\${STARTER}"
|
|---|
| 249 | CreateShortCut "$SMPROGRAMS\${FULL_TITLE}\Domovská stránka.lnk" "http://wowpreklad.zdechov.net/" "" "$INSTDIR\czwow\Heroes.ico"
|
|---|
| 250 | SectionEnd
|
|---|
| 251 |
|
|---|
| 252 | Section "Zobrazit informace" info
|
|---|
| 253 | ExecShell "open" "$INSTDIR\czwow\${CHANGELOG_FILE}"
|
|---|
| 254 | SectionEnd
|
|---|
| 255 |
|
|---|
| 256 | Section "Zpustit WoW" wow
|
|---|
| 257 | ExecShell "open" "$INSTDIR\${starter}"
|
|---|
| 258 | SectionEnd
|
|---|
| 259 |
|
|---|
| 260 |
|
|---|
| 261 | ;--------------------------------
|
|---|
| 262 |
|
|---|
| 263 | ;Installer Functions
|
|---|
| 264 |
|
|---|
| 265 | Function .onInit
|
|---|
| 266 | !insertmacro MUI_LANGDLL_DISPLAY
|
|---|
| 267 | FunctionEnd
|
|---|
| 268 |
|
|---|
| 269 | ;--------------------------------
|
|---|
| 270 | ;Descriptions
|
|---|
| 271 |
|
|---|
| 272 | ;USE A LANGUAGE STRING IF YOU WANT YOUR DESCRIPTIONS TO BE LANGAUGE SPECIFIC
|
|---|
| 273 |
|
|---|
| 274 | ;Assign descriptions to sections
|
|---|
| 275 | !insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
|
|---|
| 276 | !insertmacro MUI_DESCRIPTION_TEXT ${Nutne} "Vyberte potøebné souèásti."
|
|---|
| 277 | !insertmacro MUI_DESCRIPTION_TEXT ${Addon} "Obsahuje nutné souèásti addonu"
|
|---|
| 278 | !insertmacro MUI_DESCRIPTION_TEXT ${CZTexts} "Obsahuje èeské texty. V pøípadì zakrtnutí obou budou preferovány èeské texty"
|
|---|
| 279 | !insertmacro MUI_DESCRIPTION_TEXT ${SKTexts} "Obsahuje slovenské texty. V pøípadì zakrtnutí obou budou preferovány èeské texty"
|
|---|
| 280 | !insertmacro MUI_DESCRIPTION_TEXT ${Fonts} "Obsahuje èeské fonty pro spráné zobrazování diakritiky"
|
|---|
| 281 | !insertmacro MUI_DESCRIPTION_TEXT ${Sound} "Obsahuje zvukové hláky z warcraft III"
|
|---|
| 282 | !insertmacro MUI_DESCRIPTION_TEXT ${info} "Zobrazit iformace, o verzích, o balíèku"
|
|---|
| 283 | ;!insertmacro MUI_DESCRIPTION_TEXT ${desk} "Umístit zástupce wow na plochu"
|
|---|
| 284 | !insertmacro MUI_DESCRIPTION_TEXT ${start} "Umístit zástupce do nabítky start"
|
|---|
| 285 | !insertmacro MUI_DESCRIPTION_TEXT ${wow} "Spustit wow.exe"
|
|---|
| 286 | !insertmacro MUI_FUNCTION_DESCRIPTION_END
|
|---|
| 287 |
|
|---|
| 288 |
|
|---|
| 289 | ;--------------------------------
|
|---|
| 290 | ;Uninstaller Section
|
|---|
| 291 |
|
|---|
| 292 | Section "Uninstall"
|
|---|
| 293 | ;mazání hlavních èásti
|
|---|
| 294 | Delete "$INSTDIR\${TITLE}-Uninstall.exe"
|
|---|
| 295 | Delete "$INSTDIR\CzWoW\*.*"
|
|---|
| 296 | RMDir "$INSTDIR\CzWoW"
|
|---|
| 297 |
|
|---|
| 298 | ;mazání fontù
|
|---|
| 299 | Delete "$INSTDIR\Data\Fonts\*.*"
|
|---|
| 300 | RMDir "$INSTDIR\Data\Fonts"
|
|---|
| 301 |
|
|---|
| 302 | ;mazání zvukù
|
|---|
| 303 | Delete "$INSTDIR\Data\Sound\*.*"
|
|---|
| 304 | RMDir "$INSTDIR\Data\Sound"
|
|---|
| 305 |
|
|---|
| 306 | Delete "$INSTDIR\Data\Sound\Creature\Abomination\*.*"
|
|---|
| 307 | Delete "$INSTDIR\Data\Sound\Creature\Archer\*.*"
|
|---|
| 308 | Delete "$INSTDIR\Data\Sound\Creature\CairneBloodhoof\*.*"
|
|---|
| 309 | Delete "$INSTDIR\Data\Sound\Creature\Druid of the Claw\*.*"
|
|---|
| 310 | Delete "$INSTDIR\Data\Sound\Creature\Dryad\*.*"
|
|---|
| 311 | Delete "$INSTDIR\Data\Sound\Creature\Footman\*.*"
|
|---|
| 312 | Delete "$INSTDIR\Data\Sound\Creature\Forest Troll\*.*"
|
|---|
| 313 | Delete "$INSTDIR\Data\Sound\Creature\Grunt\*.*"
|
|---|
| 314 | Delete "$INSTDIR\Data\Sound\Creature\Hero Moon Priestess\*.*"
|
|---|
| 315 | Delete "$INSTDIR\Data\Sound\Creature\Hero Mountain King\*.*"
|
|---|
| 316 | Delete "$INSTDIR\Data\Sound\Creature\HumanFemaleOfficialNPC\*.*"
|
|---|
| 317 | Delete "$INSTDIR\Data\Sound\Creature\HumanFemaleStandardNPC\*.*"
|
|---|
| 318 | Delete "$INSTDIR\Data\Sound\Creature\HumanFemaleWarriorNPC\*.*"
|
|---|
| 319 | Delete "$INSTDIR\Data\Sound\Creature\HumanMaleOfficialNPC\*.*"
|
|---|
| 320 | Delete "$INSTDIR\Data\Sound\Creature\HumanMaleStandardNPC\*.*"
|
|---|
| 321 | Delete "$INSTDIR\Data\Sound\Creature\HumanMaleWarriorNPC\*.*"
|
|---|
| 322 | Delete "$INSTDIR\Data\Sound\Creature\Huntress\*.*"
|
|---|
| 323 | Delete "$INSTDIR\Data\Sound\Creature\JainaProudmoore\*.*"
|
|---|
| 324 | Delete "$INSTDIR\Data\Sound\Creature\Mortar Team\*.*"
|
|---|
| 325 | Delete "$INSTDIR\Data\Sound\Creature\Muradin\*.*"
|
|---|
| 326 | Delete "$INSTDIR\Data\Sound\Creature\JainaProudmoore\*.*"
|
|---|
| 327 | Delete "$INSTDIR\Data\Sound\Creature\Necromancer\*.*"
|
|---|
| 328 | Delete "$INSTDIR\Data\Sound\Creature\NightElfFemalePriestessNPC\*.*"
|
|---|
| 329 | Delete "$INSTDIR\Data\Sound\Creature\NightElfFemaleSentinelNPC\*.*"
|
|---|
| 330 | Delete "$INSTDIR\Data\Sound\Creature\NightElfFemaleStandardNPC\*.*"
|
|---|
| 331 | Delete "$INSTDIR\Data\Sound\Creature\NightElfMaleOfficialNPC\*.*"
|
|---|
| 332 | Delete "$INSTDIR\Data\Sound\Creature\NightElfMaleStandardNPC\*.*"
|
|---|
| 333 | Delete "$INSTDIR\Data\Sound\Creature\NightElfMaleWarriorNPC\*.*"
|
|---|
| 334 | Delete "$INSTDIR\Data\Sound\Creature\Peasant\*.*"
|
|---|
| 335 | Delete "$INSTDIR\Data\Sound\Creature\Peon\*.*"
|
|---|
| 336 | Delete "$INSTDIR\Data\Sound\Creature\Rifleman\*.*"
|
|---|
| 337 | Delete "$INSTDIR\Data\Sound\Creature\SylvanasWindrunner\*.*"
|
|---|
| 338 | Delete "$INSTDIR\Data\Sound\Creature\Satyre\*.*"
|
|---|
| 339 | Delete "$INSTDIR\Data\Sound\Creature\Tauren\*.*"
|
|---|
| 340 | Delete "$INSTDIR\Data\Sound\Creature\Thrall\*.*"
|
|---|
| 341 | Delete "$INSTDIR\Data\Sound\Creature\TyrandeWhisperwind\*.*"
|
|---|
| 342 | Delete "$INSTDIR\Data\Sound\Creature\Varimathras\*.*"
|
|---|
| 343 | Delete "$INSTDIR\Data\Sound\Creature\Witch Doctor\*.*"
|
|---|
| 344 | Delete "$INSTDIR\Data\Sound\Creature\Wolf Rider\*.*"
|
|---|
| 345 |
|
|---|
| 346 | RMDir "$INSTDIR\Data\Sound\Creature\Abomination"
|
|---|
| 347 | RMDir "$INSTDIR\Data\Sound\Creature\Archer"
|
|---|
| 348 | RMDir "$INSTDIR\Data\Sound\Creature\CairneBloodhoof"
|
|---|
| 349 | RMDir "$INSTDIR\Data\Sound\Creature\Druid of the Claw"
|
|---|
| 350 | RMDir "$INSTDIR\Data\Sound\Creature\Dryad"
|
|---|
| 351 | RMDir "$INSTDIR\Data\Sound\Creature\Footman"
|
|---|
| 352 | RMDir "$INSTDIR\Data\Sound\Creature\Forest Troll"
|
|---|
| 353 | RMDir "$INSTDIR\Data\Sound\Creature\Grunt"
|
|---|
| 354 | RMDir "$INSTDIR\Data\Sound\Creature\Hero Moon Priestess"
|
|---|
| 355 | RMDir "$INSTDIR\Data\Sound\Creature\Hero Mountain King"
|
|---|
| 356 | RMDir "$INSTDIR\Data\Sound\Creature\HumanFemaleOfficialNPC"
|
|---|
| 357 | RMDir "$INSTDIR\Data\Sound\Creature\HumanFemaleStandardNPC"
|
|---|
| 358 | RMDir "$INSTDIR\Data\Sound\Creature\HumanFemaleWarriorNPC"
|
|---|
| 359 | RMDir "$INSTDIR\Data\Sound\Creature\HumanMaleOfficialNPC"
|
|---|
| 360 | RMDir "$INSTDIR\Data\Sound\Creature\HumanMaleStandardNPC"
|
|---|
| 361 | RMDir "$INSTDIR\Data\Sound\Creature\HumanMaleWarriorNPC"
|
|---|
| 362 | RMDir "$INSTDIR\Data\Sound\Creature\Huntress"
|
|---|
| 363 | RMDir "$INSTDIR\Data\Sound\Creature\JainaProudmoore"
|
|---|
| 364 | RMDir "$INSTDIR\Data\Sound\Creature\Mortar Team"
|
|---|
| 365 | RMDir "$INSTDIR\Data\Sound\Creature\Muradin"
|
|---|
| 366 | RMDir "$INSTDIR\Data\Sound\Creature\JainaProudmoore"
|
|---|
| 367 | RMDir "$INSTDIR\Data\Sound\Creature\Necromancer"
|
|---|
| 368 | RMDir "$INSTDIR\Data\Sound\Creature\NightElfFemalePriestessNPC"
|
|---|
| 369 | RMDir "$INSTDIR\Data\Sound\Creature\NightElfFemaleSentinelNPC"
|
|---|
| 370 | RMDir "$INSTDIR\Data\Sound\Creature\NightElfFemaleStandardNPC"
|
|---|
| 371 | RMDir "$INSTDIR\Data\Sound\Creature\NightElfMaleOfficialNPC"
|
|---|
| 372 | RMDir "$INSTDIR\Data\Sound\Creature\NightElfMaleStandardNPC"
|
|---|
| 373 | RMDir "$INSTDIR\Data\Sound\Creature\NightElfMaleWarriorNPC"
|
|---|
| 374 | RMDir "$INSTDIR\Data\Sound\Creature\Peasant"
|
|---|
| 375 | RMDir "$INSTDIR\Data\Sound\Creature\Peon"
|
|---|
| 376 | RMDir "$INSTDIR\Data\Sound\Creature\Rifleman"
|
|---|
| 377 | RMDir "$INSTDIR\Data\Sound\Creature\Satyre"
|
|---|
| 378 | RMDir "$INSTDIR\Data\Sound\Creature\SylvanasWindrunner"
|
|---|
| 379 | RMDir "$INSTDIR\Data\Sound\Creature\Tauren"
|
|---|
| 380 | RMDir "$INSTDIR\Data\Sound\Creature\Thrall"
|
|---|
| 381 | RMDir "$INSTDIR\Data\Sound\Creature\TyrandeWhisperwind"
|
|---|
| 382 | RMDir "$INSTDIR\Data\Sound\Creature\Varimathras"
|
|---|
| 383 | RMDir "$INSTDIR\Data\Sound\Creature\Witch Doctor"
|
|---|
| 384 | RMDir "$INSTDIR\Data\Sound\Creature\Wolf Rider"
|
|---|
| 385 |
|
|---|
| 386 | Delete "$INSTDIR\Data\Sound\Character\Gnome\GnomeMaleErrorMessages\*.*"
|
|---|
| 387 | Delete "$INSTDIR\Data\Sound\Character\Gnome\GnomeVocalMale\*.*"
|
|---|
| 388 | Delete "$INSTDIR\Data\Sound\Character\Human\FemaleErrorMessages\*.*"
|
|---|
| 389 | Delete "$INSTDIR\Data\Sound\Character\Human\HumanVocalFemale\*.*"
|
|---|
| 390 | Delete "$INSTDIR\Data\Sound\Character\Human\HumanVocalMale\*.*"
|
|---|
| 391 | Delete "$INSTDIR\Data\Sound\Character\Human\MaleErrorMessages\*.*"
|
|---|
| 392 | Delete "$INSTDIR\Data\Sound\Character\NightElf\NightElfFemaleErrorMessages\*.*"
|
|---|
| 393 | Delete "$INSTDIR\Data\Sound\Character\NightElf\NightElfMaleErrorMessages\*.*"
|
|---|
| 394 | Delete "$INSTDIR\Data\Sound\Character\NightElf\NightElfVocalFemale\*.*"
|
|---|
| 395 | Delete "$INSTDIR\Data\Sound\Character\NightElf\NightElfVocalMale\*.*"
|
|---|
| 396 | Delete "$INSTDIR\Data\Sound\Character\Tauren\TaurenMale\*.*"
|
|---|
| 397 |
|
|---|
| 398 | RMDir "$INSTDIR\Data\Sound\Character\Gnome\GnomeMaleErrorMessages"
|
|---|
| 399 | RMDir "$INSTDIR\Data\Sound\Character\Gnome\GnomeVocalMale"
|
|---|
| 400 | RMDir "$INSTDIR\Data\Sound\Character\Human\FemaleErrorMessages"
|
|---|
| 401 | RMDir "$INSTDIR\Data\Sound\Character\Human\HumanVocalFemale"
|
|---|
| 402 | RMDir "$INSTDIR\Data\Sound\Character\Human\HumanVocalMale"
|
|---|
| 403 | RMDir "$INSTDIR\Data\Sound\Character\Human\MaleErrorMessages"
|
|---|
| 404 | RMDir "$INSTDIR\Data\Sound\Character\NightElf\NightElfFemaleErrorMessages"
|
|---|
| 405 | RMDir "$INSTDIR\Data\Sound\Character\NightElf\NightElfMaleErrorMessages"
|
|---|
| 406 | RMDir "$INSTDIR\Data\Sound\Character\NightElf\NightElfVocalFemale"
|
|---|
| 407 | RMDir "$INSTDIR\Data\Sound\Character\NightElf\NightElfVocalMale"
|
|---|
| 408 | RMDir "$INSTDIR\Data\Sound\Character\Tauren\TaurenMale"
|
|---|
| 409 |
|
|---|
| 410 | RMDir "$INSTDIR\Data\Sound\Character\Gnome"
|
|---|
| 411 | RMDir "$INSTDIR\Data\Sound\Character\Human"
|
|---|
| 412 | RMDir "$INSTDIR\Data\Sound\Character\NightElf"
|
|---|
| 413 | RMDir "$INSTDIR\Data\Sound\Character\Tauren"
|
|---|
| 414 |
|
|---|
| 415 | Delete "$INSTDIR\Data\Sound\Interface\NPC\Human\Male\*.*"
|
|---|
| 416 | Delete "$INSTDIR\Data\Sound\Interface\NPC\Human\Female\*.*"
|
|---|
| 417 |
|
|---|
| 418 | RMDir "$INSTDIR\Data\Sound\Interface\NPC\Human\Female"
|
|---|
| 419 | RMDir "$INSTDIR\Data\Sound\Interface\NPC\Human\Male"
|
|---|
| 420 | RMDir "$INSTDIR\Data\Sound\Interface\NPC\Human\"
|
|---|
| 421 | RMDir "$INSTDIR\Data\Sound\Interface\NPC"
|
|---|
| 422 |
|
|---|
| 423 | Delete "$INSTDIR\Data\Sound\Music\GlueScreenMusic\*.*"
|
|---|
| 424 | RMDir "$INSTDIR\Data\Sound\Music\GlueScreenMusic"
|
|---|
| 425 |
|
|---|
| 426 | RMDir "$INSTDIR\Data\Sound\Character"
|
|---|
| 427 | RMDir "$INSTDIR\Data\Sound\Creature"
|
|---|
| 428 | RMDir "$INSTDIR\Data\Sound\Interface"
|
|---|
| 429 | RMDir "$INSTDIR\Data\Sound\Music"
|
|---|
| 430 |
|
|---|
| 431 | RMDir "$INSTDIR\Data\Sound"
|
|---|
| 432 |
|
|---|
| 433 | ;mazání textù
|
|---|
| 434 | Delete "$INSTDIR\Interface\AddOns\CzWoW\*.*"
|
|---|
| 435 | RMDir "$INSTDIR\Interface\AddOns\CzWoW\"
|
|---|
| 436 | Delete "$INSTDIR\Interface\AddOns\ProffBot\*.*"
|
|---|
| 437 | RMDir "$INSTDIR\Interface\AddOns\ProffBot\"
|
|---|
| 438 |
|
|---|
| 439 | ;Delete "$DESKTOP\${TITLE}.lnk"
|
|---|
| 440 |
|
|---|
| 441 | Delete "$SMPROGRAMS\${FULL_TITLE}\*.*"
|
|---|
| 442 | RMDir "$SMPROGRAMS\${FULL_TITLE}"
|
|---|
| 443 |
|
|---|
| 444 | DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${TITLE}"
|
|---|
| 445 | DeleteRegKey /ifempty HKCU "Software\${CREATOR}\${FULL_TITLE}"
|
|---|
| 446 |
|
|---|
| 447 |
|
|---|
| 448 |
|
|---|
| 449 | SectionEnd
|
|---|
| 450 |
|
|---|
| 451 | ;--------------------------------
|
|---|
| 452 | ;Uninstaller Functions
|
|---|
| 453 |
|
|---|
| 454 | Function un.onInit
|
|---|
| 455 | !insertmacro MUI_UNGETLANGUAGE
|
|---|
| 456 | FunctionEnd
|
|---|