Sun Jun 6 16:59:51 2021 UTC ()
gemrb: update to 0.8.8

GemRB v0.8.8 (2021-06-02):
  New features:
    - gameplay content for the demo
    - Heart of Fury support
    - SDLAudio caching and volume control
    - PlayStation Vita port
    - simpler invocation, AppImage packages

  Improved features:
    - lightning bolts, iwd2 stealth, iwd effects, pst levelup
    - scripting, audio backends, logging
    - build system, portability and performance improvements
    - externalized summoning limit, trap limit, narration text speed
    - bugfixes


(nia)
diff -r1.7 -r1.8 pkgsrc/games/gemrb/Makefile
diff -r1.4 -r1.5 pkgsrc/games/gemrb/PLIST
diff -r1.3 -r1.4 pkgsrc/games/gemrb/distinfo
diff -r1.1 -r0 pkgsrc/games/gemrb/patches/patch-gemrb_core_System_Logging.h
diff -r1.1 -r1.2 pkgsrc/games/gemrb/patches/patch-gemrb_core_System_String.cpp

cvs diff -r1.7 -r1.8 pkgsrc/games/gemrb/Makefile (switch to unified diff)

--- pkgsrc/games/gemrb/Makefile 2021/05/14 07:40:18 1.7
+++ pkgsrc/games/gemrb/Makefile 2021/06/06 16:59:51 1.8
@@ -1,51 +1,50 @@ @@ -1,51 +1,50 @@
1# $NetBSD: Makefile,v 1.7 2021/05/14 07:40:18 nia Exp $ 1# $NetBSD: Makefile,v 1.8 2021/06/06 16:59:51 nia Exp $
2 2
3DISTNAME= gemrb-0.8.7 3DISTNAME= gemrb-0.8.8
4PKGREVISION= 1 
5CATEGORIES= games 4CATEGORIES= games
6MASTER_SITES= ${MASTER_SITE_GITHUB:=gemrb/} 5MASTER_SITES= ${MASTER_SITE_GITHUB:=gemrb/}
7GITHUB_TAG= v${PKGVERSION_NOREV} 6GITHUB_TAG= v${PKGVERSION_NOREV}
8 7
9MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
10HOMEPAGE= http://www.gemrb.org/ 9HOMEPAGE= http://www.gemrb.org/
11COMMENT= Reimplementation of the Infinity Engine used in 2D RPGs by Bioware 10COMMENT= Reimplementation of the Infinity Engine used in 2D RPGs by Bioware
12LICENSE= gnu-gpl-v2 11LICENSE= gnu-gpl-v2
13 12
14USE_CMAKE= yes 13USE_CMAKE= yes
15USE_LANGUAGES= c c++ 14USE_LANGUAGES= c c++
16USE_TOOLS+= pkg-config 15USE_TOOLS+= pkg-config
17 16
18GCC_REQD+= 4.7 # -std=gnu++11 17GCC_REQD+= 4.7 # -std=gnu++11
19 18
20LDFLAGS+= ${COMPILER_RPATH_FLAG}${PREFIX}/lib/gemrb 19LDFLAGS+= ${COMPILER_RPATH_FLAG}${PREFIX}/lib/gemrb
21LDFLAGS+= -lm # ldexpf 20LDFLAGS+= -lm # ldexpf
22 21
23CMAKE_ARGS+= -DDISABLE_WERROR=ON 22CMAKE_ARGS+= -DDISABLE_WERROR=ON
24CMAKE_ARGS+= -DUSE_LIBVLC=OFF 23CMAKE_ARGS+= -DUSE_LIBVLC=OFF
25CMAKE_ARGS+= -DMAN_DIR="${PREFIX}/${PKGMANDIR}/man6" 24CMAKE_ARGS+= -DMAN_DIR="${PREFIX}/${PKGMANDIR}/man6"
26CMAKE_ARGS+= -DEXAMPLE_CONF_DIR="${PREFIX}/share/examples/gemrb" 25CMAKE_ARGS+= -DEXAMPLE_CONF_DIR="${PREFIX}/share/examples/gemrb"
27CMAKE_ARGS+= -DSDL_BACKEND="SDL2" 26CMAKE_ARGS+= -DSDL_BACKEND="SDL2"
28 27
29CMAKE_ARG_PATH= .. 28CMAKE_ARG_PATH= ..
30CONFIGURE_DIRS= build 29CONFIGURE_DIRS= build
31 30
32REPLACE_PYTHON= admin/extend2da.py 31REPLACE_PYTHON= admin/extend2da.py
33 32
34# https://github.com/gemrb/gemrb/issues/101 33# https://github.com/gemrb/gemrb/issues/101
35PYTHON_VERSIONS_ACCEPTED= 27 34PYTHON_VERSIONS_ACCEPTED= 27
36 35
37pre-configure: 36pre-configure:
38 ${MKDIR} ${WRKSRC}/build 37 ${MKDIR} ${WRKSRC}/build
39 38
40.include "../../audio/openal-soft/buildlink3.mk" 39.include "../../audio/openal-soft/buildlink3.mk"
41.include "../../audio/SDL2_mixer/buildlink3.mk" 40.include "../../audio/SDL2_mixer/buildlink3.mk"
42.include "../../audio/libvorbis/buildlink3.mk" 41.include "../../audio/libvorbis/buildlink3.mk"
43.include "../../converters/libiconv/buildlink3.mk" 42.include "../../converters/libiconv/buildlink3.mk"
44.include "../../devel/SDL2/buildlink3.mk" 43.include "../../devel/SDL2/buildlink3.mk"
45.include "../../devel/zlib/buildlink3.mk" 44.include "../../devel/zlib/buildlink3.mk"
46.include "../../graphics/freetype2/buildlink3.mk" 45.include "../../graphics/freetype2/buildlink3.mk"
47.include "../../graphics/hicolor-icon-theme/buildlink3.mk" 46.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
48.include "../../graphics/png/buildlink3.mk" 47.include "../../graphics/png/buildlink3.mk"
49.include "../../lang/python/application.mk" 48.include "../../lang/python/application.mk"
50.include "../../sysutils/desktop-file-utils/desktopdb.mk" 49.include "../../sysutils/desktop-file-utils/desktopdb.mk"
51.include "../../mk/bsd.pkg.mk" 50.include "../../mk/bsd.pkg.mk"

cvs diff -r1.4 -r1.5 pkgsrc/games/gemrb/PLIST (switch to unified diff)

--- pkgsrc/games/gemrb/PLIST 2021/05/14 07:40:18 1.4
+++ pkgsrc/games/gemrb/PLIST 2021/06/06 16:59:51 1.5
@@ -1,2260 +1,2279 @@ @@ -1,2260 +1,2279 @@
1@comment $NetBSD: PLIST,v 1.4 2021/05/14 07:40:18 nia Exp $ 1@comment $NetBSD: PLIST,v 1.5 2021/06/06 16:59:51 nia Exp $
2bin/extend2da.py 2bin/extend2da.py
3bin/gemrb 3bin/gemrb
4lib/gemrb/libgemrb_core.so 4lib/gemrb/libgemrb_core.so
5lib/gemrb/libgemrb_core.so.${PKGVERSION} 5lib/gemrb/libgemrb_core.so.${PKGVERSION}
6lib/gemrb/plugins/2DAImporter.so 6lib/gemrb/plugins/2DAImporter.so
7lib/gemrb/plugins/ACMReader.so 7lib/gemrb/plugins/ACMReader.so
8lib/gemrb/plugins/AREImporter.so 8lib/gemrb/plugins/AREImporter.so
9lib/gemrb/plugins/BAMImporter.so 9lib/gemrb/plugins/BAMImporter.so
10lib/gemrb/plugins/BIFImporter.so 10lib/gemrb/plugins/BIFImporter.so
11lib/gemrb/plugins/BIKPlayer.so 11lib/gemrb/plugins/BIKPlayer.so
12lib/gemrb/plugins/BMPImporter.so 12lib/gemrb/plugins/BMPImporter.so
13lib/gemrb/plugins/BMPWriter.so 13lib/gemrb/plugins/BMPWriter.so
14lib/gemrb/plugins/CHUImporter.so 14lib/gemrb/plugins/CHUImporter.so
15lib/gemrb/plugins/CREImporter.so 15lib/gemrb/plugins/CREImporter.so
16lib/gemrb/plugins/DLGImporter.so 16lib/gemrb/plugins/DLGImporter.so
17lib/gemrb/plugins/DirectoryImporter.so 17lib/gemrb/plugins/DirectoryImporter.so
18lib/gemrb/plugins/EFFImporter.so 18lib/gemrb/plugins/EFFImporter.so
19lib/gemrb/plugins/FXOpcodes.so 19lib/gemrb/plugins/FXOpcodes.so
20lib/gemrb/plugins/GAMImporter.so 20lib/gemrb/plugins/GAMImporter.so
21lib/gemrb/plugins/GUIScript.so 21lib/gemrb/plugins/GUIScript.so
22lib/gemrb/plugins/IDSImporter.so 22lib/gemrb/plugins/IDSImporter.so
23lib/gemrb/plugins/INIImporter.so 23lib/gemrb/plugins/INIImporter.so
24lib/gemrb/plugins/ITMImporter.so 24lib/gemrb/plugins/ITMImporter.so
25lib/gemrb/plugins/IWDOpcodes.so 25lib/gemrb/plugins/IWDOpcodes.so
26lib/gemrb/plugins/KEYImporter.so 26lib/gemrb/plugins/KEYImporter.so
27lib/gemrb/plugins/MOSImporter.so 27lib/gemrb/plugins/MOSImporter.so
28lib/gemrb/plugins/MUSImporter.so 28lib/gemrb/plugins/MUSImporter.so
29lib/gemrb/plugins/MVEPlayer.so 29lib/gemrb/plugins/MVEPlayer.so
30lib/gemrb/plugins/NullSound.so 30lib/gemrb/plugins/NullSound.so
31lib/gemrb/plugins/NullSource.so 31lib/gemrb/plugins/NullSource.so
32lib/gemrb/plugins/OGGReader.so 32lib/gemrb/plugins/OGGReader.so
33lib/gemrb/plugins/OpenALAudio.so 33lib/gemrb/plugins/OpenALAudio.so
34lib/gemrb/plugins/PLTImporter.so 34lib/gemrb/plugins/PLTImporter.so
35lib/gemrb/plugins/PNGImporter.so 35lib/gemrb/plugins/PNGImporter.so
36lib/gemrb/plugins/PROImporter.so 36lib/gemrb/plugins/PROImporter.so
37lib/gemrb/plugins/PSTOpcodes.so 37lib/gemrb/plugins/PSTOpcodes.so
38lib/gemrb/plugins/SAVImporter.so 38lib/gemrb/plugins/SAVImporter.so
39lib/gemrb/plugins/SDLAudio.so 39lib/gemrb/plugins/SDLAudio.so
40lib/gemrb/plugins/SDLVideo.so 40lib/gemrb/plugins/SDLVideo.so
41lib/gemrb/plugins/SPLImporter.so 41lib/gemrb/plugins/SPLImporter.so
42lib/gemrb/plugins/STOImporter.so 42lib/gemrb/plugins/STOImporter.so
43lib/gemrb/plugins/TISImporter.so 43lib/gemrb/plugins/TISImporter.so
44lib/gemrb/plugins/TLKImporter.so 44lib/gemrb/plugins/TLKImporter.so
45lib/gemrb/plugins/TTFImporter.so 45lib/gemrb/plugins/TTFImporter.so
46lib/gemrb/plugins/WAVReader.so 46lib/gemrb/plugins/WAVReader.so
47lib/gemrb/plugins/WEDImporter.so 47lib/gemrb/plugins/WEDImporter.so
48lib/gemrb/plugins/WMPImporter.so 48lib/gemrb/plugins/WMPImporter.so
49lib/gemrb/plugins/ZLibManager.so 49lib/gemrb/plugins/ZLibManager.so
50man/man6/gemrb.6 50man/man6/gemrb.6
51share/applications/gemrb.desktop 51share/applications/gemrb.desktop
52share/doc/gemrb/AUTHORS 52share/doc/gemrb/AUTHORS
53share/doc/gemrb/COPYING 53share/doc/gemrb/COPYING
54share/doc/gemrb/INSTALL 54share/doc/gemrb/INSTALL
55share/doc/gemrb/NEWS 55share/doc/gemrb/NEWS
56share/doc/gemrb/README.md 56share/doc/gemrb/README.md
57share/doc/gemrb/en/CheatKeys.txt 57share/doc/gemrb/en/CheatKeys.txt
58share/doc/gemrb/en/CodingStyle.txt 58share/doc/gemrb/en/CodingStyle.txt
59share/doc/gemrb/en/Engine/Charcolors.txt 59share/doc/gemrb/en/Engine/Charcolors.txt
60share/doc/gemrb/en/Engine/Containers.txt 60share/doc/gemrb/en/Engine/Containers.txt
61share/doc/gemrb/en/Engine/Doors.txt 61share/doc/gemrb/en/Engine/Doors.txt
62share/doc/gemrb/en/Engine/Effects.txt 62share/doc/gemrb/en/Engine/Effects.txt
63share/doc/gemrb/en/Engine/Projectile.txt 63share/doc/gemrb/en/Engine/Projectile.txt
64share/doc/gemrb/en/Engine/Triggers.txt 64share/doc/gemrb/en/Engine/Triggers.txt
65share/doc/gemrb/en/Engine/Usability.txt 65share/doc/gemrb/en/Engine/Usability.txt
66share/doc/gemrb/en/EngineChanges.txt 66share/doc/gemrb/en/EngineChanges.txt
67share/doc/gemrb/en/Tables/HPBARB.txt 67share/doc/gemrb/en/Tables/HPBARB.txt
68share/doc/gemrb/en/Tables/ability.txt 68share/doc/gemrb/en/Tables/ability.txt
69share/doc/gemrb/en/Tables/aligns.txt 69share/doc/gemrb/en/Tables/aligns.txt
70share/doc/gemrb/en/Tables/areapro.txt 70share/doc/gemrb/en/Tables/areapro.txt
71share/doc/gemrb/en/Tables/avatars.txt 71share/doc/gemrb/en/Tables/avatars.txt
72share/doc/gemrb/en/Tables/avprefix.txt 72share/doc/gemrb/en/Tables/avprefix.txt
73share/doc/gemrb/en/Tables/cgtable.txt 73share/doc/gemrb/en/Tables/cgtable.txt
74share/doc/gemrb/en/Tables/classes.txt 74share/doc/gemrb/en/Tables/classes.txt
75share/doc/gemrb/en/Tables/clowncol.txt 75share/doc/gemrb/en/Tables/clowncol.txt
76share/doc/gemrb/en/Tables/comment.txt 76share/doc/gemrb/en/Tables/comment.txt
77share/doc/gemrb/en/Tables/containr.txt 77share/doc/gemrb/en/Tables/containr.txt
78share/doc/gemrb/en/Tables/damage.txt 78share/doc/gemrb/en/Tables/damage.txt
79share/doc/gemrb/en/Tables/defsound.txt 79share/doc/gemrb/en/Tables/defsound.txt
80share/doc/gemrb/en/Tables/dmgtype.txt 80share/doc/gemrb/en/Tables/dmgtype.txt
81share/doc/gemrb/en/Tables/fistweap.txt 81share/doc/gemrb/en/Tables/fistweap.txt
82share/doc/gemrb/en/Tables/fonts.txt 82share/doc/gemrb/en/Tables/fonts.txt
83share/doc/gemrb/en/Tables/formatio.txt 83share/doc/gemrb/en/Tables/formatio.txt
84share/doc/gemrb/en/Tables/guibtact.txt 84share/doc/gemrb/en/Tables/guibtact.txt
85share/doc/gemrb/en/Tables/item_use.txt 85share/doc/gemrb/en/Tables/item_use.txt
86share/doc/gemrb/en/Tables/itemsnd.txt 86share/doc/gemrb/en/Tables/itemsnd.txt
87share/doc/gemrb/en/Tables/itemspec.txt 87share/doc/gemrb/en/Tables/itemspec.txt
88share/doc/gemrb/en/Tables/itemtype.txt 88share/doc/gemrb/en/Tables/itemtype.txt
89share/doc/gemrb/en/Tables/itemuse.txt 89share/doc/gemrb/en/Tables/itemuse.txt
90share/doc/gemrb/en/Tables/magesch.txt 90share/doc/gemrb/en/Tables/magesch.txt
91share/doc/gemrb/en/Tables/modal.txt 91share/doc/gemrb/en/Tables/modal.txt
92share/doc/gemrb/en/Tables/overlay.txt 92share/doc/gemrb/en/Tables/overlay.txt
93share/doc/gemrb/en/Tables/pathfind.txt 93share/doc/gemrb/en/Tables/pathfind.txt
94share/doc/gemrb/en/Tables/pdolls.txt 94share/doc/gemrb/en/Tables/pdolls.txt
95share/doc/gemrb/en/Tables/pictures.txt 95share/doc/gemrb/en/Tables/pictures.txt
96share/doc/gemrb/en/Tables/polystat.txt 96share/doc/gemrb/en/Tables/polystat.txt
97share/doc/gemrb/en/Tables/proftype.txt 97share/doc/gemrb/en/Tables/proftype.txt
98share/doc/gemrb/en/Tables/qslots.txt 98share/doc/gemrb/en/Tables/qslots.txt
99share/doc/gemrb/en/Tables/races.txt 99share/doc/gemrb/en/Tables/races.txt
100share/doc/gemrb/en/Tables/randitem.txt 100share/doc/gemrb/en/Tables/randitem.txt
101share/doc/gemrb/en/Tables/restmov.txt 101share/doc/gemrb/en/Tables/restmov.txt
102share/doc/gemrb/en/Tables/savegame.txt 102share/doc/gemrb/en/Tables/savegame.txt
103share/doc/gemrb/en/Tables/script.txt 103share/doc/gemrb/en/Tables/script.txt
104share/doc/gemrb/en/Tables/shtable.txt 104share/doc/gemrb/en/Tables/shtable.txt
105share/doc/gemrb/en/Tables/skills.txt 105share/doc/gemrb/en/Tables/skills.txt
106share/doc/gemrb/en/Tables/skillsta.txt 106share/doc/gemrb/en/Tables/skillsta.txt
107share/doc/gemrb/en/Tables/slottype.txt 107share/doc/gemrb/en/Tables/slottype.txt
108share/doc/gemrb/en/Tables/spells.txt 108share/doc/gemrb/en/Tables/spells.txt
109share/doc/gemrb/en/Tables/splprot.txt 109share/doc/gemrb/en/Tables/splprot.txt
110share/doc/gemrb/en/Tables/splspec.txt 110share/doc/gemrb/en/Tables/splspec.txt
111share/doc/gemrb/en/Tables/stances.txt 111share/doc/gemrb/en/Tables/stances.txt
112share/doc/gemrb/en/Tables/start.txt 112share/doc/gemrb/en/Tables/start.txt
113share/doc/gemrb/en/Tables/states.txt 113share/doc/gemrb/en/Tables/states.txt
114share/doc/gemrb/en/Tables/storespl.txt 114share/doc/gemrb/en/Tables/storespl.txt
115share/doc/gemrb/en/Tables/strings.txt 115share/doc/gemrb/en/Tables/strings.txt
116share/doc/gemrb/en/Tables/table_template.txt 116share/doc/gemrb/en/Tables/table_template.txt
117share/doc/gemrb/en/Tables/textscrn.txt 117share/doc/gemrb/en/Tables/textscrn.txt
118share/doc/gemrb/en/Tables/wildmag.txt 118share/doc/gemrb/en/Tables/wildmag.txt
119share/doc/gemrb/en/Tables/wsshield.txt 119share/doc/gemrb/en/Tables/wsshield.txt
120share/doc/gemrb/en/Tables/wssingle.txt 120share/doc/gemrb/en/Tables/wssingle.txt
121share/doc/gemrb/en/Tables/wstwohnd.txt 121share/doc/gemrb/en/Tables/wstwohnd.txt
122share/doc/gemrb/en/Tables/wstwowpn.txt 122share/doc/gemrb/en/Tables/wstwowpn.txt
123share/doc/gemrb/en/default_ini.txt 123share/doc/gemrb/en/default_ini.txt
124share/doc/gemrb/en/gemrb_ini.txt 124share/doc/gemrb/en/gemrb_ini.txt
125share/examples/gemrb/GemRB.cfg 125share/examples/gemrb/GemRB.cfg
126share/examples/gemrb/GemRB.cfg.noinstall.sample 126share/examples/gemrb/GemRB.cfg.noinstall.sample
127share/examples/gemrb/GemRB.cfg.sample 127share/examples/gemrb/GemRB.cfg.sample
128share/gemrb/GUIScripts/Actor.py 128share/gemrb/GUIScripts/Actor.py
129share/gemrb/GUIScripts/AutodetectCommon.py 129share/gemrb/GUIScripts/AutodetectCommon.py
130share/gemrb/GUIScripts/BGCommon.py 130share/gemrb/GUIScripts/BGCommon.py
131share/gemrb/GUIScripts/CommonTables.py 131share/gemrb/GUIScripts/CommonTables.py
132share/gemrb/GUIScripts/CommonWindow.py 132share/gemrb/GUIScripts/CommonWindow.py
133share/gemrb/GUIScripts/CreateControlDecorators.py 133share/gemrb/GUIScripts/CreateControlDecorators.py
134share/gemrb/GUIScripts/DualClass.py 134share/gemrb/GUIScripts/DualClass.py
135share/gemrb/GUIScripts/ExportFile.py 135share/gemrb/GUIScripts/ExportFile.py
136share/gemrb/GUIScripts/GUIClasses.py 136share/gemrb/GUIScripts/GUIClasses.py
137share/gemrb/GUIScripts/GUICommon.py 137share/gemrb/GUIScripts/GUICommon.py
138share/gemrb/GUIScripts/GUICommonWindows.py 138share/gemrb/GUIScripts/GUICommonWindows.py
139share/gemrb/GUIScripts/GUIDefines.py 139share/gemrb/GUIScripts/GUIDefines.py
140share/gemrb/GUIScripts/GUILOAD.py 140share/gemrb/GUIScripts/GUILOAD.py
141share/gemrb/GUIScripts/GUIMA.py 141share/gemrb/GUIScripts/GUIMA.py
142share/gemrb/GUIScripts/GUIMACommon.py 142share/gemrb/GUIScripts/GUIMACommon.py
143share/gemrb/GUIScripts/GUIMG.py 143share/gemrb/GUIScripts/GUIMG.py
144share/gemrb/GUIScripts/GUIMOVIE.py 144share/gemrb/GUIScripts/GUIMOVIE.py
145share/gemrb/GUIScripts/GUIOPT.py 145share/gemrb/GUIScripts/GUIOPT.py
146share/gemrb/GUIScripts/GUIOPTControls.py 146share/gemrb/GUIScripts/GUIOPTControls.py
147share/gemrb/GUIScripts/GUIPR.py 147share/gemrb/GUIScripts/GUIPR.py
148share/gemrb/GUIScripts/GUIREC.py 148share/gemrb/GUIScripts/GUIREC.py
149share/gemrb/GUIScripts/GUIRECCommon.py 149share/gemrb/GUIScripts/GUIRECCommon.py
150share/gemrb/GUIScripts/GUISAVE.py 150share/gemrb/GUIScripts/GUISAVE.py
151share/gemrb/GUIScripts/GUISONGS.py 151share/gemrb/GUIScripts/GUISONGS.py
152share/gemrb/GUIScripts/GUISTORE.py 152share/gemrb/GUIScripts/GUISTORE.py
153share/gemrb/GUIScripts/GUIWORLD.py 153share/gemrb/GUIScripts/GUIWORLD.py
154share/gemrb/GUIScripts/GameCheck.py 154share/gemrb/GUIScripts/GameCheck.py
155share/gemrb/GUIScripts/InventoryCommon.py 155share/gemrb/GUIScripts/InventoryCommon.py
156share/gemrb/GUIScripts/LUCommon.py 156share/gemrb/GUIScripts/LUCommon.py
157share/gemrb/GUIScripts/LUProfsSelection.py 157share/gemrb/GUIScripts/LUProfsSelection.py
158share/gemrb/GUIScripts/LUSkillsSelection.py 158share/gemrb/GUIScripts/LUSkillsSelection.py
159share/gemrb/GUIScripts/LUSpellSelection.py 159share/gemrb/GUIScripts/LUSpellSelection.py
160share/gemrb/GUIScripts/LevelUp.py 160share/gemrb/GUIScripts/LevelUp.py
161share/gemrb/GUIScripts/MetaClasses.py 161share/gemrb/GUIScripts/MetaClasses.py
162share/gemrb/GUIScripts/Portrait.py 162share/gemrb/GUIScripts/Portrait.py
163share/gemrb/GUIScripts/Spellbook.py 163share/gemrb/GUIScripts/Spellbook.py
164share/gemrb/GUIScripts/TextScreen.py 164share/gemrb/GUIScripts/TextScreen.py
165share/gemrb/GUIScripts/bg1/Autodetect.py 165share/gemrb/GUIScripts/bg1/Autodetect.py
166share/gemrb/GUIScripts/bg1/CharGen.py 166share/gemrb/GUIScripts/bg1/CharGen.py
167share/gemrb/GUIScripts/bg1/CharGenCommon.py 167share/gemrb/GUIScripts/bg1/CharGenCommon.py
168share/gemrb/GUIScripts/bg1/CharGenGui.py 168share/gemrb/GUIScripts/bg1/CharGenGui.py
169share/gemrb/GUIScripts/bg1/GUICG1.py 169share/gemrb/GUIScripts/bg1/GUICG1.py
170share/gemrb/GUIScripts/bg1/GUICG10.py 170share/gemrb/GUIScripts/bg1/GUICG10.py
171share/gemrb/GUIScripts/bg1/GUICG12.py 171share/gemrb/GUIScripts/bg1/GUICG12.py
172share/gemrb/GUIScripts/bg1/GUICG13.py 172share/gemrb/GUIScripts/bg1/GUICG13.py
173share/gemrb/GUIScripts/bg1/GUICG15.py 173share/gemrb/GUIScripts/bg1/GUICG15.py
174share/gemrb/GUIScripts/bg1/GUICG19.py 174share/gemrb/GUIScripts/bg1/GUICG19.py
175share/gemrb/GUIScripts/bg1/GUICG2.py 175share/gemrb/GUIScripts/bg1/GUICG2.py
176share/gemrb/GUIScripts/bg1/GUICG22.py 176share/gemrb/GUIScripts/bg1/GUICG22.py
177share/gemrb/GUIScripts/bg1/GUICG3.py 177share/gemrb/GUIScripts/bg1/GUICG3.py
178share/gemrb/GUIScripts/bg1/GUICG4.py 178share/gemrb/GUIScripts/bg1/GUICG4.py
179share/gemrb/GUIScripts/bg1/GUICG5.py 179share/gemrb/GUIScripts/bg1/GUICG5.py
180share/gemrb/GUIScripts/bg1/GUICG6.py 180share/gemrb/GUIScripts/bg1/GUICG6.py
181share/gemrb/GUIScripts/bg1/GUICG7.py 181share/gemrb/GUIScripts/bg1/GUICG7.py
182share/gemrb/GUIScripts/bg1/GUICG8.py 182share/gemrb/GUIScripts/bg1/GUICG8.py
183share/gemrb/GUIScripts/bg1/GUICG9.py 183share/gemrb/GUIScripts/bg1/GUICG9.py
184share/gemrb/GUIScripts/bg1/GUIINV.py 184share/gemrb/GUIScripts/bg1/GUIINV.py
185share/gemrb/GUIScripts/bg1/GUIJRNL.py 185share/gemrb/GUIScripts/bg1/GUIJRNL.py
186share/gemrb/GUIScripts/bg1/GUIMP.py 186share/gemrb/GUIScripts/bg1/GUIMP.py
187share/gemrb/GUIScripts/bg1/ImportFile.py 187share/gemrb/GUIScripts/bg1/ImportFile.py
188share/gemrb/GUIScripts/bg1/LoadScreen.py 188share/gemrb/GUIScripts/bg1/LoadScreen.py
189share/gemrb/GUIScripts/bg1/MessageWindow.py 189share/gemrb/GUIScripts/bg1/MessageWindow.py
190share/gemrb/GUIScripts/bg1/QuitGame.py 190share/gemrb/GUIScripts/bg1/QuitGame.py
191share/gemrb/GUIScripts/bg1/Start.py 191share/gemrb/GUIScripts/bg1/Start.py
192share/gemrb/GUIScripts/bg2/Autodetect.py 192share/gemrb/GUIScripts/bg2/Autodetect.py
193share/gemrb/GUIScripts/bg2/CharGen.py 193share/gemrb/GUIScripts/bg2/CharGen.py
194share/gemrb/GUIScripts/bg2/CharGen2.py 194share/gemrb/GUIScripts/bg2/CharGen2.py
195share/gemrb/GUIScripts/bg2/CharGen3.py 195share/gemrb/GUIScripts/bg2/CharGen3.py
196share/gemrb/GUIScripts/bg2/CharGen4.py 196share/gemrb/GUIScripts/bg2/CharGen4.py
197share/gemrb/GUIScripts/bg2/CharGen5.py 197share/gemrb/GUIScripts/bg2/CharGen5.py
198share/gemrb/GUIScripts/bg2/CharGen6.py 198share/gemrb/GUIScripts/bg2/CharGen6.py
199share/gemrb/GUIScripts/bg2/CharGen7.py 199share/gemrb/GUIScripts/bg2/CharGen7.py
200share/gemrb/GUIScripts/bg2/CharGen8.py 200share/gemrb/GUIScripts/bg2/CharGen8.py
201share/gemrb/GUIScripts/bg2/CharGen9.py 201share/gemrb/GUIScripts/bg2/CharGen9.py
202share/gemrb/GUIScripts/bg2/CharGenCommon.py 202share/gemrb/GUIScripts/bg2/CharGenCommon.py
203share/gemrb/GUIScripts/bg2/CharGenEnd.py 203share/gemrb/GUIScripts/bg2/CharGenEnd.py
204share/gemrb/GUIScripts/bg2/DemoEnd.py 204share/gemrb/GUIScripts/bg2/DemoEnd.py
205share/gemrb/GUIScripts/bg2/GUICG1.py 205share/gemrb/GUIScripts/bg2/GUICG1.py
206share/gemrb/GUIScripts/bg2/GUICG10.py 206share/gemrb/GUIScripts/bg2/GUICG10.py
207share/gemrb/GUIScripts/bg2/GUICG12.py 207share/gemrb/GUIScripts/bg2/GUICG12.py
208share/gemrb/GUIScripts/bg2/GUICG13.py 208share/gemrb/GUIScripts/bg2/GUICG13.py
209share/gemrb/GUIScripts/bg2/GUICG15.py 209share/gemrb/GUIScripts/bg2/GUICG15.py
210share/gemrb/GUIScripts/bg2/GUICG19.py 210share/gemrb/GUIScripts/bg2/GUICG19.py
211share/gemrb/GUIScripts/bg2/GUICG2.py 211share/gemrb/GUIScripts/bg2/GUICG2.py
212share/gemrb/GUIScripts/bg2/GUICG22.py 212share/gemrb/GUIScripts/bg2/GUICG22.py
213share/gemrb/GUIScripts/bg2/GUICG23.py 213share/gemrb/GUIScripts/bg2/GUICG23.py
214share/gemrb/GUIScripts/bg2/GUICG24.py 214share/gemrb/GUIScripts/bg2/GUICG24.py
215share/gemrb/GUIScripts/bg2/GUICG3.py 215share/gemrb/GUIScripts/bg2/GUICG3.py
216share/gemrb/GUIScripts/bg2/GUICG4.py 216share/gemrb/GUIScripts/bg2/GUICG4.py
217share/gemrb/GUIScripts/bg2/GUICG5.py 217share/gemrb/GUIScripts/bg2/GUICG5.py
218share/gemrb/GUIScripts/bg2/GUICG6.py 218share/gemrb/GUIScripts/bg2/GUICG6.py
219share/gemrb/GUIScripts/bg2/GUICG7.py 219share/gemrb/GUIScripts/bg2/GUICG7.py
220share/gemrb/GUIScripts/bg2/GUICG8.py 220share/gemrb/GUIScripts/bg2/GUICG8.py
221share/gemrb/GUIScripts/bg2/GUICG9.py 221share/gemrb/GUIScripts/bg2/GUICG9.py
222share/gemrb/GUIScripts/bg2/GUIINV.py 222share/gemrb/GUIScripts/bg2/GUIINV.py
223share/gemrb/GUIScripts/bg2/GUIJRNL.py 223share/gemrb/GUIScripts/bg2/GUIJRNL.py
224share/gemrb/GUIScripts/bg2/ImportFile.py 224share/gemrb/GUIScripts/bg2/ImportFile.py
225share/gemrb/GUIScripts/bg2/ImportGame.py 225share/gemrb/GUIScripts/bg2/ImportGame.py
226share/gemrb/GUIScripts/bg2/LUHLASelection.py 226share/gemrb/GUIScripts/bg2/LUHLASelection.py
227share/gemrb/GUIScripts/bg2/LoadScreen.py 227share/gemrb/GUIScripts/bg2/LoadScreen.py
228share/gemrb/GUIScripts/bg2/MessageWindow.py 228share/gemrb/GUIScripts/bg2/MessageWindow.py
229share/gemrb/GUIScripts/bg2/QuitGame.py 229share/gemrb/GUIScripts/bg2/QuitGame.py
230share/gemrb/GUIScripts/bg2/Start.py 230share/gemrb/GUIScripts/bg2/Start.py
231share/gemrb/GUIScripts/bg2/Start2.py 231share/gemrb/GUIScripts/bg2/Start2.py
232share/gemrb/GUIScripts/bg2/StartOpt.py 232share/gemrb/GUIScripts/bg2/StartOpt.py
 233share/gemrb/GUIScripts/demo/Autodetect.py
233share/gemrb/GUIScripts/demo/GUIINV.py 234share/gemrb/GUIScripts/demo/GUIINV.py
234share/gemrb/GUIScripts/demo/GUIJRNL.py 235share/gemrb/GUIScripts/demo/GUIJRNL.py
235share/gemrb/GUIScripts/demo/GUIMA.py 236share/gemrb/GUIScripts/demo/GUIMA.py
236share/gemrb/GUIScripts/demo/GUIMG.py 237share/gemrb/GUIScripts/demo/GUIMG.py
237share/gemrb/GUIScripts/demo/GUIOPT.py 238share/gemrb/GUIScripts/demo/GUIOPT.py
238share/gemrb/GUIScripts/demo/GUIPR.py 239share/gemrb/GUIScripts/demo/GUIPR.py
239share/gemrb/GUIScripts/demo/LoadScreen.py 240share/gemrb/GUIScripts/demo/LoadScreen.py
240share/gemrb/GUIScripts/demo/MessageWindow.py 241share/gemrb/GUIScripts/demo/MessageWindow.py
241share/gemrb/GUIScripts/demo/README 242share/gemrb/GUIScripts/demo/README
242share/gemrb/GUIScripts/demo/SetupGame.py 243share/gemrb/GUIScripts/demo/SetupGame.py
243share/gemrb/GUIScripts/demo/Start.py 244share/gemrb/GUIScripts/demo/Start.py
244share/gemrb/GUIScripts/demo/Tests.py 245share/gemrb/GUIScripts/demo/Tests.py
245share/gemrb/GUIScripts/ie_action.py 246share/gemrb/GUIScripts/ie_action.py
246share/gemrb/GUIScripts/ie_feats.py 247share/gemrb/GUIScripts/ie_feats.py
247share/gemrb/GUIScripts/ie_modal.py 248share/gemrb/GUIScripts/ie_modal.py
248share/gemrb/GUIScripts/ie_restype.py 249share/gemrb/GUIScripts/ie_restype.py
249share/gemrb/GUIScripts/ie_slots.py 250share/gemrb/GUIScripts/ie_slots.py
250share/gemrb/GUIScripts/ie_sounds.py 251share/gemrb/GUIScripts/ie_sounds.py
251share/gemrb/GUIScripts/ie_spells.py 252share/gemrb/GUIScripts/ie_spells.py
252share/gemrb/GUIScripts/ie_stats.py 253share/gemrb/GUIScripts/ie_stats.py
253share/gemrb/GUIScripts/include.py 254share/gemrb/GUIScripts/include.py
254share/gemrb/GUIScripts/iwd/Autodetect.py 255share/gemrb/GUIScripts/iwd/Autodetect.py
255share/gemrb/GUIScripts/iwd/CharGen.py 256share/gemrb/GUIScripts/iwd/CharGen.py
256share/gemrb/GUIScripts/iwd/GUIINV.py 257share/gemrb/GUIScripts/iwd/GUIINV.py
257share/gemrb/GUIScripts/iwd/GUIJRNL.py 258share/gemrb/GUIScripts/iwd/GUIJRNL.py
258share/gemrb/GUIScripts/iwd/LoadScreen.py 259share/gemrb/GUIScripts/iwd/LoadScreen.py
259share/gemrb/GUIScripts/iwd/MessageWindow.py 260share/gemrb/GUIScripts/iwd/MessageWindow.py
260share/gemrb/GUIScripts/iwd/PartyFormation.py 261share/gemrb/GUIScripts/iwd/PartyFormation.py
261share/gemrb/GUIScripts/iwd/QuitGame.py 262share/gemrb/GUIScripts/iwd/QuitGame.py
262share/gemrb/GUIScripts/iwd/Start.py 263share/gemrb/GUIScripts/iwd/Start.py
263share/gemrb/GUIScripts/iwd2/Abilities.py 264share/gemrb/GUIScripts/iwd2/Abilities.py
264share/gemrb/GUIScripts/iwd2/Alignment.py 265share/gemrb/GUIScripts/iwd2/Alignment.py
265share/gemrb/GUIScripts/iwd2/Appearance.py 266share/gemrb/GUIScripts/iwd2/Appearance.py
266share/gemrb/GUIScripts/iwd2/Autodetect.py 267share/gemrb/GUIScripts/iwd2/Autodetect.py
267share/gemrb/GUIScripts/iwd2/CGPortrait.py 268share/gemrb/GUIScripts/iwd2/CGPortrait.py
268share/gemrb/GUIScripts/iwd2/CSound.py 269share/gemrb/GUIScripts/iwd2/CSound.py
269share/gemrb/GUIScripts/iwd2/CharGen.py 270share/gemrb/GUIScripts/iwd2/CharGen.py
270share/gemrb/GUIScripts/iwd2/CharGen2.py 271share/gemrb/GUIScripts/iwd2/CharGen2.py
271share/gemrb/GUIScripts/iwd2/CharGen3.py 272share/gemrb/GUIScripts/iwd2/CharGen3.py
272share/gemrb/GUIScripts/iwd2/CharGen4.py 273share/gemrb/GUIScripts/iwd2/CharGen4.py
273share/gemrb/GUIScripts/iwd2/CharGen5.py 274share/gemrb/GUIScripts/iwd2/CharGen5.py
274share/gemrb/GUIScripts/iwd2/CharGen6.py 275share/gemrb/GUIScripts/iwd2/CharGen6.py
275share/gemrb/GUIScripts/iwd2/CharGen7.py 276share/gemrb/GUIScripts/iwd2/CharGen7.py
276share/gemrb/GUIScripts/iwd2/CharGen8.py 277share/gemrb/GUIScripts/iwd2/CharGen8.py
277share/gemrb/GUIScripts/iwd2/CharGen9.py 278share/gemrb/GUIScripts/iwd2/CharGen9.py
278share/gemrb/GUIScripts/iwd2/CharOverview.py 279share/gemrb/GUIScripts/iwd2/CharOverview.py
279share/gemrb/GUIScripts/iwd2/Class.py 280share/gemrb/GUIScripts/iwd2/Class.py
280share/gemrb/GUIScripts/iwd2/Enemy.py 281share/gemrb/GUIScripts/iwd2/Enemy.py
281share/gemrb/GUIScripts/iwd2/Feats.py 282share/gemrb/GUIScripts/iwd2/Feats.py
282share/gemrb/GUIScripts/iwd2/GUIINV.py 283share/gemrb/GUIScripts/iwd2/GUIINV.py
283share/gemrb/GUIScripts/iwd2/GUIJRNL.py 284share/gemrb/GUIScripts/iwd2/GUIJRNL.py
284share/gemrb/GUIScripts/iwd2/GUILOAD.py 285share/gemrb/GUIScripts/iwd2/GUILOAD.py
285share/gemrb/GUIScripts/iwd2/GUIREC.py 286share/gemrb/GUIScripts/iwd2/GUIREC.py
286share/gemrb/GUIScripts/iwd2/GUISPL.py 287share/gemrb/GUIScripts/iwd2/GUISPL.py
287share/gemrb/GUIScripts/iwd2/GUIWORLD.py 288share/gemrb/GUIScripts/iwd2/GUIWORLD.py
288share/gemrb/GUIScripts/iwd2/Gender.py 289share/gemrb/GUIScripts/iwd2/Gender.py
289share/gemrb/GUIScripts/iwd2/IDLUCommon.py 290share/gemrb/GUIScripts/iwd2/IDLUCommon.py
290share/gemrb/GUIScripts/iwd2/ImportFile.py 291share/gemrb/GUIScripts/iwd2/ImportFile.py
291share/gemrb/GUIScripts/iwd2/LoadScreen.py 292share/gemrb/GUIScripts/iwd2/LoadScreen.py
292share/gemrb/GUIScripts/iwd2/MessageWindow.py 293share/gemrb/GUIScripts/iwd2/MessageWindow.py
293share/gemrb/GUIScripts/iwd2/Name.py 294share/gemrb/GUIScripts/iwd2/Name.py
294share/gemrb/GUIScripts/iwd2/Options.py 295share/gemrb/GUIScripts/iwd2/Options.py
295share/gemrb/GUIScripts/iwd2/QuitGame.py 296share/gemrb/GUIScripts/iwd2/QuitGame.py
296share/gemrb/GUIScripts/iwd2/Race.py 297share/gemrb/GUIScripts/iwd2/Race.py
297share/gemrb/GUIScripts/iwd2/SPParty.py 298share/gemrb/GUIScripts/iwd2/SPParty.py
298share/gemrb/GUIScripts/iwd2/SPParty2.py 299share/gemrb/GUIScripts/iwd2/SPParty2.py
299share/gemrb/GUIScripts/iwd2/SPPartyFormation.py 300share/gemrb/GUIScripts/iwd2/SPPartyFormation.py
300share/gemrb/GUIScripts/iwd2/Skills.py 301share/gemrb/GUIScripts/iwd2/Skills.py
301share/gemrb/GUIScripts/iwd2/Songs.py 302share/gemrb/GUIScripts/iwd2/Songs.py
302share/gemrb/GUIScripts/iwd2/Spells.py 303share/gemrb/GUIScripts/iwd2/Spells.py
303share/gemrb/GUIScripts/iwd2/Start.py 304share/gemrb/GUIScripts/iwd2/Start.py
304share/gemrb/GUIScripts/iwd2/SubRaces.py 305share/gemrb/GUIScripts/iwd2/SubRaces.py
305share/gemrb/GUIScripts/maze_defs.py 306share/gemrb/GUIScripts/maze_defs.py
306share/gemrb/GUIScripts/pst/Autodetect.py 307share/gemrb/GUIScripts/pst/Autodetect.py
307share/gemrb/GUIScripts/pst/FloatMenuWindow.py 308share/gemrb/GUIScripts/pst/FloatMenuWindow.py
308share/gemrb/GUIScripts/pst/GUIINV.py 309share/gemrb/GUIScripts/pst/GUIINV.py
309share/gemrb/GUIScripts/pst/GUIJRNL.py 310share/gemrb/GUIScripts/pst/GUIJRNL.py
310share/gemrb/GUIScripts/pst/GUILOAD.py 311share/gemrb/GUIScripts/pst/GUILOAD.py
311share/gemrb/GUIScripts/pst/GUIMA.py 312share/gemrb/GUIScripts/pst/GUIMA.py
312share/gemrb/GUIScripts/pst/GUIMG.py 313share/gemrb/GUIScripts/pst/GUIMG.py
313share/gemrb/GUIScripts/pst/GUIOPT.py 314share/gemrb/GUIScripts/pst/GUIOPT.py
314share/gemrb/GUIScripts/pst/GUIPR.py 315share/gemrb/GUIScripts/pst/GUIPR.py
315share/gemrb/GUIScripts/pst/GUIREC.py 316share/gemrb/GUIScripts/pst/GUIREC.py
316share/gemrb/GUIScripts/pst/GUIWORLD.py 317share/gemrb/GUIScripts/pst/GUIWORLD.py
317share/gemrb/GUIScripts/pst/LoadScreen.py 318share/gemrb/GUIScripts/pst/LoadScreen.py
318share/gemrb/GUIScripts/pst/Maze.py 319share/gemrb/GUIScripts/pst/Maze.py
319share/gemrb/GUIScripts/pst/MessageWindow.py 320share/gemrb/GUIScripts/pst/MessageWindow.py
320share/gemrb/GUIScripts/pst/NewLife.py 321share/gemrb/GUIScripts/pst/NewLife.py
321share/gemrb/GUIScripts/pst/QuitGame.py 322share/gemrb/GUIScripts/pst/QuitGame.py
322share/gemrb/GUIScripts/pst/Start.py 323share/gemrb/GUIScripts/pst/Start.py
 324share/gemrb/GUIScripts/test/Autodetect.py
323share/gemrb/GUIScripts/test/Start.py 325share/gemrb/GUIScripts/test/Start.py
324share/gemrb/minimal/README 326share/gemrb/minimal/README
325share/gemrb/minimal/chitin.key 327share/gemrb/minimal/chitin.key
326share/gemrb/minimal/data/action.ids 328share/gemrb/minimal/data/action.ids
327share/gemrb/minimal/data/carot.bam 329share/gemrb/minimal/data/carot.bam
328share/gemrb/minimal/data/chrmodst.2da 330share/gemrb/minimal/data/chrmodst.2da
329share/gemrb/minimal/data/cursors.bam 331share/gemrb/minimal/data/cursors.bam
330share/gemrb/minimal/data/defsound.2da 332share/gemrb/minimal/data/defsound.2da
331share/gemrb/minimal/data/dexmod.2da 333share/gemrb/minimal/data/dexmod.2da
332share/gemrb/minimal/data/effects.ids 334share/gemrb/minimal/data/effects.ids
333share/gemrb/minimal/data/fogowar.bam 335share/gemrb/minimal/data/fogowar.bam
334share/gemrb/minimal/data/fonts.2da 336share/gemrb/minimal/data/fonts.2da
335share/gemrb/minimal/data/gametime.2da 337share/gemrb/minimal/data/gametime.2da
336share/gemrb/minimal/data/gemrb.ini 338share/gemrb/minimal/data/gemrb.ini
337share/gemrb/minimal/data/hpconbon.2da 339share/gemrb/minimal/data/hpconbon.2da
338share/gemrb/minimal/data/instant.ids 340share/gemrb/minimal/data/instant.ids
339share/gemrb/minimal/data/intmod.2da 341share/gemrb/minimal/data/intmod.2da
340share/gemrb/minimal/data/itemtype.2da 342share/gemrb/minimal/data/itemtype.2da
341share/gemrb/minimal/data/lorebon.2da 343share/gemrb/minimal/data/lorebon.2da
342share/gemrb/minimal/data/numtest.bam 344share/gemrb/minimal/data/numtest.bam
343share/gemrb/minimal/data/object.ids 345share/gemrb/minimal/data/object.ids
344share/gemrb/minimal/data/palette.png 346share/gemrb/minimal/data/palette0.png
345share/gemrb/minimal/data/script.2da 347share/gemrb/minimal/data/script.2da
346share/gemrb/minimal/data/slottype.2da 348share/gemrb/minimal/data/slottype.2da
347share/gemrb/minimal/data/strings.2da 349share/gemrb/minimal/data/strings.2da
348share/gemrb/minimal/data/strmod.2da 350share/gemrb/minimal/data/strmod.2da
349share/gemrb/minimal/data/strmodex.2da 351share/gemrb/minimal/data/strmodex.2da
350share/gemrb/minimal/data/toolscrl.bam 352share/gemrb/minimal/data/toolscrl.bam
351share/gemrb/minimal/data/trigger.ids 353share/gemrb/minimal/data/trigger.ids
352share/gemrb/minimal/dialog.tlk 354share/gemrb/minimal/dialog.tlk
353share/gemrb/minimal/fhs.cfg 355share/gemrb/minimal/fhs.cfg
354share/gemrb/minimal/test.cfg 356share/gemrb/minimal/test.cfg
355share/gemrb/override/bg1/CMakeLists.txt 357share/gemrb/override/bg1/CMakeLists.txt
356share/gemrb/override/bg1/efftext.2da 358share/gemrb/override/bg1/efftext.2da
357share/gemrb/override/bg1/minorglb.vvc 359share/gemrb/override/bg1/minorglb.vvc
358share/gemrb/override/bg2/clearair.2da 360share/gemrb/override/bg2/clearair.2da
359share/gemrb/override/bg2/cut17d.bcs 361share/gemrb/override/bg2/cut17d.bcs
360share/gemrb/override/bg2/efftext.2da 362share/gemrb/override/bg2/efftext.2da
361share/gemrb/override/bg2/minorglb.vvc 363share/gemrb/override/bg2/minorglb.vvc
362share/gemrb/override/bg2/ogmagi01.bcs 364share/gemrb/override/bg2/ogmagi01.bcs
363share/gemrb/override/bg2/spells.2da 365share/gemrb/override/bg2/spells.2da
364share/gemrb/override/how/baldur.bcs 366share/gemrb/override/how/baldur.bcs
365share/gemrb/override/how/drmtxt2.2da 367share/gemrb/override/how/drmtxt2.2da
366share/gemrb/override/how/efftext.2da 368share/gemrb/override/how/efftext.2da
367share/gemrb/override/iwd/baldur.bcs 369share/gemrb/override/iwd/baldur.bcs
368share/gemrb/override/iwd/drmtxt2.2da 370share/gemrb/override/iwd/drmtxt2.2da
369share/gemrb/override/iwd/efftext.2da 371share/gemrb/override/iwd/efftext.2da
370share/gemrb/override/iwd2/drmtxt2.2da 372share/gemrb/override/iwd2/drmtxt2.2da
371share/gemrb/override/iwd2/efftext.2da 373share/gemrb/override/iwd2/efftext.2da
372share/gemrb/override/iwd2/skillrac.2da 374share/gemrb/override/iwd2/skillrac.2da
373share/gemrb/override/pst/ar1200.ini 375share/gemrb/override/pst/ar1200.ini
374share/gemrb/override/pst/drmtxt2.2da 376share/gemrb/override/pst/drmtxt2.2da
375share/gemrb/override/pst/efftext.2da 377share/gemrb/override/pst/efftext.2da
376share/gemrb/override/pst/rndtreas.2da 378share/gemrb/override/pst/rndtreas.2da
377share/gemrb/override/pst/spwi506.spl 379share/gemrb/override/pst/spwi506.spl
378share/gemrb/override/pst/wmmos1.mos 380share/gemrb/override/pst/wmmos1.mos
379share/gemrb/override/shared/stats.ids 381share/gemrb/override/shared/stats.ids
380share/gemrb/unhardcoded/bg1/ability.2da 382share/gemrb/unhardcoded/bg1/ability.2da
381share/gemrb/unhardcoded/bg1/acidblgr.pro 383share/gemrb/unhardcoded/bg1/acidblgr.pro
382share/gemrb/unhardcoded/bg1/acidblmu.pro 384share/gemrb/unhardcoded/bg1/acidblmu.pro
383share/gemrb/unhardcoded/bg1/acidblob.pro 385share/gemrb/unhardcoded/bg1/acidblob.pro
384share/gemrb/unhardcoded/bg1/acidbloc.pro 386share/gemrb/unhardcoded/bg1/acidbloc.pro
385share/gemrb/unhardcoded/bg1/aligns.2da 387share/gemrb/unhardcoded/bg1/aligns.2da
386share/gemrb/unhardcoded/bg1/area_reverbs.2da 388share/gemrb/unhardcoded/bg1/area_reverbs.2da
387share/gemrb/unhardcoded/bg1/areapro.2da 389share/gemrb/unhardcoded/bg1/areapro.2da
388share/gemrb/unhardcoded/bg1/arrow.pro 390share/gemrb/unhardcoded/bg1/arrow.pro
389share/gemrb/unhardcoded/bg1/arrowex.pro 391share/gemrb/unhardcoded/bg1/arrowex.pro
390share/gemrb/unhardcoded/bg1/arrowflb.pro 392share/gemrb/unhardcoded/bg1/arrowflb.pro
391share/gemrb/unhardcoded/bg1/arrowflg.pro 393share/gemrb/unhardcoded/bg1/arrowflg.pro
392share/gemrb/unhardcoded/bg1/arrowfli.pro 394share/gemrb/unhardcoded/bg1/arrowfli.pro
393share/gemrb/unhardcoded/bg1/arrowflm.pro 395share/gemrb/unhardcoded/bg1/arrowflm.pro
394share/gemrb/unhardcoded/bg1/arrowhvy.pro 396share/gemrb/unhardcoded/bg1/arrowhvy.pro
395share/gemrb/unhardcoded/bg1/avatars.2da 397share/gemrb/unhardcoded/bg1/avatars.2da
396share/gemrb/unhardcoded/bg1/avprefr.2da 398share/gemrb/unhardcoded/bg1/avprefr.2da
397share/gemrb/unhardcoded/bg1/axe.pro 399share/gemrb/unhardcoded/bg1/axe.pro
398share/gemrb/unhardcoded/bg1/axeex.pro 400share/gemrb/unhardcoded/bg1/axeex.pro
399share/gemrb/unhardcoded/bg1/bios.2da 401share/gemrb/unhardcoded/bg1/bios.2da
400share/gemrb/unhardcoded/bg1/bloodclr.2da 402share/gemrb/unhardcoded/bg1/bloodclr.2da
401share/gemrb/unhardcoded/bg1/bolt.pro 403share/gemrb/unhardcoded/bg1/bolt.pro
402share/gemrb/unhardcoded/bg1/boltex.pro 404share/gemrb/unhardcoded/bg1/boltex.pro
403share/gemrb/unhardcoded/bg1/bullet.pro 405share/gemrb/unhardcoded/bg1/bullet.pro
404share/gemrb/unhardcoded/bg1/bulletex.pro 406share/gemrb/unhardcoded/bg1/bulletex.pro
405share/gemrb/unhardcoded/bg1/cgtable.2da 407share/gemrb/unhardcoded/bg1/cgtable.2da
406share/gemrb/unhardcoded/bg1/chromorb.pro 408share/gemrb/unhardcoded/bg1/chromorb.pro
407share/gemrb/unhardcoded/bg1/clabdrui.2da 409share/gemrb/unhardcoded/bg1/clabdrui.2da
408share/gemrb/unhardcoded/bg1/clabpala.2da 410share/gemrb/unhardcoded/bg1/clabpala.2da
409share/gemrb/unhardcoded/bg1/clabrngr.2da 411share/gemrb/unhardcoded/bg1/clabrngr.2da
410share/gemrb/unhardcoded/bg1/classes.2da 412share/gemrb/unhardcoded/bg1/classes.2da
411share/gemrb/unhardcoded/bg1/cloud.pro 413share/gemrb/unhardcoded/bg1/cloud.pro
412share/gemrb/unhardcoded/bg1/cloudkil.pro 414share/gemrb/unhardcoded/bg1/cloudkil.pro
413share/gemrb/unhardcoded/bg1/clowncol.2da 415share/gemrb/unhardcoded/bg1/clowncol.2da
414share/gemrb/unhardcoded/bg1/clskills.2da 416share/gemrb/unhardcoded/bg1/clskills.2da
415share/gemrb/unhardcoded/bg1/dagger.pro 417share/gemrb/unhardcoded/bg1/dagger.pro
416share/gemrb/unhardcoded/bg1/daggerex.pro 418share/gemrb/unhardcoded/bg1/daggerex.pro
417share/gemrb/unhardcoded/bg1/damage.2da 419share/gemrb/unhardcoded/bg1/damage.2da
418share/gemrb/unhardcoded/bg1/dart.pro 420share/gemrb/unhardcoded/bg1/dart.pro
419share/gemrb/unhardcoded/bg1/dartex.pro 421share/gemrb/unhardcoded/bg1/dartex.pro
420share/gemrb/unhardcoded/bg1/defsound.2da 422share/gemrb/unhardcoded/bg1/defsound.2da
421share/gemrb/unhardcoded/bg1/dsclass.2da 423share/gemrb/unhardcoded/bg1/dsclass.2da
422share/gemrb/unhardcoded/bg1/dsrace.2da 424share/gemrb/unhardcoded/bg1/dsrace.2da
423share/gemrb/unhardcoded/bg1/dstable.2da 425share/gemrb/unhardcoded/bg1/dstable.2da
424share/gemrb/unhardcoded/bg1/dualclas.2da 426share/gemrb/unhardcoded/bg1/dualclas.2da
425share/gemrb/unhardcoded/bg1/effects.ids 427share/gemrb/unhardcoded/bg1/effects.ids
426share/gemrb/unhardcoded/bg1/fireball.pro 428share/gemrb/unhardcoded/bg1/fireball.pro
427share/gemrb/unhardcoded/bg1/fireblic.pro 429share/gemrb/unhardcoded/bg1/fireblic.pro
428share/gemrb/unhardcoded/bg1/firebolt.pro 430share/gemrb/unhardcoded/bg1/firebolt.pro
429share/gemrb/unhardcoded/bg1/firebtbl.pro 431share/gemrb/unhardcoded/bg1/firebtbl.pro
430share/gemrb/unhardcoded/bg1/firestor.pro 432share/gemrb/unhardcoded/bg1/firestor.pro
431share/gemrb/unhardcoded/bg1/fistweap.2da 433share/gemrb/unhardcoded/bg1/fistweap.2da
432share/gemrb/unhardcoded/bg1/fonts.2da 434share/gemrb/unhardcoded/bg1/fonts.2da
433share/gemrb/unhardcoded/bg1/formatio.2da 435share/gemrb/unhardcoded/bg1/formatio.2da
434share/gemrb/unhardcoded/bg1/gametime.2da 436share/gemrb/unhardcoded/bg1/gametime.2da
435share/gemrb/unhardcoded/bg1/gaze.pro 437share/gemrb/unhardcoded/bg1/gaze.pro
436share/gemrb/unhardcoded/bg1/gemact.ids 438share/gemrb/unhardcoded/bg1/gemact.ids
437share/gemrb/unhardcoded/bg1/gemprjtl.ids 439share/gemrb/unhardcoded/bg1/gemprjtl.ids
438share/gemrb/unhardcoded/bg1/gemrb.ini 440share/gemrb/unhardcoded/bg1/gemrb.ini
439share/gemrb/unhardcoded/bg1/gemtrig.ids 441share/gemrb/unhardcoded/bg1/gemtrig.ids
440share/gemrb/unhardcoded/bg1/grease.pro 442share/gemrb/unhardcoded/bg1/grease.pro
441share/gemrb/unhardcoded/bg1/guibtact.2da 443share/gemrb/unhardcoded/bg1/guibtact.2da
442share/gemrb/unhardcoded/bg1/guils.chu 444share/gemrb/unhardcoded/bg1/guils.chu
443share/gemrb/unhardcoded/bg1/haterace.2da 445share/gemrb/unhardcoded/bg1/haterace.2da
444share/gemrb/unhardcoded/bg1/hlymite.pro 446share/gemrb/unhardcoded/bg1/hlymite.pro
445share/gemrb/unhardcoded/bg1/icestorm.pro 447share/gemrb/unhardcoded/bg1/icestorm.pro
446share/gemrb/unhardcoded/bg1/inarea.pro 448share/gemrb/unhardcoded/bg1/inarea.pro
447share/gemrb/unhardcoded/bg1/inareapa.pro 449share/gemrb/unhardcoded/bg1/inareapa.pro
448share/gemrb/unhardcoded/bg1/inareasm.pro 450share/gemrb/unhardcoded/bg1/inareasm.pro
449share/gemrb/unhardcoded/bg1/item_use.2da 451share/gemrb/unhardcoded/bg1/item_use.2da
450share/gemrb/unhardcoded/bg1/itemsnd.2da 452share/gemrb/unhardcoded/bg1/itemsnd.2da
451share/gemrb/unhardcoded/bg1/itemtype.2da 453share/gemrb/unhardcoded/bg1/itemtype.2da
452share/gemrb/unhardcoded/bg1/itemuse.2da 454share/gemrb/unhardcoded/bg1/itemuse.2da
453share/gemrb/unhardcoded/bg1/k_m_e.2da 455share/gemrb/unhardcoded/bg1/k_m_e.2da
454share/gemrb/unhardcoded/bg1/k_m_g.2da 456share/gemrb/unhardcoded/bg1/k_m_g.2da
455share/gemrb/unhardcoded/bg1/k_m_h.2da 457share/gemrb/unhardcoded/bg1/k_m_h.2da
456share/gemrb/unhardcoded/bg1/k_m_he.2da 458share/gemrb/unhardcoded/bg1/k_m_he.2da
457share/gemrb/unhardcoded/bg1/kitlist.2da 459share/gemrb/unhardcoded/bg1/kitlist.2da
458share/gemrb/unhardcoded/bg1/kittable.2da 460share/gemrb/unhardcoded/bg1/kittable.2da
459share/gemrb/unhardcoded/bg1/lightsto.pro 461share/gemrb/unhardcoded/bg1/lightsto.pro
460share/gemrb/unhardcoded/bg1/magesch.2da 462share/gemrb/unhardcoded/bg1/magesch.2da
461share/gemrb/unhardcoded/bg1/magicmis.pro 463share/gemrb/unhardcoded/bg1/magicmis.pro
462share/gemrb/unhardcoded/bg1/mpal256.bmp 464share/gemrb/unhardcoded/bg1/mpal256.bmp
463share/gemrb/unhardcoded/bg1/music.2da 465share/gemrb/unhardcoded/bg1/music.2da
464share/gemrb/unhardcoded/bg1/overlay.2da 466share/gemrb/unhardcoded/bg1/overlay.2da
465share/gemrb/unhardcoded/bg1/pathfind.2da 467share/gemrb/unhardcoded/bg1/pathfind.2da
466share/gemrb/unhardcoded/bg1/pdolls.2da 468share/gemrb/unhardcoded/bg1/pdolls.2da
467share/gemrb/unhardcoded/bg1/pictures.2da 469share/gemrb/unhardcoded/bg1/pictures.2da
468share/gemrb/unhardcoded/bg1/polish.ini 470share/gemrb/unhardcoded/bg1/polish.ini
469share/gemrb/unhardcoded/bg1/proftype.2da 471share/gemrb/unhardcoded/bg1/proftype.2da
470share/gemrb/unhardcoded/bg1/qslots.2da 472share/gemrb/unhardcoded/bg1/qslots.2da
471share/gemrb/unhardcoded/bg1/races.2da 473share/gemrb/unhardcoded/bg1/races.2da
472share/gemrb/unhardcoded/bg1/racethac.2da 474share/gemrb/unhardcoded/bg1/racethac.2da
473share/gemrb/unhardcoded/bg1/randitem.2da 475share/gemrb/unhardcoded/bg1/randitem.2da
474share/gemrb/unhardcoded/bg1/restmov.2da 476share/gemrb/unhardcoded/bg1/restmov.2da
475share/gemrb/unhardcoded/bg1/savegame.2da 477share/gemrb/unhardcoded/bg1/savegame.2da
476share/gemrb/unhardcoded/bg1/script.2da 478share/gemrb/unhardcoded/bg1/script.2da
477share/gemrb/unhardcoded/bg1/shtable.2da 479share/gemrb/unhardcoded/bg1/shtable.2da
478share/gemrb/unhardcoded/bg1/skills.2da 480share/gemrb/unhardcoded/bg1/skills.2da
479share/gemrb/unhardcoded/bg1/sleep.pro 481share/gemrb/unhardcoded/bg1/sleep.pro
480share/gemrb/unhardcoded/bg1/slottype.2da 482share/gemrb/unhardcoded/bg1/slottype.2da
481share/gemrb/unhardcoded/bg1/sparbknp.pro 483share/gemrb/unhardcoded/bg1/sparbknp.pro
482share/gemrb/unhardcoded/bg1/sparbkpa.pro 484share/gemrb/unhardcoded/bg1/sparbkpa.pro
483share/gemrb/unhardcoded/bg1/sparblnp.pro 485share/gemrb/unhardcoded/bg1/sparblnp.pro
484share/gemrb/unhardcoded/bg1/sparblpa.pro 486share/gemrb/unhardcoded/bg1/sparblpa.pro
485share/gemrb/unhardcoded/bg1/sparchnp.pro 487share/gemrb/unhardcoded/bg1/sparchnp.pro
486share/gemrb/unhardcoded/bg1/sparchpa.pro 488share/gemrb/unhardcoded/bg1/sparchpa.pro
487share/gemrb/unhardcoded/bg1/spargonp.pro 489share/gemrb/unhardcoded/bg1/spargonp.pro
488share/gemrb/unhardcoded/bg1/spargopa.pro 490share/gemrb/unhardcoded/bg1/spargopa.pro
489share/gemrb/unhardcoded/bg1/spargrnp.pro 491share/gemrb/unhardcoded/bg1/spargrnp.pro
490share/gemrb/unhardcoded/bg1/spargrpa.pro 492share/gemrb/unhardcoded/bg1/spargrpa.pro
491share/gemrb/unhardcoded/bg1/sparicnp.pro 493share/gemrb/unhardcoded/bg1/sparicnp.pro
492share/gemrb/unhardcoded/bg1/sparicpa.pro 494share/gemrb/unhardcoded/bg1/sparicpa.pro
493share/gemrb/unhardcoded/bg1/sparklbk.pro 495share/gemrb/unhardcoded/bg1/sparklbk.pro
494share/gemrb/unhardcoded/bg1/sparklbl.pro 496share/gemrb/unhardcoded/bg1/sparklbl.pro
495share/gemrb/unhardcoded/bg1/sparklch.pro 497share/gemrb/unhardcoded/bg1/sparklch.pro
496share/gemrb/unhardcoded/bg1/sparklgo.pro 498share/gemrb/unhardcoded/bg1/sparklgo.pro
497share/gemrb/unhardcoded/bg1/sparklgr.pro 499share/gemrb/unhardcoded/bg1/sparklgr.pro
498share/gemrb/unhardcoded/bg1/sparklic.pro 500share/gemrb/unhardcoded/bg1/sparklic.pro
499share/gemrb/unhardcoded/bg1/sparklma.pro 501share/gemrb/unhardcoded/bg1/sparklma.pro
500share/gemrb/unhardcoded/bg1/sparklor.pro 502share/gemrb/unhardcoded/bg1/sparklor.pro
501share/gemrb/unhardcoded/bg1/sparklpu.pro 503share/gemrb/unhardcoded/bg1/sparklpu.pro
502share/gemrb/unhardcoded/bg1/sparklre.pro 504share/gemrb/unhardcoded/bg1/sparklre.pro
503share/gemrb/unhardcoded/bg1/sparklst.pro 505share/gemrb/unhardcoded/bg1/sparklst.pro
504share/gemrb/unhardcoded/bg1/sparmanp.pro 506share/gemrb/unhardcoded/bg1/sparmanp.pro
505share/gemrb/unhardcoded/bg1/sparmapa.pro 507share/gemrb/unhardcoded/bg1/sparmapa.pro
506share/gemrb/unhardcoded/bg1/sparornp.pro 508share/gemrb/unhardcoded/bg1/sparornp.pro
507share/gemrb/unhardcoded/bg1/sparorpa.pro 509share/gemrb/unhardcoded/bg1/sparorpa.pro
508share/gemrb/unhardcoded/bg1/sparpunp.pro 510share/gemrb/unhardcoded/bg1/sparpunp.pro
509share/gemrb/unhardcoded/bg1/sparpupa.pro 511share/gemrb/unhardcoded/bg1/sparpupa.pro
510share/gemrb/unhardcoded/bg1/sparrenp.pro 512share/gemrb/unhardcoded/bg1/sparrenp.pro
511share/gemrb/unhardcoded/bg1/sparrepa.pro 513share/gemrb/unhardcoded/bg1/sparrepa.pro
512share/gemrb/unhardcoded/bg1/sparstnp.pro 514share/gemrb/unhardcoded/bg1/sparstnp.pro
513share/gemrb/unhardcoded/bg1/sparstpa.pro 515share/gemrb/unhardcoded/bg1/sparstpa.pro
514share/gemrb/unhardcoded/bg1/spear.pro 516share/gemrb/unhardcoded/bg1/spear.pro
515share/gemrb/unhardcoded/bg1/spearex.pro 517share/gemrb/unhardcoded/bg1/spearex.pro
516share/gemrb/unhardcoded/bg1/spfirebl.pro 518share/gemrb/unhardcoded/bg1/spfirebl.pro
517share/gemrb/unhardcoded/bg1/spklarbk.pro 519share/gemrb/unhardcoded/bg1/spklarbk.pro
518share/gemrb/unhardcoded/bg1/spklarbl.pro 520share/gemrb/unhardcoded/bg1/spklarbl.pro
519share/gemrb/unhardcoded/bg1/spklarch.pro 521share/gemrb/unhardcoded/bg1/spklarch.pro
520share/gemrb/unhardcoded/bg1/spklargo.pro 522share/gemrb/unhardcoded/bg1/spklargo.pro
521share/gemrb/unhardcoded/bg1/spklargr.pro 523share/gemrb/unhardcoded/bg1/spklargr.pro
522share/gemrb/unhardcoded/bg1/spklaric.pro 524share/gemrb/unhardcoded/bg1/spklaric.pro
523share/gemrb/unhardcoded/bg1/spklarma.pro 525share/gemrb/unhardcoded/bg1/spklarma.pro
524share/gemrb/unhardcoded/bg1/spklaror.pro 526share/gemrb/unhardcoded/bg1/spklaror.pro
525share/gemrb/unhardcoded/bg1/spklarpu.pro 527share/gemrb/unhardcoded/bg1/spklarpu.pro
526share/gemrb/unhardcoded/bg1/spklarre.pro 528share/gemrb/unhardcoded/bg1/spklarre.pro
527share/gemrb/unhardcoded/bg1/spklarst.pro 529share/gemrb/unhardcoded/bg1/spklarst.pro
 530share/gemrb/unhardcoded/bg1/splbrdkn.2da
528share/gemrb/unhardcoded/bg1/splspec.2da 531share/gemrb/unhardcoded/bg1/splspec.2da
529share/gemrb/unhardcoded/bg1/spscorch.pro 532share/gemrb/unhardcoded/bg1/spscorch.pro
530share/gemrb/unhardcoded/bg1/spscoric.pro 533share/gemrb/unhardcoded/bg1/spscoric.pro
531share/gemrb/unhardcoded/bg1/stances.2da 534share/gemrb/unhardcoded/bg1/stances.2da
532share/gemrb/unhardcoded/bg1/start.2da 535share/gemrb/unhardcoded/bg1/start.2da
533share/gemrb/unhardcoded/bg1/stone.pro 536share/gemrb/unhardcoded/bg1/stone.pro
534share/gemrb/unhardcoded/bg1/strings.2da 537share/gemrb/unhardcoded/bg1/strings.2da
 538share/gemrb/unhardcoded/bg1/summlimt.2da
535share/gemrb/unhardcoded/bg1/textscrn.2da 539share/gemrb/unhardcoded/bg1/textscrn.2da
536share/gemrb/unhardcoded/bg1/trapglyp.pro 540share/gemrb/unhardcoded/bg1/trapglyp.pro
537share/gemrb/unhardcoded/bg1/trapskul.pro 541share/gemrb/unhardcoded/bg1/trapskul.pro
538share/gemrb/unhardcoded/bg1/vcremap.2da 542share/gemrb/unhardcoded/bg1/vcremap.2da
539share/gemrb/unhardcoded/bg1/walksnd.2da 543share/gemrb/unhardcoded/bg1/walksnd.2da
540share/gemrb/unhardcoded/bg1/weapprof.2da 544share/gemrb/unhardcoded/bg1/weapprof.2da
541share/gemrb/unhardcoded/bg1/web.pro 545share/gemrb/unhardcoded/bg1/web.pro
542share/gemrb/unhardcoded/bg1/wssingle.2da 546share/gemrb/unhardcoded/bg1/wssingle.2da
543share/gemrb/unhardcoded/bg2/HPBARB.2da 547share/gemrb/unhardcoded/bg2/HPBARB.2da
544share/gemrb/unhardcoded/bg2/ability.2da 548share/gemrb/unhardcoded/bg2/ability.2da
545share/gemrb/unhardcoded/bg2/aligns.2da 549share/gemrb/unhardcoded/bg2/aligns.2da
546share/gemrb/unhardcoded/bg2/area_reverbs.2da 550share/gemrb/unhardcoded/bg2/area_reverbs.2da
547share/gemrb/unhardcoded/bg2/areapro.2da 551share/gemrb/unhardcoded/bg2/areapro.2da
548share/gemrb/unhardcoded/bg2/at2xlvl.spl 552share/gemrb/unhardcoded/bg2/at2xlvl.spl
549share/gemrb/unhardcoded/bg2/avatars.2da 553share/gemrb/unhardcoded/bg2/avatars.2da
550share/gemrb/unhardcoded/bg2/avprefr.2da 554share/gemrb/unhardcoded/bg2/avprefr.2da
551share/gemrb/unhardcoded/bg2/bloodclr.2da 555share/gemrb/unhardcoded/bg2/bloodclr.2da
552share/gemrb/unhardcoded/bg2/cgtable.2da 556share/gemrb/unhardcoded/bg2/cgtable.2da
553share/gemrb/unhardcoded/bg2/classes.2da 557share/gemrb/unhardcoded/bg2/classes.2da
554share/gemrb/unhardcoded/bg2/clowncol.2da 558share/gemrb/unhardcoded/bg2/clowncol.2da
555share/gemrb/unhardcoded/bg2/clskills.2da 559share/gemrb/unhardcoded/bg2/clskills.2da
556share/gemrb/unhardcoded/bg2/colrspry.pro 560share/gemrb/unhardcoded/bg2/colrspry.pro
557share/gemrb/unhardcoded/bg2/comet.pro 561share/gemrb/unhardcoded/bg2/comet.pro
558share/gemrb/unhardcoded/bg2/damage.2da 562share/gemrb/unhardcoded/bg2/damage.2da
559share/gemrb/unhardcoded/bg2/defsound.2da 563share/gemrb/unhardcoded/bg2/defsound.2da
560share/gemrb/unhardcoded/bg2/denyspl.2da 564share/gemrb/unhardcoded/bg2/denyspl.2da
561share/gemrb/unhardcoded/bg2/difflvls.2da 565share/gemrb/unhardcoded/bg2/difflvls.2da
562share/gemrb/unhardcoded/bg2/dsclass.2da 566share/gemrb/unhardcoded/bg2/dsclass.2da
563share/gemrb/unhardcoded/bg2/dsrace.2da 567share/gemrb/unhardcoded/bg2/dsrace.2da
564share/gemrb/unhardcoded/bg2/dstable.2da 568share/gemrb/unhardcoded/bg2/dstable.2da
565share/gemrb/unhardcoded/bg2/effects.ids 569share/gemrb/unhardcoded/bg2/effects.ids
566share/gemrb/unhardcoded/bg2/findtrap.spl 570share/gemrb/unhardcoded/bg2/findtrap.spl
567share/gemrb/unhardcoded/bg2/fistweap.2da 571share/gemrb/unhardcoded/bg2/fistweap.2da
568share/gemrb/unhardcoded/bg2/fonts.2da 572share/gemrb/unhardcoded/bg2/fonts.2da
569share/gemrb/unhardcoded/bg2/formatio.2da 573share/gemrb/unhardcoded/bg2/formatio.2da
570share/gemrb/unhardcoded/bg2/gametime.2da 574share/gemrb/unhardcoded/bg2/gametime.2da
571share/gemrb/unhardcoded/bg2/gemprjtl.ids 575share/gemrb/unhardcoded/bg2/gemprjtl.ids
572share/gemrb/unhardcoded/bg2/gemrb.ini 576share/gemrb/unhardcoded/bg2/gemrb.ini
573share/gemrb/unhardcoded/bg2/gender.2da 577share/gemrb/unhardcoded/bg2/gender.2da
574share/gemrb/unhardcoded/bg2/guibtact.2da 578share/gemrb/unhardcoded/bg2/guibtact.2da
575share/gemrb/unhardcoded/bg2/guiid.chu 579share/gemrb/unhardcoded/bg2/guiid.chu
576share/gemrb/unhardcoded/bg2/guils.chu 580share/gemrb/unhardcoded/bg2/guils.chu
577share/gemrb/unhardcoded/bg2/halvdur.spl 581share/gemrb/unhardcoded/bg2/halvdur.spl
578share/gemrb/unhardcoded/bg2/hlymite.pro 582share/gemrb/unhardcoded/bg2/hlymite.pro
579share/gemrb/unhardcoded/bg2/item_use.2da 583share/gemrb/unhardcoded/bg2/item_use.2da
580share/gemrb/unhardcoded/bg2/itemsnd.2da 584share/gemrb/unhardcoded/bg2/itemsnd.2da
581share/gemrb/unhardcoded/bg2/itemspec.2da 585share/gemrb/unhardcoded/bg2/itemspec.2da
582share/gemrb/unhardcoded/bg2/itemtype.2da 586share/gemrb/unhardcoded/bg2/itemtype.2da
583share/gemrb/unhardcoded/bg2/itemuse.2da 587share/gemrb/unhardcoded/bg2/itemuse.2da
584share/gemrb/unhardcoded/bg2/k_bn_d.2da 588share/gemrb/unhardcoded/bg2/k_bn_d.2da
585share/gemrb/unhardcoded/bg2/k_bn_e.2da 589share/gemrb/unhardcoded/bg2/k_bn_e.2da
586share/gemrb/unhardcoded/bg2/k_bn_g.2da 590share/gemrb/unhardcoded/bg2/k_bn_g.2da
587share/gemrb/unhardcoded/bg2/k_bn_h.2da 591share/gemrb/unhardcoded/bg2/k_bn_h.2da
588share/gemrb/unhardcoded/bg2/k_bn_he.2da 592share/gemrb/unhardcoded/bg2/k_bn_he.2da
589share/gemrb/unhardcoded/bg2/k_bn_hl.2da 593share/gemrb/unhardcoded/bg2/k_bn_hl.2da
590share/gemrb/unhardcoded/bg2/k_bn_ho.2da 594share/gemrb/unhardcoded/bg2/k_bn_ho.2da
591share/gemrb/unhardcoded/bg2/k_m_e.2da 595share/gemrb/unhardcoded/bg2/k_m_e.2da
592share/gemrb/unhardcoded/bg2/k_m_g.2da 596share/gemrb/unhardcoded/bg2/k_m_g.2da
593share/gemrb/unhardcoded/bg2/k_m_h.2da 597share/gemrb/unhardcoded/bg2/k_m_h.2da
594share/gemrb/unhardcoded/bg2/k_m_he.2da 598share/gemrb/unhardcoded/bg2/k_m_he.2da
595share/gemrb/unhardcoded/bg2/lightb.pro 599share/gemrb/unhardcoded/bg2/lightb.pro
596share/gemrb/unhardcoded/bg2/lightbnb.pro 600share/gemrb/unhardcoded/bg2/lightbnb.pro
597share/gemrb/unhardcoded/bg2/magesch.2da 601share/gemrb/unhardcoded/bg2/magesch.2da
598share/gemrb/unhardcoded/bg2/modal.2da 602share/gemrb/unhardcoded/bg2/modal.2da
599share/gemrb/unhardcoded/bg2/monkbon.2da 603share/gemrb/unhardcoded/bg2/monkbon.2da
600share/gemrb/unhardcoded/bg2/moverate.2da 604share/gemrb/unhardcoded/bg2/moverate.2da
601share/gemrb/unhardcoded/bg2/overlay.2da 605share/gemrb/unhardcoded/bg2/overlay.2da
602share/gemrb/unhardcoded/bg2/pathfind.2da 606share/gemrb/unhardcoded/bg2/pathfind.2da
603share/gemrb/unhardcoded/bg2/pdolls.2da 607share/gemrb/unhardcoded/bg2/pdolls.2da
604share/gemrb/unhardcoded/bg2/pictures.2da 608share/gemrb/unhardcoded/bg2/pictures.2da
605share/gemrb/unhardcoded/bg2/proftype.2da 609share/gemrb/unhardcoded/bg2/proftype.2da
606share/gemrb/unhardcoded/bg2/qslot2.2da 610share/gemrb/unhardcoded/bg2/qslot2.2da
607share/gemrb/unhardcoded/bg2/qslots.2da 611share/gemrb/unhardcoded/bg2/qslots.2da
608share/gemrb/unhardcoded/bg2/races.2da 612share/gemrb/unhardcoded/bg2/races.2da
609share/gemrb/unhardcoded/bg2/racethac.2da 613share/gemrb/unhardcoded/bg2/racethac.2da
610share/gemrb/unhardcoded/bg2/randitem.2da 614share/gemrb/unhardcoded/bg2/randitem.2da
611share/gemrb/unhardcoded/bg2/rest.spl 615share/gemrb/unhardcoded/bg2/rest.spl
612share/gemrb/unhardcoded/bg2/restmov.2da 616share/gemrb/unhardcoded/bg2/restmov.2da
613share/gemrb/unhardcoded/bg2/sanctry.vvc 617share/gemrb/unhardcoded/bg2/sanctry.vvc
614share/gemrb/unhardcoded/bg2/savegame.2da 618share/gemrb/unhardcoded/bg2/savegame.2da
615share/gemrb/unhardcoded/bg2/script.2da 619share/gemrb/unhardcoded/bg2/script.2da
616share/gemrb/unhardcoded/bg2/shtable.2da 620share/gemrb/unhardcoded/bg2/shtable.2da
617share/gemrb/unhardcoded/bg2/skills.2da 621share/gemrb/unhardcoded/bg2/skills.2da
618share/gemrb/unhardcoded/bg2/slottype.2da 622share/gemrb/unhardcoded/bg2/slottype.2da
619share/gemrb/unhardcoded/bg2/snow.spl 623share/gemrb/unhardcoded/bg2/snow.spl
620share/gemrb/unhardcoded/bg2/spbrnhnd.pro 624share/gemrb/unhardcoded/bg2/spbrnhnd.pro
621share/gemrb/unhardcoded/bg2/spconeco.pro 625share/gemrb/unhardcoded/bg2/spconeco.pro
622share/gemrb/unhardcoded/bg2/spentaci.vvc 626share/gemrb/unhardcoded/bg2/spentaci.vvc
623share/gemrb/unhardcoded/bg2/spfdeath.pro 627share/gemrb/unhardcoded/bg2/spfdeath.pro
624share/gemrb/unhardcoded/bg2/spfirewl.pro 628share/gemrb/unhardcoded/bg2/spfirewl.pro
625share/gemrb/unhardcoded/bg2/spgenhla.pro 629share/gemrb/unhardcoded/bg2/spgenhla.pro
626share/gemrb/unhardcoded/bg2/spholymt.pro 630share/gemrb/unhardcoded/bg2/spholymt.pro
627share/gemrb/unhardcoded/bg2/splbrdkn.2da 631share/gemrb/unhardcoded/bg2/splbrdkn.2da
628share/gemrb/unhardcoded/bg2/splspec.2da 632share/gemrb/unhardcoded/bg2/splspec.2da
629share/gemrb/unhardcoded/bg2/splwizkn.2da 633share/gemrb/unhardcoded/bg2/splwizkn.2da
630share/gemrb/unhardcoded/bg2/spscorch.pro 634share/gemrb/unhardcoded/bg2/spscorch.pro
631share/gemrb/unhardcoded/bg2/spscoric.pro 635share/gemrb/unhardcoded/bg2/spscoric.pro
632share/gemrb/unhardcoded/bg2/spshield.vvc 636share/gemrb/unhardcoded/bg2/spshield.vvc
633share/gemrb/unhardcoded/bg2/stances.2da 637share/gemrb/unhardcoded/bg2/stances.2da
634share/gemrb/unhardcoded/bg2/start.2da 638share/gemrb/unhardcoded/bg2/start.2da
635share/gemrb/unhardcoded/bg2/strings.2da 639share/gemrb/unhardcoded/bg2/strings.2da
 640share/gemrb/unhardcoded/bg2/summlimt.2da
636share/gemrb/unhardcoded/bg2/walksnd.2da 641share/gemrb/unhardcoded/bg2/walksnd.2da
637share/gemrb/unhardcoded/bg2/wildmag.2da 642share/gemrb/unhardcoded/bg2/wildmag.2da
638share/gemrb/unhardcoded/bg2/wishcode.2da 643share/gemrb/unhardcoded/bg2/wishcode.2da
639share/gemrb/unhardcoded/bg2/wsshield.2da 644share/gemrb/unhardcoded/bg2/wsshield.2da
640share/gemrb/unhardcoded/bg2/wssingle.2da 645share/gemrb/unhardcoded/bg2/wssingle.2da
641share/gemrb/unhardcoded/bg2/wstwohnd.2da 646share/gemrb/unhardcoded/bg2/wstwohnd.2da
642share/gemrb/unhardcoded/bg2/wstwowpn.2da 647share/gemrb/unhardcoded/bg2/wstwowpn.2da
643share/gemrb/unhardcoded/how/ability.2da 648share/gemrb/unhardcoded/how/ability.2da
644share/gemrb/unhardcoded/how/abjurap.pro 649share/gemrb/unhardcoded/how/abjurap.pro
645share/gemrb/unhardcoded/how/abjurh.pro 650share/gemrb/unhardcoded/how/abjurh.pro
646share/gemrb/unhardcoded/how/abjurt.pro 651share/gemrb/unhardcoded/how/abjurt.pro
647share/gemrb/unhardcoded/how/acidblgr.pro 652share/gemrb/unhardcoded/how/acidblgr.pro
648share/gemrb/unhardcoded/how/acidblmu.pro 653share/gemrb/unhardcoded/how/acidblmu.pro
649share/gemrb/unhardcoded/how/acidblob.pro 654share/gemrb/unhardcoded/how/acidblob.pro
650share/gemrb/unhardcoded/how/acidbloc.pro 655share/gemrb/unhardcoded/how/acidbloc.pro
651share/gemrb/unhardcoded/how/acidh.pro 656share/gemrb/unhardcoded/how/acidh.pro
652share/gemrb/unhardcoded/how/adhwil.pro 657share/gemrb/unhardcoded/how/adhwil.pro
653share/gemrb/unhardcoded/how/adhwilh.pro 658share/gemrb/unhardcoded/how/adhwilh.pro
654share/gemrb/unhardcoded/how/alance.pro 659share/gemrb/unhardcoded/how/alance.pro
655share/gemrb/unhardcoded/how/aligns.2da 660share/gemrb/unhardcoded/how/aligns.2da
656share/gemrb/unhardcoded/how/altera.pro 661share/gemrb/unhardcoded/how/altera.pro
657share/gemrb/unhardcoded/how/alteranp.pro 662share/gemrb/unhardcoded/how/alteranp.pro
658share/gemrb/unhardcoded/how/alterap.pro 663share/gemrb/unhardcoded/how/alterap.pro
659share/gemrb/unhardcoded/how/alteras.pro 664share/gemrb/unhardcoded/how/alteras.pro
660share/gemrb/unhardcoded/how/alterh.pro 665share/gemrb/unhardcoded/how/alterh.pro
661share/gemrb/unhardcoded/how/altert.pro 666share/gemrb/unhardcoded/how/altert.pro
662share/gemrb/unhardcoded/how/amshelc.vvc 667share/gemrb/unhardcoded/how/amshelc.vvc
663share/gemrb/unhardcoded/how/area1np.pro 668share/gemrb/unhardcoded/how/area1np.pro
664share/gemrb/unhardcoded/how/area1p.pro 669share/gemrb/unhardcoded/how/area1p.pro
665share/gemrb/unhardcoded/how/area2.pro 670share/gemrb/unhardcoded/how/area2.pro
666share/gemrb/unhardcoded/how/area2np.pro 671share/gemrb/unhardcoded/how/area2np.pro
667share/gemrb/unhardcoded/how/area3p.pro 672share/gemrb/unhardcoded/how/area3p.pro
668share/gemrb/unhardcoded/how/area4np.pro 673share/gemrb/unhardcoded/how/area4np.pro
669share/gemrb/unhardcoded/how/areapro.2da 674share/gemrb/unhardcoded/how/areapro.2da
670share/gemrb/unhardcoded/how/armorh.pro 675share/gemrb/unhardcoded/how/armorh.pro
671share/gemrb/unhardcoded/how/arrow.pro 676share/gemrb/unhardcoded/how/arrow.pro
672share/gemrb/unhardcoded/how/arrowex.pro 677share/gemrb/unhardcoded/how/arrowex.pro
673share/gemrb/unhardcoded/how/arrowflb.pro 678share/gemrb/unhardcoded/how/arrowflb.pro
674share/gemrb/unhardcoded/how/arrowflg.pro 679share/gemrb/unhardcoded/how/arrowflg.pro
675share/gemrb/unhardcoded/how/arrowfli.pro 680share/gemrb/unhardcoded/how/arrowfli.pro
676share/gemrb/unhardcoded/how/arrowflm.pro 681share/gemrb/unhardcoded/how/arrowflm.pro
677share/gemrb/unhardcoded/how/arrowhvy.pro 682share/gemrb/unhardcoded/how/arrowhvy.pro
678share/gemrb/unhardcoded/how/ascorch.pro 683share/gemrb/unhardcoded/how/ascorch.pro
679share/gemrb/unhardcoded/how/astorm.pro 684share/gemrb/unhardcoded/how/astorm.pro
680share/gemrb/unhardcoded/how/asumm1.pro 685share/gemrb/unhardcoded/how/asumm1.pro
681share/gemrb/unhardcoded/how/asumm1h.pro 686share/gemrb/unhardcoded/how/asumm1h.pro
682share/gemrb/unhardcoded/how/asumm1x.pro 687share/gemrb/unhardcoded/how/asumm1x.pro
683share/gemrb/unhardcoded/how/asumm2h.pro 688share/gemrb/unhardcoded/how/asumm2h.pro
684share/gemrb/unhardcoded/how/asumm3h.pro 689share/gemrb/unhardcoded/how/asumm3h.pro
685share/gemrb/unhardcoded/how/avatars.2da 690share/gemrb/unhardcoded/how/avatars.2da
686share/gemrb/unhardcoded/how/avprefr.2da 691share/gemrb/unhardcoded/how/avprefr.2da
687share/gemrb/unhardcoded/how/axe.pro 692share/gemrb/unhardcoded/how/axe.pro
688share/gemrb/unhardcoded/how/axeex.pro 693share/gemrb/unhardcoded/how/axeex.pro
689share/gemrb/unhardcoded/how/bbarrh1.pro 694share/gemrb/unhardcoded/how/bbarrh1.pro
690share/gemrb/unhardcoded/how/bbarrh2.pro 695share/gemrb/unhardcoded/how/bbarrh2.pro
691share/gemrb/unhardcoded/how/bbarrier.pro 696share/gemrb/unhardcoded/how/bbarrier.pro
692share/gemrb/unhardcoded/how/bdeath.pro 697share/gemrb/unhardcoded/how/bdeath.pro
693share/gemrb/unhardcoded/how/blessh.pro 698share/gemrb/unhardcoded/how/blessh.pro
694share/gemrb/unhardcoded/how/bloodclr.2da 699share/gemrb/unhardcoded/how/bloodclr.2da
695share/gemrb/unhardcoded/how/bolt.pro 700share/gemrb/unhardcoded/how/bolt.pro
696share/gemrb/unhardcoded/how/boltex.pro 701share/gemrb/unhardcoded/how/boltex.pro
697share/gemrb/unhardcoded/how/bscloud.pro 702share/gemrb/unhardcoded/how/bscloud.pro
698share/gemrb/unhardcoded/how/bullet.pro 703share/gemrb/unhardcoded/how/bullet.pro
699share/gemrb/unhardcoded/how/bulletex.pro 704share/gemrb/unhardcoded/how/bulletex.pro
700share/gemrb/unhardcoded/how/calllih.pro 705share/gemrb/unhardcoded/how/calllih.pro
701share/gemrb/unhardcoded/how/ccdamah.pro 706share/gemrb/unhardcoded/how/ccdamah.pro
702share/gemrb/unhardcoded/how/ccommah.pro 707share/gemrb/unhardcoded/how/ccommah.pro
703share/gemrb/unhardcoded/how/ccwounh.pro 708share/gemrb/unhardcoded/how/ccwounh.pro
704share/gemrb/unhardcoded/how/cdiseah.pro 709share/gemrb/unhardcoded/how/cdiseah.pro
705share/gemrb/unhardcoded/how/ceelem1.pro 710share/gemrb/unhardcoded/how/ceelem1.pro
706share/gemrb/unhardcoded/how/ceelemh.pro 711share/gemrb/unhardcoded/how/ceelemh.pro
707share/gemrb/unhardcoded/how/ceelemx.pro 712share/gemrb/unhardcoded/how/ceelemx.pro
708share/gemrb/unhardcoded/how/cfelem1.pro 713share/gemrb/unhardcoded/how/cfelem1.pro
709share/gemrb/unhardcoded/how/cfelemh.pro 714share/gemrb/unhardcoded/how/cfelemh.pro
710share/gemrb/unhardcoded/how/cfelemx.pro 715share/gemrb/unhardcoded/how/cfelemx.pro
 716share/gemrb/unhardcoded/how/cfelemx.vvc
711share/gemrb/unhardcoded/how/cfog.pro 717share/gemrb/unhardcoded/how/cfog.pro
712share/gemrb/unhardcoded/how/cgraceh.pro 718share/gemrb/unhardcoded/how/cgraceh.pro
713share/gemrb/unhardcoded/how/chant.pro 719share/gemrb/unhardcoded/how/chant.pro
714share/gemrb/unhardcoded/how/chromorb.pro 720share/gemrb/unhardcoded/how/chromorb.pro
715share/gemrb/unhardcoded/how/clabdrui.2da 721share/gemrb/unhardcoded/how/clabdrui.2da
716share/gemrb/unhardcoded/how/clabpala.2da 722share/gemrb/unhardcoded/how/clabpala.2da
717share/gemrb/unhardcoded/how/clabrngr.2da 723share/gemrb/unhardcoded/how/clabrngr.2da
718share/gemrb/unhardcoded/how/classes.2da 724share/gemrb/unhardcoded/how/classes.2da
719share/gemrb/unhardcoded/how/cldamah.pro 725share/gemrb/unhardcoded/how/cldamah.pro
720share/gemrb/unhardcoded/how/cloud.pro 726share/gemrb/unhardcoded/how/cloud.pro
721share/gemrb/unhardcoded/how/cloudb.pro 727share/gemrb/unhardcoded/how/cloudb.pro
722share/gemrb/unhardcoded/how/cloudbh.pro 728share/gemrb/unhardcoded/how/cloudbh.pro
723share/gemrb/unhardcoded/how/cloudkil.pro 729share/gemrb/unhardcoded/how/cloudkil.pro
724share/gemrb/unhardcoded/how/cloudks.pro 730share/gemrb/unhardcoded/how/cloudks.pro
725share/gemrb/unhardcoded/how/clowncol.2da 731share/gemrb/unhardcoded/how/clowncol.2da
726share/gemrb/unhardcoded/how/clskills.2da 732share/gemrb/unhardcoded/how/clskills.2da
727share/gemrb/unhardcoded/how/clwounh.pro 733share/gemrb/unhardcoded/how/clwounh.pro
728share/gemrb/unhardcoded/how/cmdamah.pro 734share/gemrb/unhardcoded/how/cmdamah.pro
729share/gemrb/unhardcoded/how/cmwounh.pro 735share/gemrb/unhardcoded/how/cmwounh.pro
730share/gemrb/unhardcoded/how/cobones.pro 736share/gemrb/unhardcoded/how/cobones.pro
731share/gemrb/unhardcoded/how/cobonh1.pro 737share/gemrb/unhardcoded/how/cobonh1.pro
732share/gemrb/unhardcoded/how/cobonh2.pro 738share/gemrb/unhardcoded/how/cobonh2.pro
733share/gemrb/unhardcoded/how/cocold.pro 739share/gemrb/unhardcoded/how/cocold.pro
734share/gemrb/unhardcoded/how/cocoldh.pro 740share/gemrb/unhardcoded/how/cocoldh.pro
735share/gemrb/unhardcoded/how/cofearc.vvc 741share/gemrb/unhardcoded/how/cofearc.vvc
736share/gemrb/unhardcoded/how/cofire.pro 742share/gemrb/unhardcoded/how/cofire.pro
737share/gemrb/unhardcoded/how/coldh.pro 743share/gemrb/unhardcoded/how/coldh.pro
738share/gemrb/unhardcoded/how/colrspry.pro 744share/gemrb/unhardcoded/how/colrspry.pro
739share/gemrb/unhardcoded/how/confush.pro 745share/gemrb/unhardcoded/how/confush.pro
740share/gemrb/unhardcoded/how/confusp.pro 746share/gemrb/unhardcoded/how/confusp.pro
741share/gemrb/unhardcoded/how/confusw.pro 747share/gemrb/unhardcoded/how/confusw.pro
742share/gemrb/unhardcoded/how/conjuh.pro 748share/gemrb/unhardcoded/how/conjuh.pro
743share/gemrb/unhardcoded/how/conjut.pro 749share/gemrb/unhardcoded/how/conjut.pro
744share/gemrb/unhardcoded/how/copest.pro 750share/gemrb/unhardcoded/how/copest.pro
745share/gemrb/unhardcoded/how/cry150.pro 751share/gemrb/unhardcoded/how/cry150.pro
746share/gemrb/unhardcoded/how/cry200.pro 752share/gemrb/unhardcoded/how/cry200.pro
747share/gemrb/unhardcoded/how/cry225.pro 753share/gemrb/unhardcoded/how/cry225.pro
748share/gemrb/unhardcoded/how/cry250.pro 754share/gemrb/unhardcoded/how/cry250.pro
749share/gemrb/unhardcoded/how/cry500np.pro 755share/gemrb/unhardcoded/how/cry500np.pro
750share/gemrb/unhardcoded/how/csdamah.pro 756share/gemrb/unhardcoded/how/csdamah.pro
751share/gemrb/unhardcoded/how/cstrenh.pro 757share/gemrb/unhardcoded/how/cstrenh.pro
752share/gemrb/unhardcoded/how/cswounh.pro 758share/gemrb/unhardcoded/how/cswounh.pro
753share/gemrb/unhardcoded/how/curseh.pro 759share/gemrb/unhardcoded/how/curseh.pro
754share/gemrb/unhardcoded/how/cwelem1.pro 760share/gemrb/unhardcoded/how/cwelem1.pro
755share/gemrb/unhardcoded/how/cwelemh.pro 761share/gemrb/unhardcoded/how/cwelemh.pro
756share/gemrb/unhardcoded/how/cwelemx.pro 762share/gemrb/unhardcoded/how/cwelemx.pro
757share/gemrb/unhardcoded/how/cynicism.2da 763share/gemrb/unhardcoded/how/cynicism.2da
758share/gemrb/unhardcoded/how/dagger.pro 764share/gemrb/unhardcoded/how/dagger.pro
759share/gemrb/unhardcoded/how/daggerex.pro 765share/gemrb/unhardcoded/how/daggerex.pro
760share/gemrb/unhardcoded/how/damage.2da 766share/gemrb/unhardcoded/how/damage.2da
761share/gemrb/unhardcoded/how/dart.pro 767share/gemrb/unhardcoded/how/dart.pro
762share/gemrb/unhardcoded/how/dartex.pro 768share/gemrb/unhardcoded/how/dartex.pro
763share/gemrb/unhardcoded/how/dbreath.pro 769share/gemrb/unhardcoded/how/dbreath.pro
764share/gemrb/unhardcoded/how/ddeath.pro 770share/gemrb/unhardcoded/how/ddeath.pro
765share/gemrb/unhardcoded/how/ddeath2.pro 771share/gemrb/unhardcoded/how/ddeath2.pro
766share/gemrb/unhardcoded/how/ddoorh.pro 772share/gemrb/unhardcoded/how/ddoorh.pro
767share/gemrb/unhardcoded/how/defsound.2da 773share/gemrb/unhardcoded/how/defsound.2da
768share/gemrb/unhardcoded/how/destruh.pro 774share/gemrb/unhardcoded/how/destruh.pro
769share/gemrb/unhardcoded/how/dfog.pro 775share/gemrb/unhardcoded/how/dfog.pro
770share/gemrb/unhardcoded/how/difflvls.2da 776share/gemrb/unhardcoded/how/difflvls.2da
771share/gemrb/unhardcoded/how/disint.pro 777share/gemrb/unhardcoded/how/disint.pro
772share/gemrb/unhardcoded/how/disinth.pro 778share/gemrb/unhardcoded/how/disinth.pro
773share/gemrb/unhardcoded/how/dispel.pro 779share/gemrb/unhardcoded/how/dispel.pro
774share/gemrb/unhardcoded/how/divinh.pro 780share/gemrb/unhardcoded/how/divinh.pro
775share/gemrb/unhardcoded/how/divint.pro 781share/gemrb/unhardcoded/how/divint.pro
776share/gemrb/unhardcoded/how/dsclass.2da 782share/gemrb/unhardcoded/how/dsclass.2da
777share/gemrb/unhardcoded/how/dspell.pro 783share/gemrb/unhardcoded/how/dspell.pro
778share/gemrb/unhardcoded/how/dspellh.pro 784share/gemrb/unhardcoded/how/dspellh.pro
779share/gemrb/unhardcoded/how/dsrace.2da 785share/gemrb/unhardcoded/how/dsrace.2da
780share/gemrb/unhardcoded/how/dstable.2da 786share/gemrb/unhardcoded/how/dstable.2da
781share/gemrb/unhardcoded/how/dualclas.2da 787share/gemrb/unhardcoded/how/dualclas.2da
782share/gemrb/unhardcoded/how/effects.ids 788share/gemrb/unhardcoded/how/effects.ids
783share/gemrb/unhardcoded/how/electrh.pro 789share/gemrb/unhardcoded/how/electrh.pro
784share/gemrb/unhardcoded/how/emotion.pro 790share/gemrb/unhardcoded/how/emotion.pro
785share/gemrb/unhardcoded/how/enchah.pro 791share/gemrb/unhardcoded/how/enchah.pro
786share/gemrb/unhardcoded/how/enchannp.pro 792share/gemrb/unhardcoded/how/enchannp.pro
787share/gemrb/unhardcoded/how/enchat.pro 793share/gemrb/unhardcoded/how/enchat.pro
788share/gemrb/unhardcoded/how/entangle.pro 794share/gemrb/unhardcoded/how/entangle.pro
789share/gemrb/unhardcoded/how/equake.pro 795share/gemrb/unhardcoded/how/equake.pro
790share/gemrb/unhardcoded/how/exaltah.pro 796share/gemrb/unhardcoded/how/exaltah.pro
791share/gemrb/unhardcoded/how/factioh.pro 797share/gemrb/unhardcoded/how/factioh.pro
792share/gemrb/unhardcoded/how/fatiimm.spl 798share/gemrb/unhardcoded/how/fatiimm.spl
793share/gemrb/unhardcoded/how/findtrap.pro 799share/gemrb/unhardcoded/how/findtrap.pro
794share/gemrb/unhardcoded/how/fireball.pro 800share/gemrb/unhardcoded/how/fireball.pro
795share/gemrb/unhardcoded/how/fireblic.pro 801share/gemrb/unhardcoded/how/fireblic.pro
796share/gemrb/unhardcoded/how/firebolt.pro 802share/gemrb/unhardcoded/how/firebolt.pro
797share/gemrb/unhardcoded/how/firebtbl.pro 803share/gemrb/unhardcoded/how/firebtbl.pro
798share/gemrb/unhardcoded/how/fireh.pro 804share/gemrb/unhardcoded/how/fireh.pro
799share/gemrb/unhardcoded/how/firestor.pro 805share/gemrb/unhardcoded/how/firestor.pro
800share/gemrb/unhardcoded/how/fistweap.2da 806share/gemrb/unhardcoded/how/fistweap.2da
801share/gemrb/unhardcoded/how/fodeath.pro 807share/gemrb/unhardcoded/how/fodeath.pro
802share/gemrb/unhardcoded/how/fonts.2da 808share/gemrb/unhardcoded/how/fonts.2da
803share/gemrb/unhardcoded/how/formatio.2da 809share/gemrb/unhardcoded/how/formatio.2da
804share/gemrb/unhardcoded/how/fseed.pro 810share/gemrb/unhardcoded/how/fseed.pro
805share/gemrb/unhardcoded/how/fstrikh.pro 811share/gemrb/unhardcoded/how/fstrikh.pro
806share/gemrb/unhardcoded/how/gametime.2da 812share/gemrb/unhardcoded/how/gametime.2da
807share/gemrb/unhardcoded/how/garmorh.pro 813share/gemrb/unhardcoded/how/garmorh.pro
808share/gemrb/unhardcoded/how/gaze.pro 814share/gemrb/unhardcoded/how/gaze.pro
809share/gemrb/unhardcoded/how/gemprjtl.ids 815share/gemrb/unhardcoded/how/gemprjtl.ids
810share/gemrb/unhardcoded/how/gemrb.ini 816share/gemrb/unhardcoded/how/gemrb.ini
811share/gemrb/unhardcoded/how/gender.2da 817share/gemrb/unhardcoded/how/gender.2da
812share/gemrb/unhardcoded/how/golcloud.pro 818share/gemrb/unhardcoded/how/golcloud.pro
813share/gemrb/unhardcoded/how/grease.pro 819share/gemrb/unhardcoded/how/grease.pro
814share/gemrb/unhardcoded/how/gshout.pro 820share/gemrb/unhardcoded/how/gshout.pro
815share/gemrb/unhardcoded/how/gsolac1.vvc 821share/gemrb/unhardcoded/how/gsolac1.vvc
816share/gemrb/unhardcoded/how/guibtact.2da 822share/gemrb/unhardcoded/how/guibtact.2da
817share/gemrb/unhardcoded/how/guils.chu 823share/gemrb/unhardcoded/how/guils.chu
818share/gemrb/unhardcoded/how/harmh.pro 824share/gemrb/unhardcoded/how/harmh.pro
819share/gemrb/unhardcoded/how/harmony.pro 825share/gemrb/unhardcoded/how/harmony.pro
820share/gemrb/unhardcoded/how/haterace.2da 826share/gemrb/unhardcoded/how/haterace.2da
821share/gemrb/unhardcoded/how/healh.pro 827share/gemrb/unhardcoded/how/healh.pro
822share/gemrb/unhardcoded/how/hmighth.pro 828share/gemrb/unhardcoded/how/hmighth.pro
823share/gemrb/unhardcoded/how/hold.pro 829share/gemrb/unhardcoded/how/hold.pro
824share/gemrb/unhardcoded/how/hsmite.pro 830share/gemrb/unhardcoded/how/hsmite.pro
825share/gemrb/unhardcoded/how/hword.pro 831share/gemrb/unhardcoded/how/hword.pro
826share/gemrb/unhardcoded/how/icelance.pro 832share/gemrb/unhardcoded/how/icelance.pro
827share/gemrb/unhardcoded/how/icestorm.pro 833share/gemrb/unhardcoded/how/icestorm.pro
828share/gemrb/unhardcoded/how/icloud.pro 834share/gemrb/unhardcoded/how/icloud.pro
829share/gemrb/unhardcoded/how/iclouda.pro 835share/gemrb/unhardcoded/how/iclouda.pro
830share/gemrb/unhardcoded/how/icloudb.pro 836share/gemrb/unhardcoded/how/icloudb.pro
831share/gemrb/unhardcoded/how/illush.pro 837share/gemrb/unhardcoded/how/illush.pro
832share/gemrb/unhardcoded/how/illust.pro 838share/gemrb/unhardcoded/how/illust.pro
833share/gemrb/unhardcoded/how/inarea.pro 839share/gemrb/unhardcoded/how/inarea.pro
834share/gemrb/unhardcoded/how/inareanp.pro 840share/gemrb/unhardcoded/how/inareanp.pro
835share/gemrb/unhardcoded/how/inareapa.pro 841share/gemrb/unhardcoded/how/inareapa.pro
836share/gemrb/unhardcoded/how/inareasm.pro 842share/gemrb/unhardcoded/how/inareasm.pro
837share/gemrb/unhardcoded/how/invoch.pro 843share/gemrb/unhardcoded/how/invoch.pro
838share/gemrb/unhardcoded/how/invoct.pro 844share/gemrb/unhardcoded/how/invoct.pro
839share/gemrb/unhardcoded/how/iplague.pro 845share/gemrb/unhardcoded/how/iplague.pro
840share/gemrb/unhardcoded/how/island00.2da 846share/gemrb/unhardcoded/how/island00.2da
841share/gemrb/unhardcoded/how/itemsnd.2da 847share/gemrb/unhardcoded/how/itemsnd.2da
842share/gemrb/unhardcoded/how/itemtype.2da 848share/gemrb/unhardcoded/how/itemtype.2da
843share/gemrb/unhardcoded/how/itemuse.2da 849share/gemrb/unhardcoded/how/itemuse.2da
844share/gemrb/unhardcoded/how/kitlist.2da 850share/gemrb/unhardcoded/how/kitlist.2da
845share/gemrb/unhardcoded/how/lightb.pro 851share/gemrb/unhardcoded/how/lightb.pro
846share/gemrb/unhardcoded/how/lightbnb.pro 852share/gemrb/unhardcoded/how/lightbnb.pro
847share/gemrb/unhardcoded/how/lightsto.pro 853share/gemrb/unhardcoded/how/lightsto.pro
848share/gemrb/unhardcoded/how/lodisr.pro 854share/gemrb/unhardcoded/how/lodisr.pro
849share/gemrb/unhardcoded/how/magesch.2da 855share/gemrb/unhardcoded/how/magesch.2da
850share/gemrb/unhardcoded/how/magicmis.pro 856share/gemrb/unhardcoded/how/magicmis.pro
851share/gemrb/unhardcoded/how/malison.pro 857share/gemrb/unhardcoded/how/malison.pro
852share/gemrb/unhardcoded/how/mfmiss.pro 858share/gemrb/unhardcoded/how/mfmiss.pro
853share/gemrb/unhardcoded/how/mfmiss2.pro 859share/gemrb/unhardcoded/how/mfmiss2.pro
854share/gemrb/unhardcoded/how/mfmissh.pro 860share/gemrb/unhardcoded/how/mfmissh.pro
855share/gemrb/unhardcoded/how/mgoinvc.vvc 861share/gemrb/unhardcoded/how/mgoinvc.vvc
856share/gemrb/unhardcoded/how/mmagich.pro 862share/gemrb/unhardcoded/how/mmagich.pro
857share/gemrb/unhardcoded/how/mmissile.pro 863share/gemrb/unhardcoded/how/mmissile.pro
858share/gemrb/unhardcoded/how/moelda.pro 864share/gemrb/unhardcoded/how/moelda.pro
859share/gemrb/unhardcoded/how/mrage.pro 865share/gemrb/unhardcoded/how/mrage.pro
860share/gemrb/unhardcoded/how/mrageh.pro 866share/gemrb/unhardcoded/how/mrageh.pro
861share/gemrb/unhardcoded/how/mspore.pro 867share/gemrb/unhardcoded/how/mspore.pro
862share/gemrb/unhardcoded/how/msumm1.pro 868share/gemrb/unhardcoded/how/msumm1.pro
863share/gemrb/unhardcoded/how/msumm1h.pro 869share/gemrb/unhardcoded/how/msumm1h.pro
864share/gemrb/unhardcoded/how/msumm1x.pro 870share/gemrb/unhardcoded/how/msumm1x.pro
865share/gemrb/unhardcoded/how/msumm1x.vvc 871share/gemrb/unhardcoded/how/msumm1x.vvc
866share/gemrb/unhardcoded/how/msumm2h.pro 872share/gemrb/unhardcoded/how/msumm2h.pro
867share/gemrb/unhardcoded/how/msumm3h.pro 873share/gemrb/unhardcoded/how/msumm3h.pro
868share/gemrb/unhardcoded/how/msumm4h.pro 874share/gemrb/unhardcoded/how/msumm4h.pro
869share/gemrb/unhardcoded/how/msumm5h.pro 875share/gemrb/unhardcoded/how/msumm5h.pro
870share/gemrb/unhardcoded/how/msumm6h.pro 876share/gemrb/unhardcoded/how/msumm6h.pro
871share/gemrb/unhardcoded/how/msumm7h.pro 877share/gemrb/unhardcoded/how/msumm7h.pro
872share/gemrb/unhardcoded/how/mswordh.pro 878share/gemrb/unhardcoded/how/mswordh.pro
873share/gemrb/unhardcoded/how/mtouchh.pro 879share/gemrb/unhardcoded/how/mtouchh.pro
874share/gemrb/unhardcoded/how/necroh.pro 880share/gemrb/unhardcoded/how/necroh.pro
875share/gemrb/unhardcoded/how/necrot.pro 881share/gemrb/unhardcoded/how/necrot.pro
876share/gemrb/unhardcoded/how/npoisoh.pro 882share/gemrb/unhardcoded/how/npoisoh.pro
877share/gemrb/unhardcoded/how/ofsphe.pro 883share/gemrb/unhardcoded/how/ofsphe.pro
878share/gemrb/unhardcoded/how/orsphec.vvc 884share/gemrb/unhardcoded/how/orsphec.vvc
879share/gemrb/unhardcoded/how/overlay.2da 885share/gemrb/unhardcoded/how/overlay.2da
880share/gemrb/unhardcoded/how/paralh.pro 886share/gemrb/unhardcoded/how/paralh.pro
881share/gemrb/unhardcoded/how/pathfind.2da 887share/gemrb/unhardcoded/how/pathfind.2da
882share/gemrb/unhardcoded/how/pdolls.2da 888share/gemrb/unhardcoded/how/pdolls.2da
883share/gemrb/unhardcoded/how/pfire.pro 889share/gemrb/unhardcoded/how/pfire.pro
884share/gemrb/unhardcoded/how/pfnmisc.vvc 890share/gemrb/unhardcoded/how/pfnmisc.vvc
885share/gemrb/unhardcoded/how/pictures.2da 891share/gemrb/unhardcoded/how/pictures.2da
886share/gemrb/unhardcoded/how/poisimm.spl 892share/gemrb/unhardcoded/how/poisimm.spl
887share/gemrb/unhardcoded/how/poisonh.pro 893share/gemrb/unhardcoded/how/poisonh.pro
888share/gemrb/unhardcoded/how/pomab.2da 894share/gemrb/unhardcoded/how/pomab.2da
889share/gemrb/unhardcoded/how/portalh.pro 895share/gemrb/unhardcoded/how/portalh.pro
890share/gemrb/unhardcoded/how/prayer.pro 896share/gemrb/unhardcoded/how/prayer.pro
891share/gemrb/unhardcoded/how/prayerh.pro 897share/gemrb/unhardcoded/how/prayerh.pro
892share/gemrb/unhardcoded/how/proftype.2da 898share/gemrb/unhardcoded/how/proftype.2da
893share/gemrb/unhardcoded/how/protevil.pro 899share/gemrb/unhardcoded/how/protevil.pro
894share/gemrb/unhardcoded/how/prtl_cl.pro 900share/gemrb/unhardcoded/how/prtl_cl.pro
895share/gemrb/unhardcoded/how/prtl_cl.spl 901share/gemrb/unhardcoded/how/prtl_cl.spl
896share/gemrb/unhardcoded/how/prtl_op.pro 902share/gemrb/unhardcoded/how/prtl_op.pro
897share/gemrb/unhardcoded/how/prtl_op.spl 903share/gemrb/unhardcoded/how/prtl_op.spl
898share/gemrb/unhardcoded/how/pspray.pro 904share/gemrb/unhardcoded/how/pspray.pro
899share/gemrb/unhardcoded/how/pwkill.pro 905share/gemrb/unhardcoded/how/pwkill.pro
900share/gemrb/unhardcoded/how/pwsileh.pro 906share/gemrb/unhardcoded/how/pwsileh.pro
901share/gemrb/unhardcoded/how/pwstun.pro 907share/gemrb/unhardcoded/how/pwstun.pro
902share/gemrb/unhardcoded/how/pwstunh.pro 908share/gemrb/unhardcoded/how/pwstunh.pro
903share/gemrb/unhardcoded/how/qslots.2da 909share/gemrb/unhardcoded/how/qslots.2da
904share/gemrb/unhardcoded/how/races.2da 910share/gemrb/unhardcoded/how/races.2da
905share/gemrb/unhardcoded/how/racethac.2da 911share/gemrb/unhardcoded/how/racethac.2da
906share/gemrb/unhardcoded/how/rad100.pro 912share/gemrb/unhardcoded/how/rad100.pro
907share/gemrb/unhardcoded/how/rad250.pro 913share/gemrb/unhardcoded/how/rad250.pro
908share/gemrb/unhardcoded/how/randitem.2da 914share/gemrb/unhardcoded/how/randitem.2da
909share/gemrb/unhardcoded/how/rdeadh.pro 915share/gemrb/unhardcoded/how/rdeadh.pro
910share/gemrb/unhardcoded/how/recitah.pro 916share/gemrb/unhardcoded/how/recitah.pro
911share/gemrb/unhardcoded/how/resurrh.pro 917share/gemrb/unhardcoded/how/resurrh.pro
912share/gemrb/unhardcoded/how/rng450.pro 918share/gemrb/unhardcoded/how/rng450.pro
913share/gemrb/unhardcoded/how/rparalh.pro 919share/gemrb/unhardcoded/how/rparalh.pro
914share/gemrb/unhardcoded/how/rwotfag.pro 920share/gemrb/unhardcoded/how/rwotfag.pro
915share/gemrb/unhardcoded/how/rwotfah.pro 921share/gemrb/unhardcoded/how/rwotfah.pro
916share/gemrb/unhardcoded/how/sarmorh.pro 922share/gemrb/unhardcoded/how/sarmorh.pro
917share/gemrb/unhardcoded/how/savegame.2da 923share/gemrb/unhardcoded/how/savegame.2da
918share/gemrb/unhardcoded/how/scharge.pro 924share/gemrb/unhardcoded/how/scharge.pro
919share/gemrb/unhardcoded/how/scharge.spl 925share/gemrb/unhardcoded/how/scharge.spl
920share/gemrb/unhardcoded/how/schargh.pro 926share/gemrb/unhardcoded/how/schargh.pro
921share/gemrb/unhardcoded/how/script.2da 927share/gemrb/unhardcoded/how/script.2da
922share/gemrb/unhardcoded/how/seater.pro 928share/gemrb/unhardcoded/how/seater.pro
923share/gemrb/unhardcoded/how/seaterh.pro 929share/gemrb/unhardcoded/how/seaterh.pro
924share/gemrb/unhardcoded/how/seyesc1.vvc 930share/gemrb/unhardcoded/how/seyesc1.vvc
 931share/gemrb/unhardcoded/how/seyesc2.vvc
925share/gemrb/unhardcoded/how/sgrowth.pro 932share/gemrb/unhardcoded/how/sgrowth.pro
926share/gemrb/unhardcoded/how/shout.pro 933share/gemrb/unhardcoded/how/shout.pro
927share/gemrb/unhardcoded/how/shroud.pro 934share/gemrb/unhardcoded/how/shroud.pro
928share/gemrb/unhardcoded/how/shtable.2da 935share/gemrb/unhardcoded/how/shtable.2da
929share/gemrb/unhardcoded/how/skills.2da 936share/gemrb/unhardcoded/how/skills.2da
930share/gemrb/unhardcoded/how/sleep.pro 937share/gemrb/unhardcoded/how/sleep.pro
931share/gemrb/unhardcoded/how/slivinh.pro 938share/gemrb/unhardcoded/how/slivinh.pro
932share/gemrb/unhardcoded/how/slottype.2da 939share/gemrb/unhardcoded/how/slottype.2da
933share/gemrb/unhardcoded/how/soflamc.vvc 940share/gemrb/unhardcoded/how/soflamc.vvc
934share/gemrb/unhardcoded/how/soflamh.pro 941share/gemrb/unhardcoded/how/soflamh.pro
935share/gemrb/unhardcoded/how/sohope.pro 942share/gemrb/unhardcoded/how/sohope.pro
936share/gemrb/unhardcoded/how/solatc1.vvc 943share/gemrb/unhardcoded/how/solatc1.vvc
937share/gemrb/unhardcoded/how/sooneh.pro 944share/gemrb/unhardcoded/how/sooneh.pro
938share/gemrb/unhardcoded/how/sopain.pro 945share/gemrb/unhardcoded/how/sopain.pro
939share/gemrb/unhardcoded/how/sparbknp.pro 946share/gemrb/unhardcoded/how/sparbknp.pro
940share/gemrb/unhardcoded/how/sparbkpa.pro 947share/gemrb/unhardcoded/how/sparbkpa.pro
941share/gemrb/unhardcoded/how/sparblnp.pro 948share/gemrb/unhardcoded/how/sparblnp.pro
942share/gemrb/unhardcoded/how/sparblpa.pro 949share/gemrb/unhardcoded/how/sparblpa.pro
943share/gemrb/unhardcoded/how/sparchnp.pro 950share/gemrb/unhardcoded/how/sparchnp.pro
944share/gemrb/unhardcoded/how/sparchpa.pro 951share/gemrb/unhardcoded/how/sparchpa.pro
945share/gemrb/unhardcoded/how/spargonp.pro 952share/gemrb/unhardcoded/how/spargonp.pro
946share/gemrb/unhardcoded/how/spargopa.pro 953share/gemrb/unhardcoded/how/spargopa.pro
947share/gemrb/unhardcoded/how/spargrnp.pro 954share/gemrb/unhardcoded/how/spargrnp.pro
948share/gemrb/unhardcoded/how/spargrpa.pro 955share/gemrb/unhardcoded/how/spargrpa.pro
949share/gemrb/unhardcoded/how/sparicnp.pro 956share/gemrb/unhardcoded/how/sparicnp.pro
950share/gemrb/unhardcoded/how/sparicpa.pro 957share/gemrb/unhardcoded/how/sparicpa.pro
951share/gemrb/unhardcoded/how/sparklbk.pro 958share/gemrb/unhardcoded/how/sparklbk.pro
952share/gemrb/unhardcoded/how/sparklbl.pro 959share/gemrb/unhardcoded/how/sparklbl.pro
953share/gemrb/unhardcoded/how/sparklch.pro 960share/gemrb/unhardcoded/how/sparklch.pro
954share/gemrb/unhardcoded/how/sparklgo.pro 961share/gemrb/unhardcoded/how/sparklgo.pro
955share/gemrb/unhardcoded/how/sparklgr.pro 962share/gemrb/unhardcoded/how/sparklgr.pro
956share/gemrb/unhardcoded/how/sparklic.pro 963share/gemrb/unhardcoded/how/sparklic.pro
957share/gemrb/unhardcoded/how/sparklma.pro 964share/gemrb/unhardcoded/how/sparklma.pro
958share/gemrb/unhardcoded/how/sparklor.pro 965share/gemrb/unhardcoded/how/sparklor.pro
959share/gemrb/unhardcoded/how/sparklpu.pro 966share/gemrb/unhardcoded/how/sparklpu.pro
960share/gemrb/unhardcoded/how/sparklre.pro 967share/gemrb/unhardcoded/how/sparklre.pro
961share/gemrb/unhardcoded/how/sparklst.pro 968share/gemrb/unhardcoded/how/sparklst.pro
962share/gemrb/unhardcoded/how/sparmanp.pro 969share/gemrb/unhardcoded/how/sparmanp.pro
963share/gemrb/unhardcoded/how/sparmapa.pro 970share/gemrb/unhardcoded/how/sparmapa.pro
964share/gemrb/unhardcoded/how/sparornp.pro 971share/gemrb/unhardcoded/how/sparornp.pro
965share/gemrb/unhardcoded/how/sparorpa.pro 972share/gemrb/unhardcoded/how/sparorpa.pro
966share/gemrb/unhardcoded/how/sparpunp.pro 973share/gemrb/unhardcoded/how/sparpunp.pro
967share/gemrb/unhardcoded/how/sparpupa.pro 974share/gemrb/unhardcoded/how/sparpupa.pro
968share/gemrb/unhardcoded/how/sparrenp.pro 975share/gemrb/unhardcoded/how/sparrenp.pro
969share/gemrb/unhardcoded/how/sparrepa.pro 976share/gemrb/unhardcoded/how/sparrepa.pro
970share/gemrb/unhardcoded/how/sparstnp.pro 977share/gemrb/unhardcoded/how/sparstnp.pro
971share/gemrb/unhardcoded/how/sparstpa.pro 978share/gemrb/unhardcoded/how/sparstpa.pro
972share/gemrb/unhardcoded/how/spear.pro 979share/gemrb/unhardcoded/how/spear.pro
973share/gemrb/unhardcoded/how/spearex.pro 980share/gemrb/unhardcoded/how/spearex.pro
974share/gemrb/unhardcoded/how/spfirebl.pro 981share/gemrb/unhardcoded/how/spfirebl.pro
975share/gemrb/unhardcoded/how/spklarbk.pro 982share/gemrb/unhardcoded/how/spklarbk.pro
976share/gemrb/unhardcoded/how/spklarbl.pro 983share/gemrb/unhardcoded/how/spklarbl.pro
977share/gemrb/unhardcoded/how/spklarch.pro 984share/gemrb/unhardcoded/how/spklarch.pro
978share/gemrb/unhardcoded/how/spklargo.pro 985share/gemrb/unhardcoded/how/spklargo.pro
979share/gemrb/unhardcoded/how/spklargr.pro 986share/gemrb/unhardcoded/how/spklargr.pro
980share/gemrb/unhardcoded/how/spklaric.pro 987share/gemrb/unhardcoded/how/spklaric.pro
981share/gemrb/unhardcoded/how/spklarma.pro 988share/gemrb/unhardcoded/how/spklarma.pro
982share/gemrb/unhardcoded/how/spklaror.pro 989share/gemrb/unhardcoded/how/spklaror.pro
983share/gemrb/unhardcoded/how/spklarpu.pro 990share/gemrb/unhardcoded/how/spklarpu.pro
984share/gemrb/unhardcoded/how/spklarre.pro 991share/gemrb/unhardcoded/how/spklarre.pro
985share/gemrb/unhardcoded/how/spklarst.pro 992share/gemrb/unhardcoded/how/spklarst.pro
 993share/gemrb/unhardcoded/how/splbrdkn.2da
986share/gemrb/unhardcoded/how/splprot.2da 994share/gemrb/unhardcoded/how/splprot.2da
987share/gemrb/unhardcoded/how/splspec.2da 995share/gemrb/unhardcoded/how/splspec.2da
988share/gemrb/unhardcoded/how/spoisoh.pro 996share/gemrb/unhardcoded/how/spoisoh.pro
989share/gemrb/unhardcoded/how/spscorch.pro 997share/gemrb/unhardcoded/how/spscorch.pro
990share/gemrb/unhardcoded/how/spscoric.pro 998share/gemrb/unhardcoded/how/spscoric.pro
991share/gemrb/unhardcoded/how/spwrath.pro 999share/gemrb/unhardcoded/how/spwrath.pro
992share/gemrb/unhardcoded/how/sshellc.vvc 1000share/gemrb/unhardcoded/how/sshellc.vvc
993share/gemrb/unhardcoded/how/ssorbh.pro 1001share/gemrb/unhardcoded/how/ssorbh.pro
994share/gemrb/unhardcoded/how/ssswarm.pro 1002share/gemrb/unhardcoded/how/ssswarm.pro
995share/gemrb/unhardcoded/how/sstone.pro 1003share/gemrb/unhardcoded/how/sstone.pro
996share/gemrb/unhardcoded/how/sstoneh.pro 1004share/gemrb/unhardcoded/how/sstoneh.pro
 1005share/gemrb/unhardcoded/how/stances.2da
997share/gemrb/unhardcoded/how/start.2da 1006share/gemrb/unhardcoded/how/start.2da
998share/gemrb/unhardcoded/how/stone.pro 1007share/gemrb/unhardcoded/how/stone.pro
999share/gemrb/unhardcoded/how/strengh.pro 1008share/gemrb/unhardcoded/how/strengh.pro
1000share/gemrb/unhardcoded/how/strings.2da 1009share/gemrb/unhardcoded/how/strings.2da
1001share/gemrb/unhardcoded/how/suffoc.pro 1010share/gemrb/unhardcoded/how/suffoc.pro
1002share/gemrb/unhardcoded/how/suffoch.pro 1011share/gemrb/unhardcoded/how/suffoch.pro
1003share/gemrb/unhardcoded/how/sunfire.pro 1012share/gemrb/unhardcoded/how/sunfire.pro
1004share/gemrb/unhardcoded/how/sunray.pro 1013share/gemrb/unhardcoded/how/sunray.pro
1005share/gemrb/unhardcoded/how/sunscoh.pro 1014share/gemrb/unhardcoded/how/sunscoh.pro
1006share/gemrb/unhardcoded/how/swave.pro 1015share/gemrb/unhardcoded/how/swave.pro
1007share/gemrb/unhardcoded/how/swaveh.pro 1016share/gemrb/unhardcoded/how/swaveh.pro
1008share/gemrb/unhardcoded/how/trapglyp.pro 1017share/gemrb/unhardcoded/how/trapglyp.pro
1009share/gemrb/unhardcoded/how/trapskul.pro 1018share/gemrb/unhardcoded/how/trapskul.pro
1010share/gemrb/unhardcoded/how/tspray.pro 1019share/gemrb/unhardcoded/how/tspray.pro
1011share/gemrb/unhardcoded/how/turn.spl 1020share/gemrb/unhardcoded/how/turn.spl
1012share/gemrb/unhardcoded/how/ublight.pro 1021share/gemrb/unhardcoded/how/ublight.pro
1013share/gemrb/unhardcoded/how/uward.pro 1022share/gemrb/unhardcoded/how/uward.pro
1014share/gemrb/unhardcoded/how/uwardh.pro 1023share/gemrb/unhardcoded/how/uwardh.pro
1015share/gemrb/unhardcoded/how/vcremap.2da 1024share/gemrb/unhardcoded/how/vcremap.2da
1016share/gemrb/unhardcoded/how/vspherh.pro 1025share/gemrb/unhardcoded/how/vspherh.pro
1017share/gemrb/unhardcoded/how/walksnd.2da 1026share/gemrb/unhardcoded/how/walksnd.2da
1018share/gemrb/unhardcoded/how/wdeath1.pro 1027share/gemrb/unhardcoded/how/wdeath1.pro
1019share/gemrb/unhardcoded/how/wdeath2.pro 1028share/gemrb/unhardcoded/how/wdeath2.pro
1020share/gemrb/unhardcoded/how/weapprof.2da 1029share/gemrb/unhardcoded/how/weapprof.2da
1021share/gemrb/unhardcoded/how/web.pro 1030share/gemrb/unhardcoded/how/web.pro
1022share/gemrb/unhardcoded/how/whirlw.pro 1031share/gemrb/unhardcoded/how/whirlw.pro
1023share/gemrb/unhardcoded/how/womoon.pro 1032share/gemrb/unhardcoded/how/womoon.pro
1024share/gemrb/unhardcoded/how/wowisp.pro 1033share/gemrb/unhardcoded/how/wowisp.pro
1025share/gemrb/unhardcoded/how/wvdeath.pro 1034share/gemrb/unhardcoded/how/wvdeath.pro
1026share/gemrb/unhardcoded/how/wvhith.pro 1035share/gemrb/unhardcoded/how/wvhith.pro
1027share/gemrb/unhardcoded/how/wwolf.pro 1036share/gemrb/unhardcoded/how/wwolf.pro
1028share/gemrb/unhardcoded/how/zlaura.pro 1037share/gemrb/unhardcoded/how/zlaura.pro
1029share/gemrb/unhardcoded/iwd/ability.2da 1038share/gemrb/unhardcoded/iwd/ability.2da
1030share/gemrb/unhardcoded/iwd/abjurap.pro 1039share/gemrb/unhardcoded/iwd/abjurap.pro
1031share/gemrb/unhardcoded/iwd/abjurh.pro 1040share/gemrb/unhardcoded/iwd/abjurh.pro
1032share/gemrb/unhardcoded/iwd/abjurt.pro 1041share/gemrb/unhardcoded/iwd/abjurt.pro
1033share/gemrb/unhardcoded/iwd/acidblgr.pro 1042share/gemrb/unhardcoded/iwd/acidblgr.pro
1034share/gemrb/unhardcoded/iwd/acidblmu.pro 1043share/gemrb/unhardcoded/iwd/acidblmu.pro
1035share/gemrb/unhardcoded/iwd/acidblob.pro 1044share/gemrb/unhardcoded/iwd/acidblob.pro
1036share/gemrb/unhardcoded/iwd/acidbloc.pro 1045share/gemrb/unhardcoded/iwd/acidbloc.pro
1037share/gemrb/unhardcoded/iwd/acidh.pro 1046share/gemrb/unhardcoded/iwd/acidh.pro
1038share/gemrb/unhardcoded/iwd/adhwil.pro 1047share/gemrb/unhardcoded/iwd/adhwil.pro
1039share/gemrb/unhardcoded/iwd/adhwilh.pro 1048share/gemrb/unhardcoded/iwd/adhwilh.pro
1040share/gemrb/unhardcoded/iwd/alance.pro 1049share/gemrb/unhardcoded/iwd/alance.pro
1041share/gemrb/unhardcoded/iwd/aligns.2da 1050share/gemrb/unhardcoded/iwd/aligns.2da
1042share/gemrb/unhardcoded/iwd/altera.pro 1051share/gemrb/unhardcoded/iwd/altera.pro
1043share/gemrb/unhardcoded/iwd/alteranp.pro 1052share/gemrb/unhardcoded/iwd/alteranp.pro
1044share/gemrb/unhardcoded/iwd/alterap.pro 1053share/gemrb/unhardcoded/iwd/alterap.pro
1045share/gemrb/unhardcoded/iwd/alteras.pro 1054share/gemrb/unhardcoded/iwd/alteras.pro
1046share/gemrb/unhardcoded/iwd/alterh.pro 1055share/gemrb/unhardcoded/iwd/alterh.pro
1047share/gemrb/unhardcoded/iwd/altert.pro 1056share/gemrb/unhardcoded/iwd/altert.pro
1048share/gemrb/unhardcoded/iwd/amshelc.vvc 1057share/gemrb/unhardcoded/iwd/amshelc.vvc
1049share/gemrb/unhardcoded/iwd/area1np.pro 1058share/gemrb/unhardcoded/iwd/area1np.pro
1050share/gemrb/unhardcoded/iwd/area1p.pro 1059share/gemrb/unhardcoded/iwd/area1p.pro
1051share/gemrb/unhardcoded/iwd/area2.pro 1060share/gemrb/unhardcoded/iwd/area2.pro
1052share/gemrb/unhardcoded/iwd/area2np.pro 1061share/gemrb/unhardcoded/iwd/area2np.pro
1053share/gemrb/unhardcoded/iwd/area3p.pro 1062share/gemrb/unhardcoded/iwd/area3p.pro
1054share/gemrb/unhardcoded/iwd/area4np.pro 1063share/gemrb/unhardcoded/iwd/area4np.pro
1055share/gemrb/unhardcoded/iwd/armorh.pro 1064share/gemrb/unhardcoded/iwd/armorh.pro
1056share/gemrb/unhardcoded/iwd/arrow.pro 1065share/gemrb/unhardcoded/iwd/arrow.pro
1057share/gemrb/unhardcoded/iwd/arrowex.pro 1066share/gemrb/unhardcoded/iwd/arrowex.pro
1058share/gemrb/unhardcoded/iwd/arrowflb.pro 1067share/gemrb/unhardcoded/iwd/arrowflb.pro
1059share/gemrb/unhardcoded/iwd/arrowflg.pro 1068share/gemrb/unhardcoded/iwd/arrowflg.pro
1060share/gemrb/unhardcoded/iwd/arrowfli.pro 1069share/gemrb/unhardcoded/iwd/arrowfli.pro
1061share/gemrb/unhardcoded/iwd/arrowflm.pro 1070share/gemrb/unhardcoded/iwd/arrowflm.pro
1062share/gemrb/unhardcoded/iwd/arrowhvy.pro 1071share/gemrb/unhardcoded/iwd/arrowhvy.pro
1063share/gemrb/unhardcoded/iwd/ascorch.pro 1072share/gemrb/unhardcoded/iwd/ascorch.pro
1064share/gemrb/unhardcoded/iwd/astorm.pro 1073share/gemrb/unhardcoded/iwd/astorm.pro
1065share/gemrb/unhardcoded/iwd/asumm1.pro 1074share/gemrb/unhardcoded/iwd/asumm1.pro
1066share/gemrb/unhardcoded/iwd/asumm1h.pro 1075share/gemrb/unhardcoded/iwd/asumm1h.pro
1067share/gemrb/unhardcoded/iwd/asumm1x.pro 1076share/gemrb/unhardcoded/iwd/asumm1x.pro
1068share/gemrb/unhardcoded/iwd/asumm2h.pro 1077share/gemrb/unhardcoded/iwd/asumm2h.pro
1069share/gemrb/unhardcoded/iwd/asumm3h.pro 1078share/gemrb/unhardcoded/iwd/asumm3h.pro
1070share/gemrb/unhardcoded/iwd/avatars.2da 1079share/gemrb/unhardcoded/iwd/avatars.2da
1071share/gemrb/unhardcoded/iwd/avprefr.2da 1080share/gemrb/unhardcoded/iwd/avprefr.2da
1072share/gemrb/unhardcoded/iwd/axe.pro 1081share/gemrb/unhardcoded/iwd/axe.pro
1073share/gemrb/unhardcoded/iwd/axeex.pro 1082share/gemrb/unhardcoded/iwd/axeex.pro
1074share/gemrb/unhardcoded/iwd/bbarrh1.pro 1083share/gemrb/unhardcoded/iwd/bbarrh1.pro
1075share/gemrb/unhardcoded/iwd/bbarrh2.pro 1084share/gemrb/unhardcoded/iwd/bbarrh2.pro
1076share/gemrb/unhardcoded/iwd/bbarrier.pro 1085share/gemrb/unhardcoded/iwd/bbarrier.pro
1077share/gemrb/unhardcoded/iwd/bdeath.pro 1086share/gemrb/unhardcoded/iwd/bdeath.pro
1078share/gemrb/unhardcoded/iwd/blessh.pro 1087share/gemrb/unhardcoded/iwd/blessh.pro
1079share/gemrb/unhardcoded/iwd/bloodclr.2da 1088share/gemrb/unhardcoded/iwd/bloodclr.2da
1080share/gemrb/unhardcoded/iwd/bolt.pro 1089share/gemrb/unhardcoded/iwd/bolt.pro
1081share/gemrb/unhardcoded/iwd/boltex.pro 1090share/gemrb/unhardcoded/iwd/boltex.pro
1082share/gemrb/unhardcoded/iwd/bscloud.pro 1091share/gemrb/unhardcoded/iwd/bscloud.pro
1083share/gemrb/unhardcoded/iwd/bullet.pro 1092share/gemrb/unhardcoded/iwd/bullet.pro
1084share/gemrb/unhardcoded/iwd/bulletex.pro 1093share/gemrb/unhardcoded/iwd/bulletex.pro
1085share/gemrb/unhardcoded/iwd/calllih.pro 1094share/gemrb/unhardcoded/iwd/calllih.pro
1086share/gemrb/unhardcoded/iwd/ccdamah.pro 1095share/gemrb/unhardcoded/iwd/ccdamah.pro
1087share/gemrb/unhardcoded/iwd/ccommah.pro 1096share/gemrb/unhardcoded/iwd/ccommah.pro
1088share/gemrb/unhardcoded/iwd/ccwounh.pro 1097share/gemrb/unhardcoded/iwd/ccwounh.pro
1089share/gemrb/unhardcoded/iwd/cdiseah.pro 1098share/gemrb/unhardcoded/iwd/cdiseah.pro
1090share/gemrb/unhardcoded/iwd/ceelem1.pro 1099share/gemrb/unhardcoded/iwd/ceelem1.pro
1091share/gemrb/unhardcoded/iwd/ceelemh.pro 1100share/gemrb/unhardcoded/iwd/ceelemh.pro
1092share/gemrb/unhardcoded/iwd/ceelemx.pro 1101share/gemrb/unhardcoded/iwd/ceelemx.pro
1093share/gemrb/unhardcoded/iwd/cfelem1.pro 1102share/gemrb/unhardcoded/iwd/cfelem1.pro
1094share/gemrb/unhardcoded/iwd/cfelemh.pro 1103share/gemrb/unhardcoded/iwd/cfelemh.pro
1095share/gemrb/unhardcoded/iwd/cfelemx.pro 1104share/gemrb/unhardcoded/iwd/cfelemx.pro
 1105share/gemrb/unhardcoded/iwd/cfelemx.vvc
1096share/gemrb/unhardcoded/iwd/cfog.pro 1106share/gemrb/unhardcoded/iwd/cfog.pro
1097share/gemrb/unhardcoded/iwd/cgraceh.pro 1107share/gemrb/unhardcoded/iwd/cgraceh.pro
1098share/gemrb/unhardcoded/iwd/chant.pro 1108share/gemrb/unhardcoded/iwd/chant.pro
1099share/gemrb/unhardcoded/iwd/chromorb.pro 1109share/gemrb/unhardcoded/iwd/chromorb.pro
1100share/gemrb/unhardcoded/iwd/clabdrui.2da 1110share/gemrb/unhardcoded/iwd/clabdrui.2da
1101share/gemrb/unhardcoded/iwd/clabpala.2da 1111share/gemrb/unhardcoded/iwd/clabpala.2da
1102share/gemrb/unhardcoded/iwd/clabrngr.2da 1112share/gemrb/unhardcoded/iwd/clabrngr.2da
1103share/gemrb/unhardcoded/iwd/classes.2da 1113share/gemrb/unhardcoded/iwd/classes.2da
1104share/gemrb/unhardcoded/iwd/cldamah.pro 1114share/gemrb/unhardcoded/iwd/cldamah.pro
1105share/gemrb/unhardcoded/iwd/cloud.pro 1115share/gemrb/unhardcoded/iwd/cloud.pro
1106share/gemrb/unhardcoded/iwd/cloudb.pro 1116share/gemrb/unhardcoded/iwd/cloudb.pro
1107share/gemrb/unhardcoded/iwd/cloudbh.pro 1117share/gemrb/unhardcoded/iwd/cloudbh.pro
1108share/gemrb/unhardcoded/iwd/cloudkil.pro 1118share/gemrb/unhardcoded/iwd/cloudkil.pro
1109share/gemrb/unhardcoded/iwd/cloudks.pro 1119share/gemrb/unhardcoded/iwd/cloudks.pro
1110share/gemrb/unhardcoded/iwd/clowncol.2da 1120share/gemrb/unhardcoded/iwd/clowncol.2da
1111share/gemrb/unhardcoded/iwd/clskills.2da 1121share/gemrb/unhardcoded/iwd/clskills.2da
1112share/gemrb/unhardcoded/iwd/clwounh.pro 1122share/gemrb/unhardcoded/iwd/clwounh.pro
1113share/gemrb/unhardcoded/iwd/cmdamah.pro 1123share/gemrb/unhardcoded/iwd/cmdamah.pro
1114share/gemrb/unhardcoded/iwd/cmwounh.pro 1124share/gemrb/unhardcoded/iwd/cmwounh.pro
1115share/gemrb/unhardcoded/iwd/cobones.pro 1125share/gemrb/unhardcoded/iwd/cobones.pro
1116share/gemrb/unhardcoded/iwd/cobonh1.pro 1126share/gemrb/unhardcoded/iwd/cobonh1.pro
1117share/gemrb/unhardcoded/iwd/cobonh2.pro 1127share/gemrb/unhardcoded/iwd/cobonh2.pro
1118share/gemrb/unhardcoded/iwd/cocold.pro 1128share/gemrb/unhardcoded/iwd/cocold.pro
1119share/gemrb/unhardcoded/iwd/cocoldh.pro 1129share/gemrb/unhardcoded/iwd/cocoldh.pro
1120share/gemrb/unhardcoded/iwd/cofearc.vvc 1130share/gemrb/unhardcoded/iwd/cofearc.vvc
1121share/gemrb/unhardcoded/iwd/cofire.pro 1131share/gemrb/unhardcoded/iwd/cofire.pro
1122share/gemrb/unhardcoded/iwd/coldh.pro 1132share/gemrb/unhardcoded/iwd/coldh.pro
1123share/gemrb/unhardcoded/iwd/colrspry.pro 1133share/gemrb/unhardcoded/iwd/colrspry.pro
1124share/gemrb/unhardcoded/iwd/confush.pro 1134share/gemrb/unhardcoded/iwd/confush.pro
1125share/gemrb/unhardcoded/iwd/confusp.pro 1135share/gemrb/unhardcoded/iwd/confusp.pro
1126share/gemrb/unhardcoded/iwd/confusw.pro 1136share/gemrb/unhardcoded/iwd/confusw.pro
1127share/gemrb/unhardcoded/iwd/conjuh.pro 1137share/gemrb/unhardcoded/iwd/conjuh.pro
1128share/gemrb/unhardcoded/iwd/conjut.pro 1138share/gemrb/unhardcoded/iwd/conjut.pro
1129share/gemrb/unhardcoded/iwd/copest.pro 1139share/gemrb/unhardcoded/iwd/copest.pro
1130share/gemrb/unhardcoded/iwd/cry150.pro 1140share/gemrb/unhardcoded/iwd/cry150.pro
1131share/gemrb/unhardcoded/iwd/cry200.pro 1141share/gemrb/unhardcoded/iwd/cry200.pro
1132share/gemrb/unhardcoded/iwd/cry225.pro 1142share/gemrb/unhardcoded/iwd/cry225.pro
1133share/gemrb/unhardcoded/iwd/cry250.pro 1143share/gemrb/unhardcoded/iwd/cry250.pro
1134share/gemrb/unhardcoded/iwd/cry500np.pro 1144share/gemrb/unhardcoded/iwd/cry500np.pro
1135share/gemrb/unhardcoded/iwd/csdamah.pro 1145share/gemrb/unhardcoded/iwd/csdamah.pro
1136share/gemrb/unhardcoded/iwd/cstrenh.pro 1146share/gemrb/unhardcoded/iwd/cstrenh.pro
1137share/gemrb/unhardcoded/iwd/cswounh.pro 1147share/gemrb/unhardcoded/iwd/cswounh.pro
1138share/gemrb/unhardcoded/iwd/curseh.pro 1148share/gemrb/unhardcoded/iwd/curseh.pro
1139share/gemrb/unhardcoded/iwd/cwelem1.pro 1149share/gemrb/unhardcoded/iwd/cwelem1.pro
1140share/gemrb/unhardcoded/iwd/cwelemh.pro 1150share/gemrb/unhardcoded/iwd/cwelemh.pro
1141share/gemrb/unhardcoded/iwd/cwelemx.pro 1151share/gemrb/unhardcoded/iwd/cwelemx.pro
1142share/gemrb/unhardcoded/iwd/cynicism.2da 1152share/gemrb/unhardcoded/iwd/cynicism.2da
1143share/gemrb/unhardcoded/iwd/dagger.pro 1153share/gemrb/unhardcoded/iwd/dagger.pro
1144share/gemrb/unhardcoded/iwd/daggerex.pro 1154share/gemrb/unhardcoded/iwd/daggerex.pro
1145share/gemrb/unhardcoded/iwd/damage.2da 1155share/gemrb/unhardcoded/iwd/damage.2da
1146share/gemrb/unhardcoded/iwd/dart.pro 1156share/gemrb/unhardcoded/iwd/dart.pro
1147share/gemrb/unhardcoded/iwd/dartex.pro 1157share/gemrb/unhardcoded/iwd/dartex.pro
1148share/gemrb/unhardcoded/iwd/dbreath.pro 1158share/gemrb/unhardcoded/iwd/dbreath.pro
1149share/gemrb/unhardcoded/iwd/ddeath.pro 1159share/gemrb/unhardcoded/iwd/ddeath.pro
1150share/gemrb/unhardcoded/iwd/ddeath2.pro 1160share/gemrb/unhardcoded/iwd/ddeath2.pro
1151share/gemrb/unhardcoded/iwd/ddoorh.pro 1161share/gemrb/unhardcoded/iwd/ddoorh.pro
1152share/gemrb/unhardcoded/iwd/defsound.2da 1162share/gemrb/unhardcoded/iwd/defsound.2da
1153share/gemrb/unhardcoded/iwd/destruh.pro 1163share/gemrb/unhardcoded/iwd/destruh.pro
1154share/gemrb/unhardcoded/iwd/dfog.pro 1164share/gemrb/unhardcoded/iwd/dfog.pro
1155share/gemrb/unhardcoded/iwd/disint.pro 1165share/gemrb/unhardcoded/iwd/disint.pro
1156share/gemrb/unhardcoded/iwd/disinth.pro 1166share/gemrb/unhardcoded/iwd/disinth.pro
1157share/gemrb/unhardcoded/iwd/dispel.pro 1167share/gemrb/unhardcoded/iwd/dispel.pro
1158share/gemrb/unhardcoded/iwd/divinh.pro 1168share/gemrb/unhardcoded/iwd/divinh.pro
1159share/gemrb/unhardcoded/iwd/divint.pro 1169share/gemrb/unhardcoded/iwd/divint.pro
1160share/gemrb/unhardcoded/iwd/dsclass.2da 1170share/gemrb/unhardcoded/iwd/dsclass.2da
1161share/gemrb/unhardcoded/iwd/dspell.pro 1171share/gemrb/unhardcoded/iwd/dspell.pro
1162share/gemrb/unhardcoded/iwd/dspellh.pro 1172share/gemrb/unhardcoded/iwd/dspellh.pro
1163share/gemrb/unhardcoded/iwd/dsrace.2da 1173share/gemrb/unhardcoded/iwd/dsrace.2da
1164share/gemrb/unhardcoded/iwd/dstable.2da 1174share/gemrb/unhardcoded/iwd/dstable.2da
1165share/gemrb/unhardcoded/iwd/dualclas.2da 1175share/gemrb/unhardcoded/iwd/dualclas.2da
1166share/gemrb/unhardcoded/iwd/effects.ids 1176share/gemrb/unhardcoded/iwd/effects.ids
1167share/gemrb/unhardcoded/iwd/electrh.pro 1177share/gemrb/unhardcoded/iwd/electrh.pro
1168share/gemrb/unhardcoded/iwd/emotion.pro 1178share/gemrb/unhardcoded/iwd/emotion.pro
1169share/gemrb/unhardcoded/iwd/enchah.pro 1179share/gemrb/unhardcoded/iwd/enchah.pro
1170share/gemrb/unhardcoded/iwd/enchannp.pro 1180share/gemrb/unhardcoded/iwd/enchannp.pro
1171share/gemrb/unhardcoded/iwd/enchat.pro 1181share/gemrb/unhardcoded/iwd/enchat.pro
1172share/gemrb/unhardcoded/iwd/entangle.pro 1182share/gemrb/unhardcoded/iwd/entangle.pro
1173share/gemrb/unhardcoded/iwd/equake.pro 1183share/gemrb/unhardcoded/iwd/equake.pro
1174share/gemrb/unhardcoded/iwd/exaltah.pro 1184share/gemrb/unhardcoded/iwd/exaltah.pro
1175share/gemrb/unhardcoded/iwd/factioh.pro 1185share/gemrb/unhardcoded/iwd/factioh.pro
1176share/gemrb/unhardcoded/iwd/findtrap.pro 1186share/gemrb/unhardcoded/iwd/findtrap.pro
1177share/gemrb/unhardcoded/iwd/fireball.pro 1187share/gemrb/unhardcoded/iwd/fireball.pro
1178share/gemrb/unhardcoded/iwd/fireblic.pro 1188share/gemrb/unhardcoded/iwd/fireblic.pro
1179share/gemrb/unhardcoded/iwd/firebolt.pro 1189share/gemrb/unhardcoded/iwd/firebolt.pro
1180share/gemrb/unhardcoded/iwd/firebtbl.pro 1190share/gemrb/unhardcoded/iwd/firebtbl.pro
1181share/gemrb/unhardcoded/iwd/fireh.pro 1191share/gemrb/unhardcoded/iwd/fireh.pro
1182share/gemrb/unhardcoded/iwd/firestor.pro 1192share/gemrb/unhardcoded/iwd/firestor.pro
1183share/gemrb/unhardcoded/iwd/fistweap.2da 1193share/gemrb/unhardcoded/iwd/fistweap.2da
1184share/gemrb/unhardcoded/iwd/fodeath.pro 1194share/gemrb/unhardcoded/iwd/fodeath.pro
1185share/gemrb/unhardcoded/iwd/fonts.2da 1195share/gemrb/unhardcoded/iwd/fonts.2da
1186share/gemrb/unhardcoded/iwd/formatio.2da 1196share/gemrb/unhardcoded/iwd/formatio.2da
1187share/gemrb/unhardcoded/iwd/fseed.pro 1197share/gemrb/unhardcoded/iwd/fseed.pro
1188share/gemrb/unhardcoded/iwd/fstrikh.pro 1198share/gemrb/unhardcoded/iwd/fstrikh.pro
1189share/gemrb/unhardcoded/iwd/gametime.2da 1199share/gemrb/unhardcoded/iwd/gametime.2da
1190share/gemrb/unhardcoded/iwd/garmorh.pro 1200share/gemrb/unhardcoded/iwd/garmorh.pro
1191share/gemrb/unhardcoded/iwd/gaze.pro 1201share/gemrb/unhardcoded/iwd/gaze.pro
1192share/gemrb/unhardcoded/iwd/gemprjtl.ids 1202share/gemrb/unhardcoded/iwd/gemprjtl.ids
1193share/gemrb/unhardcoded/iwd/gemrb.ini 1203share/gemrb/unhardcoded/iwd/gemrb.ini
1194share/gemrb/unhardcoded/iwd/gender.2da 1204share/gemrb/unhardcoded/iwd/gender.2da
1195share/gemrb/unhardcoded/iwd/golcloud.pro 1205share/gemrb/unhardcoded/iwd/golcloud.pro
1196share/gemrb/unhardcoded/iwd/grease.pro 1206share/gemrb/unhardcoded/iwd/grease.pro
1197share/gemrb/unhardcoded/iwd/gshout.pro 1207share/gemrb/unhardcoded/iwd/gshout.pro
1198share/gemrb/unhardcoded/iwd/gsolac1.vvc 1208share/gemrb/unhardcoded/iwd/gsolac1.vvc
1199share/gemrb/unhardcoded/iwd/guibtact.2da 1209share/gemrb/unhardcoded/iwd/guibtact.2da
1200share/gemrb/unhardcoded/iwd/guils.chu 1210share/gemrb/unhardcoded/iwd/guils.chu
1201share/gemrb/unhardcoded/iwd/harmh.pro 1211share/gemrb/unhardcoded/iwd/harmh.pro
1202share/gemrb/unhardcoded/iwd/harmony.pro 1212share/gemrb/unhardcoded/iwd/harmony.pro
1203share/gemrb/unhardcoded/iwd/haterace.2da 1213share/gemrb/unhardcoded/iwd/haterace.2da
1204share/gemrb/unhardcoded/iwd/healh.pro 1214share/gemrb/unhardcoded/iwd/healh.pro
1205share/gemrb/unhardcoded/iwd/hmighth.pro 1215share/gemrb/unhardcoded/iwd/hmighth.pro
1206share/gemrb/unhardcoded/iwd/hold.pro 1216share/gemrb/unhardcoded/iwd/hold.pro
1207share/gemrb/unhardcoded/iwd/hsmite.pro 1217share/gemrb/unhardcoded/iwd/hsmite.pro
1208share/gemrb/unhardcoded/iwd/hword.pro 1218share/gemrb/unhardcoded/iwd/hword.pro
1209share/gemrb/unhardcoded/iwd/icelance.pro 1219share/gemrb/unhardcoded/iwd/icelance.pro
1210share/gemrb/unhardcoded/iwd/icestorm.pro 1220share/gemrb/unhardcoded/iwd/icestorm.pro
1211share/gemrb/unhardcoded/iwd/icloud.pro 1221share/gemrb/unhardcoded/iwd/icloud.pro
1212share/gemrb/unhardcoded/iwd/iclouda.pro 1222share/gemrb/unhardcoded/iwd/iclouda.pro
1213share/gemrb/unhardcoded/iwd/icloudb.pro 1223share/gemrb/unhardcoded/iwd/icloudb.pro
1214share/gemrb/unhardcoded/iwd/illush.pro 1224share/gemrb/unhardcoded/iwd/illush.pro
1215share/gemrb/unhardcoded/iwd/illust.pro 1225share/gemrb/unhardcoded/iwd/illust.pro
1216share/gemrb/unhardcoded/iwd/inarea.pro 1226share/gemrb/unhardcoded/iwd/inarea.pro
1217share/gemrb/unhardcoded/iwd/inareanp.pro 1227share/gemrb/unhardcoded/iwd/inareanp.pro
1218share/gemrb/unhardcoded/iwd/inareapa.pro 1228share/gemrb/unhardcoded/iwd/inareapa.pro
1219share/gemrb/unhardcoded/iwd/inareasm.pro 1229share/gemrb/unhardcoded/iwd/inareasm.pro
1220share/gemrb/unhardcoded/iwd/invoch.pro 1230share/gemrb/unhardcoded/iwd/invoch.pro
1221share/gemrb/unhardcoded/iwd/invoct.pro 1231share/gemrb/unhardcoded/iwd/invoct.pro
1222share/gemrb/unhardcoded/iwd/iplague.pro 1232share/gemrb/unhardcoded/iwd/iplague.pro
1223share/gemrb/unhardcoded/iwd/itemsnd.2da 1233share/gemrb/unhardcoded/iwd/itemsnd.2da
1224share/gemrb/unhardcoded/iwd/itemtype.2da 1234share/gemrb/unhardcoded/iwd/itemtype.2da
1225share/gemrb/unhardcoded/iwd/itemuse.2da 1235share/gemrb/unhardcoded/iwd/itemuse.2da
1226share/gemrb/unhardcoded/iwd/kitlist.2da 1236share/gemrb/unhardcoded/iwd/kitlist.2da
1227share/gemrb/unhardcoded/iwd/lightb.pro 1237share/gemrb/unhardcoded/iwd/lightb.pro
1228share/gemrb/unhardcoded/iwd/lightbnb.pro 1238share/gemrb/unhardcoded/iwd/lightbnb.pro
1229share/gemrb/unhardcoded/iwd/lightsto.pro 1239share/gemrb/unhardcoded/iwd/lightsto.pro
1230share/gemrb/unhardcoded/iwd/lodisr.pro 1240share/gemrb/unhardcoded/iwd/lodisr.pro
1231share/gemrb/unhardcoded/iwd/magesch.2da 1241share/gemrb/unhardcoded/iwd/magesch.2da
1232share/gemrb/unhardcoded/iwd/magicmis.pro 1242share/gemrb/unhardcoded/iwd/magicmis.pro
1233share/gemrb/unhardcoded/iwd/malison.pro 1243share/gemrb/unhardcoded/iwd/malison.pro
1234share/gemrb/unhardcoded/iwd/mfmiss.pro 1244share/gemrb/unhardcoded/iwd/mfmiss.pro
1235share/gemrb/unhardcoded/iwd/mfmiss2.pro 1245share/gemrb/unhardcoded/iwd/mfmiss2.pro
1236share/gemrb/unhardcoded/iwd/mfmissh.pro 1246share/gemrb/unhardcoded/iwd/mfmissh.pro
1237share/gemrb/unhardcoded/iwd/mgoinvc.vvc 1247share/gemrb/unhardcoded/iwd/mgoinvc.vvc
1238share/gemrb/unhardcoded/iwd/mmagich.pro 1248share/gemrb/unhardcoded/iwd/mmagich.pro
1239share/gemrb/unhardcoded/iwd/mmissile.pro 1249share/gemrb/unhardcoded/iwd/mmissile.pro
1240share/gemrb/unhardcoded/iwd/moelda.pro 1250share/gemrb/unhardcoded/iwd/moelda.pro
1241share/gemrb/unhardcoded/iwd/mpal256.bmp 1251share/gemrb/unhardcoded/iwd/mpal256.bmp
1242share/gemrb/unhardcoded/iwd/mrage.pro 1252share/gemrb/unhardcoded/iwd/mrage.pro
1243share/gemrb/unhardcoded/iwd/mrageh.pro 1253share/gemrb/unhardcoded/iwd/mrageh.pro
1244share/gemrb/unhardcoded/iwd/mspore.pro 1254share/gemrb/unhardcoded/iwd/mspore.pro
1245share/gemrb/unhardcoded/iwd/msumm1.pro 1255share/gemrb/unhardcoded/iwd/msumm1.pro
1246share/gemrb/unhardcoded/iwd/msumm1h.pro 1256share/gemrb/unhardcoded/iwd/msumm1h.pro
1247share/gemrb/unhardcoded/iwd/msumm1x.pro 1257share/gemrb/unhardcoded/iwd/msumm1x.pro
1248share/gemrb/unhardcoded/iwd/msumm1x.vvc 1258share/gemrb/unhardcoded/iwd/msumm1x.vvc
1249share/gemrb/unhardcoded/iwd/msumm2h.pro 1259share/gemrb/unhardcoded/iwd/msumm2h.pro
1250share/gemrb/unhardcoded/iwd/msumm3h.pro 1260share/gemrb/unhardcoded/iwd/msumm3h.pro
1251share/gemrb/unhardcoded/iwd/msumm4h.pro 1261share/gemrb/unhardcoded/iwd/msumm4h.pro
1252share/gemrb/unhardcoded/iwd/msumm5h.pro 1262share/gemrb/unhardcoded/iwd/msumm5h.pro
1253share/gemrb/unhardcoded/iwd/msumm6h.pro 1263share/gemrb/unhardcoded/iwd/msumm6h.pro
1254share/gemrb/unhardcoded/iwd/msumm7h.pro 1264share/gemrb/unhardcoded/iwd/msumm7h.pro
1255share/gemrb/unhardcoded/iwd/mswordh.pro 1265share/gemrb/unhardcoded/iwd/mswordh.pro
1256share/gemrb/unhardcoded/iwd/mtouchh.pro 1266share/gemrb/unhardcoded/iwd/mtouchh.pro
1257share/gemrb/unhardcoded/iwd/necroh.pro 1267share/gemrb/unhardcoded/iwd/necroh.pro
1258share/gemrb/unhardcoded/iwd/necrot.pro 1268share/gemrb/unhardcoded/iwd/necrot.pro
1259share/gemrb/unhardcoded/iwd/npoisoh.pro 1269share/gemrb/unhardcoded/iwd/npoisoh.pro
1260share/gemrb/unhardcoded/iwd/ofsphe.pro 1270share/gemrb/unhardcoded/iwd/ofsphe.pro
1261share/gemrb/unhardcoded/iwd/orsphec.vvc 1271share/gemrb/unhardcoded/iwd/orsphec.vvc
1262share/gemrb/unhardcoded/iwd/overlay.2da 1272share/gemrb/unhardcoded/iwd/overlay.2da
1263share/gemrb/unhardcoded/iwd/paralh.pro 1273share/gemrb/unhardcoded/iwd/paralh.pro
1264share/gemrb/unhardcoded/iwd/pathfind.2da 1274share/gemrb/unhardcoded/iwd/pathfind.2da
1265share/gemrb/unhardcoded/iwd/pdolls.2da 1275share/gemrb/unhardcoded/iwd/pdolls.2da
1266share/gemrb/unhardcoded/iwd/pfire.pro 1276share/gemrb/unhardcoded/iwd/pfire.pro
1267share/gemrb/unhardcoded/iwd/pfnmisc.vvc 1277share/gemrb/unhardcoded/iwd/pfnmisc.vvc
1268share/gemrb/unhardcoded/iwd/pictures.2da 1278share/gemrb/unhardcoded/iwd/pictures.2da
1269share/gemrb/unhardcoded/iwd/poisonh.pro 1279share/gemrb/unhardcoded/iwd/poisonh.pro
1270share/gemrb/unhardcoded/iwd/pomab.2da 1280share/gemrb/unhardcoded/iwd/pomab.2da
1271share/gemrb/unhardcoded/iwd/portalh.pro 1281share/gemrb/unhardcoded/iwd/portalh.pro
1272share/gemrb/unhardcoded/iwd/prayer.pro 1282share/gemrb/unhardcoded/iwd/prayer.pro
1273share/gemrb/unhardcoded/iwd/prayerh.pro 1283share/gemrb/unhardcoded/iwd/prayerh.pro
1274share/gemrb/unhardcoded/iwd/proftype.2da 1284share/gemrb/unhardcoded/iwd/proftype.2da
1275share/gemrb/unhardcoded/iwd/protevil.pro 1285share/gemrb/unhardcoded/iwd/protevil.pro
1276share/gemrb/unhardcoded/iwd/prtl_cl.pro 1286share/gemrb/unhardcoded/iwd/prtl_cl.pro
1277share/gemrb/unhardcoded/iwd/prtl_cl.spl 1287share/gemrb/unhardcoded/iwd/prtl_cl.spl
1278share/gemrb/unhardcoded/iwd/prtl_op.pro 1288share/gemrb/unhardcoded/iwd/prtl_op.pro
1279share/gemrb/unhardcoded/iwd/prtl_op.spl 1289share/gemrb/unhardcoded/iwd/prtl_op.spl
1280share/gemrb/unhardcoded/iwd/pspray.pro 1290share/gemrb/unhardcoded/iwd/pspray.pro
1281share/gemrb/unhardcoded/iwd/pwkill.pro 1291share/gemrb/unhardcoded/iwd/pwkill.pro
1282share/gemrb/unhardcoded/iwd/pwsileh.pro 1292share/gemrb/unhardcoded/iwd/pwsileh.pro
1283share/gemrb/unhardcoded/iwd/pwstun.pro 1293share/gemrb/unhardcoded/iwd/pwstun.pro
1284share/gemrb/unhardcoded/iwd/pwstunh.pro 1294share/gemrb/unhardcoded/iwd/pwstunh.pro
1285share/gemrb/unhardcoded/iwd/qslots.2da 1295share/gemrb/unhardcoded/iwd/qslots.2da
1286share/gemrb/unhardcoded/iwd/races.2da 1296share/gemrb/unhardcoded/iwd/races.2da
1287share/gemrb/unhardcoded/iwd/racethac.2da 1297share/gemrb/unhardcoded/iwd/racethac.2da
1288share/gemrb/unhardcoded/iwd/rad100.pro 1298share/gemrb/unhardcoded/iwd/rad100.pro
1289share/gemrb/unhardcoded/iwd/rad250.pro 1299share/gemrb/unhardcoded/iwd/rad250.pro
1290share/gemrb/unhardcoded/iwd/randitem.2da 1300share/gemrb/unhardcoded/iwd/randitem.2da
1291share/gemrb/unhardcoded/iwd/rdeadh.pro 1301share/gemrb/unhardcoded/iwd/rdeadh.pro
1292share/gemrb/unhardcoded/iwd/recitah.pro 1302share/gemrb/unhardcoded/iwd/recitah.pro
1293share/gemrb/unhardcoded/iwd/resurrh.pro 1303share/gemrb/unhardcoded/iwd/resurrh.pro
1294share/gemrb/unhardcoded/iwd/rng450.pro 1304share/gemrb/unhardcoded/iwd/rng450.pro
1295share/gemrb/unhardcoded/iwd/rparalh.pro 1305share/gemrb/unhardcoded/iwd/rparalh.pro
1296share/gemrb/unhardcoded/iwd/rwotfag.pro 1306share/gemrb/unhardcoded/iwd/rwotfag.pro
1297share/gemrb/unhardcoded/iwd/rwotfah.pro 1307share/gemrb/unhardcoded/iwd/rwotfah.pro
1298share/gemrb/unhardcoded/iwd/sarmorh.pro 1308share/gemrb/unhardcoded/iwd/sarmorh.pro
1299share/gemrb/unhardcoded/iwd/savegame.2da 1309share/gemrb/unhardcoded/iwd/savegame.2da
1300share/gemrb/unhardcoded/iwd/scharge.pro 1310share/gemrb/unhardcoded/iwd/scharge.pro
1301share/gemrb/unhardcoded/iwd/scharge.spl 1311share/gemrb/unhardcoded/iwd/scharge.spl
1302share/gemrb/unhardcoded/iwd/schargh.pro 1312share/gemrb/unhardcoded/iwd/schargh.pro
1303share/gemrb/unhardcoded/iwd/script.2da 1313share/gemrb/unhardcoded/iwd/script.2da
1304share/gemrb/unhardcoded/iwd/seater.pro 1314share/gemrb/unhardcoded/iwd/seater.pro
1305share/gemrb/unhardcoded/iwd/seaterh.pro 1315share/gemrb/unhardcoded/iwd/seaterh.pro
1306share/gemrb/unhardcoded/iwd/seyesc1.vvc 1316share/gemrb/unhardcoded/iwd/seyesc1.vvc
 1317share/gemrb/unhardcoded/iwd/seyesc2.vvc
1307share/gemrb/unhardcoded/iwd/sgrowth.pro 1318share/gemrb/unhardcoded/iwd/sgrowth.pro
1308share/gemrb/unhardcoded/iwd/shout.pro 1319share/gemrb/unhardcoded/iwd/shout.pro
1309share/gemrb/unhardcoded/iwd/shroud.pro 1320share/gemrb/unhardcoded/iwd/shroud.pro
1310share/gemrb/unhardcoded/iwd/shtable.2da 1321share/gemrb/unhardcoded/iwd/shtable.2da
1311share/gemrb/unhardcoded/iwd/skills.2da 1322share/gemrb/unhardcoded/iwd/skills.2da
1312share/gemrb/unhardcoded/iwd/sleep.pro 1323share/gemrb/unhardcoded/iwd/sleep.pro
1313share/gemrb/unhardcoded/iwd/slivinh.pro 1324share/gemrb/unhardcoded/iwd/slivinh.pro
1314share/gemrb/unhardcoded/iwd/slottype.2da 1325share/gemrb/unhardcoded/iwd/slottype.2da
1315share/gemrb/unhardcoded/iwd/soflamc.vvc 1326share/gemrb/unhardcoded/iwd/soflamc.vvc
1316share/gemrb/unhardcoded/iwd/soflamh.pro 1327share/gemrb/unhardcoded/iwd/soflamh.pro
1317share/gemrb/unhardcoded/iwd/sohope.pro 1328share/gemrb/unhardcoded/iwd/sohope.pro
1318share/gemrb/unhardcoded/iwd/solatc1.vvc 1329share/gemrb/unhardcoded/iwd/solatc1.vvc
1319share/gemrb/unhardcoded/iwd/sooneh.pro 1330share/gemrb/unhardcoded/iwd/sooneh.pro
1320share/gemrb/unhardcoded/iwd/sopain.pro 1331share/gemrb/unhardcoded/iwd/sopain.pro
1321share/gemrb/unhardcoded/iwd/sparbknp.pro 1332share/gemrb/unhardcoded/iwd/sparbknp.pro
1322share/gemrb/unhardcoded/iwd/sparbkpa.pro 1333share/gemrb/unhardcoded/iwd/sparbkpa.pro
1323share/gemrb/unhardcoded/iwd/sparblnp.pro 1334share/gemrb/unhardcoded/iwd/sparblnp.pro
1324share/gemrb/unhardcoded/iwd/sparblpa.pro 1335share/gemrb/unhardcoded/iwd/sparblpa.pro
1325share/gemrb/unhardcoded/iwd/sparchnp.pro 1336share/gemrb/unhardcoded/iwd/sparchnp.pro
1326share/gemrb/unhardcoded/iwd/sparchpa.pro 1337share/gemrb/unhardcoded/iwd/sparchpa.pro
1327share/gemrb/unhardcoded/iwd/spargonp.pro 1338share/gemrb/unhardcoded/iwd/spargonp.pro
1328share/gemrb/unhardcoded/iwd/spargopa.pro 1339share/gemrb/unhardcoded/iwd/spargopa.pro
1329share/gemrb/unhardcoded/iwd/spargrnp.pro 1340share/gemrb/unhardcoded/iwd/spargrnp.pro
1330share/gemrb/unhardcoded/iwd/spargrpa.pro 1341share/gemrb/unhardcoded/iwd/spargrpa.pro
1331share/gemrb/unhardcoded/iwd/sparicnp.pro 1342share/gemrb/unhardcoded/iwd/sparicnp.pro
1332share/gemrb/unhardcoded/iwd/sparicpa.pro 1343share/gemrb/unhardcoded/iwd/sparicpa.pro
1333share/gemrb/unhardcoded/iwd/sparklbk.pro 1344share/gemrb/unhardcoded/iwd/sparklbk.pro
1334share/gemrb/unhardcoded/iwd/sparklbl.pro 1345share/gemrb/unhardcoded/iwd/sparklbl.pro
1335share/gemrb/unhardcoded/iwd/sparklch.pro 1346share/gemrb/unhardcoded/iwd/sparklch.pro
1336share/gemrb/unhardcoded/iwd/sparklgo.pro 1347share/gemrb/unhardcoded/iwd/sparklgo.pro
1337share/gemrb/unhardcoded/iwd/sparklgr.pro 1348share/gemrb/unhardcoded/iwd/sparklgr.pro
1338share/gemrb/unhardcoded/iwd/sparklic.pro 1349share/gemrb/unhardcoded/iwd/sparklic.pro
1339share/gemrb/unhardcoded/iwd/sparklma.pro 1350share/gemrb/unhardcoded/iwd/sparklma.pro
1340share/gemrb/unhardcoded/iwd/sparklor.pro 1351share/gemrb/unhardcoded/iwd/sparklor.pro
1341share/gemrb/unhardcoded/iwd/sparklpu.pro 1352share/gemrb/unhardcoded/iwd/sparklpu.pro
1342share/gemrb/unhardcoded/iwd/sparklre.pro 1353share/gemrb/unhardcoded/iwd/sparklre.pro
1343share/gemrb/unhardcoded/iwd/sparklst.pro 1354share/gemrb/unhardcoded/iwd/sparklst.pro
1344share/gemrb/unhardcoded/iwd/sparmanp.pro 1355share/gemrb/unhardcoded/iwd/sparmanp.pro
1345share/gemrb/unhardcoded/iwd/sparmapa.pro 1356share/gemrb/unhardcoded/iwd/sparmapa.pro
1346share/gemrb/unhardcoded/iwd/sparornp.pro 1357share/gemrb/unhardcoded/iwd/sparornp.pro
1347share/gemrb/unhardcoded/iwd/sparorpa.pro 1358share/gemrb/unhardcoded/iwd/sparorpa.pro
1348share/gemrb/unhardcoded/iwd/sparpunp.pro 1359share/gemrb/unhardcoded/iwd/sparpunp.pro
1349share/gemrb/unhardcoded/iwd/sparpupa.pro 1360share/gemrb/unhardcoded/iwd/sparpupa.pro
1350share/gemrb/unhardcoded/iwd/sparrenp.pro 1361share/gemrb/unhardcoded/iwd/sparrenp.pro
1351share/gemrb/unhardcoded/iwd/sparrepa.pro 1362share/gemrb/unhardcoded/iwd/sparrepa.pro
1352share/gemrb/unhardcoded/iwd/sparstnp.pro 1363share/gemrb/unhardcoded/iwd/sparstnp.pro
1353share/gemrb/unhardcoded/iwd/sparstpa.pro 1364share/gemrb/unhardcoded/iwd/sparstpa.pro
1354share/gemrb/unhardcoded/iwd/spear.pro 1365share/gemrb/unhardcoded/iwd/spear.pro
1355share/gemrb/unhardcoded/iwd/spearex.pro 1366share/gemrb/unhardcoded/iwd/spearex.pro
1356share/gemrb/unhardcoded/iwd/spfirebl.pro 1367share/gemrb/unhardcoded/iwd/spfirebl.pro
1357share/gemrb/unhardcoded/iwd/spklarbk.pro 1368share/gemrb/unhardcoded/iwd/spklarbk.pro
1358share/gemrb/unhardcoded/iwd/spklarbl.pro 1369share/gemrb/unhardcoded/iwd/spklarbl.pro
1359share/gemrb/unhardcoded/iwd/spklarch.pro 1370share/gemrb/unhardcoded/iwd/spklarch.pro
1360share/gemrb/unhardcoded/iwd/spklargo.pro 1371share/gemrb/unhardcoded/iwd/spklargo.pro
1361share/gemrb/unhardcoded/iwd/spklargr.pro 1372share/gemrb/unhardcoded/iwd/spklargr.pro
1362share/gemrb/unhardcoded/iwd/spklaric.pro 1373share/gemrb/unhardcoded/iwd/spklaric.pro
1363share/gemrb/unhardcoded/iwd/spklarma.pro 1374share/gemrb/unhardcoded/iwd/spklarma.pro
1364share/gemrb/unhardcoded/iwd/spklaror.pro 1375share/gemrb/unhardcoded/iwd/spklaror.pro
1365share/gemrb/unhardcoded/iwd/spklarpu.pro 1376share/gemrb/unhardcoded/iwd/spklarpu.pro
1366share/gemrb/unhardcoded/iwd/spklarre.pro 1377share/gemrb/unhardcoded/iwd/spklarre.pro
1367share/gemrb/unhardcoded/iwd/spklarst.pro 1378share/gemrb/unhardcoded/iwd/spklarst.pro
 1379share/gemrb/unhardcoded/iwd/splbrdkn.2da
1368share/gemrb/unhardcoded/iwd/splprot.2da 1380share/gemrb/unhardcoded/iwd/splprot.2da
1369share/gemrb/unhardcoded/iwd/splspec.2da 1381share/gemrb/unhardcoded/iwd/splspec.2da
1370share/gemrb/unhardcoded/iwd/spoisoh.pro 1382share/gemrb/unhardcoded/iwd/spoisoh.pro
1371share/gemrb/unhardcoded/iwd/spscorch.pro 1383share/gemrb/unhardcoded/iwd/spscorch.pro
1372share/gemrb/unhardcoded/iwd/spscoric.pro 1384share/gemrb/unhardcoded/iwd/spscoric.pro
1373share/gemrb/unhardcoded/iwd/spwrath.pro 1385share/gemrb/unhardcoded/iwd/spwrath.pro
1374share/gemrb/unhardcoded/iwd/sshellc.vvc 1386share/gemrb/unhardcoded/iwd/sshellc.vvc
1375share/gemrb/unhardcoded/iwd/ssorbh.pro 1387share/gemrb/unhardcoded/iwd/ssorbh.pro
1376share/gemrb/unhardcoded/iwd/ssswarm.pro 1388share/gemrb/unhardcoded/iwd/ssswarm.pro
1377share/gemrb/unhardcoded/iwd/sstone.pro 1389share/gemrb/unhardcoded/iwd/sstone.pro
1378share/gemrb/unhardcoded/iwd/sstoneh.pro 1390share/gemrb/unhardcoded/iwd/sstoneh.pro
1379share/gemrb/unhardcoded/iwd/start.2da 1391share/gemrb/unhardcoded/iwd/start.2da
1380share/gemrb/unhardcoded/iwd/stone.pro 1392share/gemrb/unhardcoded/iwd/stone.pro
1381share/gemrb/unhardcoded/iwd/strengh.pro 1393share/gemrb/unhardcoded/iwd/strengh.pro
1382share/gemrb/unhardcoded/iwd/strings.2da 1394share/gemrb/unhardcoded/iwd/strings.2da
1383share/gemrb/unhardcoded/iwd/suffoc.pro 1395share/gemrb/unhardcoded/iwd/suffoc.pro
1384share/gemrb/unhardcoded/iwd/suffoch.pro 1396share/gemrb/unhardcoded/iwd/suffoch.pro
1385share/gemrb/unhardcoded/iwd/sunfire.pro 1397share/gemrb/unhardcoded/iwd/sunfire.pro
1386share/gemrb/unhardcoded/iwd/sunray.pro 1398share/gemrb/unhardcoded/iwd/sunray.pro
1387share/gemrb/unhardcoded/iwd/sunscoh.pro 1399share/gemrb/unhardcoded/iwd/sunscoh.pro
1388share/gemrb/unhardcoded/iwd/swave.pro 1400share/gemrb/unhardcoded/iwd/swave.pro
1389share/gemrb/unhardcoded/iwd/swaveh.pro 1401share/gemrb/unhardcoded/iwd/swaveh.pro
1390share/gemrb/unhardcoded/iwd/trapglyp.pro 1402share/gemrb/unhardcoded/iwd/trapglyp.pro
1391share/gemrb/unhardcoded/iwd/trapskul.pro 1403share/gemrb/unhardcoded/iwd/trapskul.pro
1392share/gemrb/unhardcoded/iwd/tspray.pro 1404share/gemrb/unhardcoded/iwd/tspray.pro
1393share/gemrb/unhardcoded/iwd/ublight.pro 1405share/gemrb/unhardcoded/iwd/ublight.pro
1394share/gemrb/unhardcoded/iwd/uward.pro 1406share/gemrb/unhardcoded/iwd/uward.pro
1395share/gemrb/unhardcoded/iwd/uwardh.pro 1407share/gemrb/unhardcoded/iwd/uwardh.pro
1396share/gemrb/unhardcoded/iwd/vcremap.2da 1408share/gemrb/unhardcoded/iwd/vcremap.2da
1397share/gemrb/unhardcoded/iwd/vspherh.pro 1409share/gemrb/unhardcoded/iwd/vspherh.pro
1398share/gemrb/unhardcoded/iwd/walksnd.2da 1410share/gemrb/unhardcoded/iwd/walksnd.2da
1399share/gemrb/unhardcoded/iwd/wdeath1.pro 1411share/gemrb/unhardcoded/iwd/wdeath1.pro
1400share/gemrb/unhardcoded/iwd/wdeath2.pro 1412share/gemrb/unhardcoded/iwd/wdeath2.pro
1401share/gemrb/unhardcoded/iwd/weapprof.2da 1413share/gemrb/unhardcoded/iwd/weapprof.2da
1402share/gemrb/unhardcoded/iwd/web.pro 1414share/gemrb/unhardcoded/iwd/web.pro
1403share/gemrb/unhardcoded/iwd/whirlw.pro 1415share/gemrb/unhardcoded/iwd/whirlw.pro
1404share/gemrb/unhardcoded/iwd/womoon.pro 1416share/gemrb/unhardcoded/iwd/womoon.pro
1405share/gemrb/unhardcoded/iwd/wowisp.pro 1417share/gemrb/unhardcoded/iwd/wowisp.pro
1406share/gemrb/unhardcoded/iwd/wvdeath.pro 1418share/gemrb/unhardcoded/iwd/wvdeath.pro
1407share/gemrb/unhardcoded/iwd/wvhith.pro 1419share/gemrb/unhardcoded/iwd/wvhith.pro
1408share/gemrb/unhardcoded/iwd/wwolf.pro 1420share/gemrb/unhardcoded/iwd/wwolf.pro
1409share/gemrb/unhardcoded/iwd/zlaura.pro 1421share/gemrb/unhardcoded/iwd/zlaura.pro
1410share/gemrb/unhardcoded/iwd2/24895.spl 1422share/gemrb/unhardcoded/iwd2/24895.spl
1411share/gemrb/unhardcoded/iwd2/24896.spl 1423share/gemrb/unhardcoded/iwd2/24896.spl
1412share/gemrb/unhardcoded/iwd2/35782.spl 1424share/gemrb/unhardcoded/iwd2/35782.spl
1413share/gemrb/unhardcoded/iwd2/37678.spl 1425share/gemrb/unhardcoded/iwd2/37678.spl
1414share/gemrb/unhardcoded/iwd2/39280.spl 1426share/gemrb/unhardcoded/iwd2/39280.spl
1415share/gemrb/unhardcoded/iwd2/39309.spl 1427share/gemrb/unhardcoded/iwd2/39309.spl
1416share/gemrb/unhardcoded/iwd2/39310.spl 1428share/gemrb/unhardcoded/iwd2/39310.spl
1417share/gemrb/unhardcoded/iwd2/39311.spl 1429share/gemrb/unhardcoded/iwd2/39311.spl
1418share/gemrb/unhardcoded/iwd2/39312.spl 1430share/gemrb/unhardcoded/iwd2/39312.spl
1419share/gemrb/unhardcoded/iwd2/39313.spl 1431share/gemrb/unhardcoded/iwd2/39313.spl
1420share/gemrb/unhardcoded/iwd2/39314.spl 1432share/gemrb/unhardcoded/iwd2/39314.spl
1421share/gemrb/unhardcoded/iwd2/39315.spl 1433share/gemrb/unhardcoded/iwd2/39315.spl
1422share/gemrb/unhardcoded/iwd2/39316.spl 1434share/gemrb/unhardcoded/iwd2/39316.spl
1423share/gemrb/unhardcoded/iwd2/39317.spl 1435share/gemrb/unhardcoded/iwd2/39317.spl
1424share/gemrb/unhardcoded/iwd2/39326.spl 1436share/gemrb/unhardcoded/iwd2/39326.spl
1425share/gemrb/unhardcoded/iwd2/39327.spl 1437share/gemrb/unhardcoded/iwd2/39327.spl
1426share/gemrb/unhardcoded/iwd2/39328.spl 1438share/gemrb/unhardcoded/iwd2/39328.spl
1427share/gemrb/unhardcoded/iwd2/39329.spl 1439share/gemrb/unhardcoded/iwd2/39329.spl
1428share/gemrb/unhardcoded/iwd2/39330.spl 1440share/gemrb/unhardcoded/iwd2/39330.spl
1429share/gemrb/unhardcoded/iwd2/39331.spl 1441share/gemrb/unhardcoded/iwd2/39331.spl
1430share/gemrb/unhardcoded/iwd2/39332.spl 1442share/gemrb/unhardcoded/iwd2/39332.spl
1431share/gemrb/unhardcoded/iwd2/39747.spl 1443share/gemrb/unhardcoded/iwd2/39747.spl
1432share/gemrb/unhardcoded/iwd2/39748.spl 1444share/gemrb/unhardcoded/iwd2/39748.spl
1433share/gemrb/unhardcoded/iwd2/39751.spl 1445share/gemrb/unhardcoded/iwd2/39751.spl
1434share/gemrb/unhardcoded/iwd2/39753.spl 1446share/gemrb/unhardcoded/iwd2/39753.spl
1435share/gemrb/unhardcoded/iwd2/39755.spl 1447share/gemrb/unhardcoded/iwd2/39755.spl
1436share/gemrb/unhardcoded/iwd2/39763.spl 1448share/gemrb/unhardcoded/iwd2/39763.spl
1437share/gemrb/unhardcoded/iwd2/ability.2da 1449share/gemrb/unhardcoded/iwd2/ability.2da
1438share/gemrb/unhardcoded/iwd2/abjura.pro 1450share/gemrb/unhardcoded/iwd2/abjura.pro
1439share/gemrb/unhardcoded/iwd2/abjurap.pro 1451share/gemrb/unhardcoded/iwd2/abjurap.pro
1440share/gemrb/unhardcoded/iwd2/abjurh.pro 1452share/gemrb/unhardcoded/iwd2/abjurh.pro
1441share/gemrb/unhardcoded/iwd2/abjurt.pro 1453share/gemrb/unhardcoded/iwd2/abjurt.pro
1442share/gemrb/unhardcoded/iwd2/abreath.pro 1454share/gemrb/unhardcoded/iwd2/abreath.pro
1443share/gemrb/unhardcoded/iwd2/acidblgr.pro 1455share/gemrb/unhardcoded/iwd2/acidblgr.pro
1444share/gemrb/unhardcoded/iwd2/acidblmu.pro 1456share/gemrb/unhardcoded/iwd2/acidblmu.pro
1445share/gemrb/unhardcoded/iwd2/acidblob.pro 1457share/gemrb/unhardcoded/iwd2/acidblob.pro
1446share/gemrb/unhardcoded/iwd2/acidbloc.pro 1458share/gemrb/unhardcoded/iwd2/acidbloc.pro
1447share/gemrb/unhardcoded/iwd2/acidh.pro 1459share/gemrb/unhardcoded/iwd2/acidh.pro
1448share/gemrb/unhardcoded/iwd2/acidh.vvc 1460share/gemrb/unhardcoded/iwd2/acidh.vvc
1449share/gemrb/unhardcoded/iwd2/adhwil.pro 1461share/gemrb/unhardcoded/iwd2/adhwil.pro
1450share/gemrb/unhardcoded/iwd2/adhwilh.pro 1462share/gemrb/unhardcoded/iwd2/adhwilh.pro
1451share/gemrb/unhardcoded/iwd2/alance.pro 1463share/gemrb/unhardcoded/iwd2/alance.pro
1452share/gemrb/unhardcoded/iwd2/aligns.2da 1464share/gemrb/unhardcoded/iwd2/aligns.2da
1453share/gemrb/unhardcoded/iwd2/altera.pro 1465share/gemrb/unhardcoded/iwd2/altera.pro
1454share/gemrb/unhardcoded/iwd2/alteranp.pro 1466share/gemrb/unhardcoded/iwd2/alteranp.pro
1455share/gemrb/unhardcoded/iwd2/alterap.pro 1467share/gemrb/unhardcoded/iwd2/alterap.pro
1456share/gemrb/unhardcoded/iwd2/alteraps.pro 1468share/gemrb/unhardcoded/iwd2/alteraps.pro
1457share/gemrb/unhardcoded/iwd2/alteras.pro 1469share/gemrb/unhardcoded/iwd2/alteras.pro
1458share/gemrb/unhardcoded/iwd2/alterh.pro 1470share/gemrb/unhardcoded/iwd2/alterh.pro
1459share/gemrb/unhardcoded/iwd2/altert.pro 1471share/gemrb/unhardcoded/iwd2/altert.pro
1460share/gemrb/unhardcoded/iwd2/area1np.pro 1472share/gemrb/unhardcoded/iwd2/area1np.pro
1461share/gemrb/unhardcoded/iwd2/area1npl.pro 1473share/gemrb/unhardcoded/iwd2/area1npl.pro
1462share/gemrb/unhardcoded/iwd2/area1p.pro 1474share/gemrb/unhardcoded/iwd2/area1p.pro
1463share/gemrb/unhardcoded/iwd2/area1pl.pro 1475share/gemrb/unhardcoded/iwd2/area1pl.pro
1464share/gemrb/unhardcoded/iwd2/area1ps.pro 1476share/gemrb/unhardcoded/iwd2/area1ps.pro
1465share/gemrb/unhardcoded/iwd2/area2.pro 1477share/gemrb/unhardcoded/iwd2/area2.pro
1466share/gemrb/unhardcoded/iwd2/area2np.pro 1478share/gemrb/unhardcoded/iwd2/area2np.pro
1467share/gemrb/unhardcoded/iwd2/area3p.pro 1479share/gemrb/unhardcoded/iwd2/area3p.pro
1468share/gemrb/unhardcoded/iwd2/area4np.pro 1480share/gemrb/unhardcoded/iwd2/area4np.pro
1469share/gemrb/unhardcoded/iwd2/area_reverbs.2da 1481share/gemrb/unhardcoded/iwd2/area_reverbs.2da
1470share/gemrb/unhardcoded/iwd2/armorh.pro 1482share/gemrb/unhardcoded/iwd2/armorh.pro
1471share/gemrb/unhardcoded/iwd2/arrow.pro 1483share/gemrb/unhardcoded/iwd2/arrow.pro
1472share/gemrb/unhardcoded/iwd2/arrowex.pro 1484share/gemrb/unhardcoded/iwd2/arrowex.pro
1473share/gemrb/unhardcoded/iwd2/arrowflb.pro 1485share/gemrb/unhardcoded/iwd2/arrowflb.pro
1474share/gemrb/unhardcoded/iwd2/arrowflg.pro 1486share/gemrb/unhardcoded/iwd2/arrowflg.pro
1475share/gemrb/unhardcoded/iwd2/arrowfli.pro 1487share/gemrb/unhardcoded/iwd2/arrowfli.pro
1476share/gemrb/unhardcoded/iwd2/arrowflm.pro 1488share/gemrb/unhardcoded/iwd2/arrowflm.pro
1477share/gemrb/unhardcoded/iwd2/arrowhvy.pro 1489share/gemrb/unhardcoded/iwd2/arrowhvy.pro
1478share/gemrb/unhardcoded/iwd2/artstr.spl 1490share/gemrb/unhardcoded/iwd2/artstr.spl
1479share/gemrb/unhardcoded/iwd2/ascorch.pro 1491share/gemrb/unhardcoded/iwd2/ascorch.pro
1480share/gemrb/unhardcoded/iwd2/astorm.pro 1492share/gemrb/unhardcoded/iwd2/astorm.pro
1481share/gemrb/unhardcoded/iwd2/asumm1.pro 1493share/gemrb/unhardcoded/iwd2/asumm1.pro
1482share/gemrb/unhardcoded/iwd2/asumm1h.pro 1494share/gemrb/unhardcoded/iwd2/asumm1h.pro
1483share/gemrb/unhardcoded/iwd2/asumm1x.pro 1495share/gemrb/unhardcoded/iwd2/asumm1x.pro
1484share/gemrb/unhardcoded/iwd2/asumm2h.pro 1496share/gemrb/unhardcoded/iwd2/asumm2h.pro
1485share/gemrb/unhardcoded/iwd2/asumm3h.pro 1497share/gemrb/unhardcoded/iwd2/asumm3h.pro
1486share/gemrb/unhardcoded/iwd2/avatars.2da 1498share/gemrb/unhardcoded/iwd2/avatars.2da
1487share/gemrb/unhardcoded/iwd2/avprefc.2da 1499share/gemrb/unhardcoded/iwd2/avprefc.2da
1488share/gemrb/unhardcoded/iwd2/avprefr.2da 1500share/gemrb/unhardcoded/iwd2/avprefr.2da
1489share/gemrb/unhardcoded/iwd2/axe.pro 1501share/gemrb/unhardcoded/iwd2/axe.pro
1490share/gemrb/unhardcoded/iwd2/axeex.pro 1502share/gemrb/unhardcoded/iwd2/axeex.pro
1491share/gemrb/unhardcoded/iwd2/bbarrh1.pro 1503share/gemrb/unhardcoded/iwd2/bbarrh1.pro
1492share/gemrb/unhardcoded/iwd2/bbarrh2.pro 1504share/gemrb/unhardcoded/iwd2/bbarrh2.pro
1493share/gemrb/unhardcoded/iwd2/bbarrier.pro 1505share/gemrb/unhardcoded/iwd2/bbarrier.pro
1494share/gemrb/unhardcoded/iwd2/bdeath.pro 1506share/gemrb/unhardcoded/iwd2/bdeath.pro
1495share/gemrb/unhardcoded/iwd2/bigboldr.pro 1507share/gemrb/unhardcoded/iwd2/bigboldr.pro
1496share/gemrb/unhardcoded/iwd2/bios.2da 1508share/gemrb/unhardcoded/iwd2/bios.2da
1497share/gemrb/unhardcoded/iwd2/blessh.pro 1509share/gemrb/unhardcoded/iwd2/blessh.pro
1498share/gemrb/unhardcoded/iwd2/bloodclr.2da 1510share/gemrb/unhardcoded/iwd2/bloodclr.2da
1499share/gemrb/unhardcoded/iwd2/bolt.pro 1511share/gemrb/unhardcoded/iwd2/bolt.pro
1500share/gemrb/unhardcoded/iwd2/boltex.pro 1512share/gemrb/unhardcoded/iwd2/boltex.pro
1501share/gemrb/unhardcoded/iwd2/boulder.pro 1513share/gemrb/unhardcoded/iwd2/boulder.pro
1502share/gemrb/unhardcoded/iwd2/bscloud.pro 1514share/gemrb/unhardcoded/iwd2/bscloud.pro
1503share/gemrb/unhardcoded/iwd2/bullet.pro 1515share/gemrb/unhardcoded/iwd2/bullet.pro
1504share/gemrb/unhardcoded/iwd2/bulletex.pro 1516share/gemrb/unhardcoded/iwd2/bulletex.pro
1505share/gemrb/unhardcoded/iwd2/calllih.pro 1517share/gemrb/unhardcoded/iwd2/calllih.pro
1506share/gemrb/unhardcoded/iwd2/ccdamah.pro 1518share/gemrb/unhardcoded/iwd2/ccdamah.pro
1507share/gemrb/unhardcoded/iwd2/ccommah.pro 1519share/gemrb/unhardcoded/iwd2/ccommah.pro
1508share/gemrb/unhardcoded/iwd2/ccwounh.pro 1520share/gemrb/unhardcoded/iwd2/ccwounh.pro
1509share/gemrb/unhardcoded/iwd2/cdiseah.pro 1521share/gemrb/unhardcoded/iwd2/cdiseah.pro
1510share/gemrb/unhardcoded/iwd2/ceelem1.pro 1522share/gemrb/unhardcoded/iwd2/ceelem1.pro
1511share/gemrb/unhardcoded/iwd2/ceelemh.pro 1523share/gemrb/unhardcoded/iwd2/ceelemh.pro
1512share/gemrb/unhardcoded/iwd2/ceelemx.pro 1524share/gemrb/unhardcoded/iwd2/ceelemx.pro
1513share/gemrb/unhardcoded/iwd2/cfelem1.pro 1525share/gemrb/unhardcoded/iwd2/cfelem1.pro
1514share/gemrb/unhardcoded/iwd2/cfelemh.pro 1526share/gemrb/unhardcoded/iwd2/cfelemh.pro
1515share/gemrb/unhardcoded/iwd2/cfelemx.pro 1527share/gemrb/unhardcoded/iwd2/cfelemx.pro
1516share/gemrb/unhardcoded/iwd2/cfog.pro 1528share/gemrb/unhardcoded/iwd2/cfog.pro
1517share/gemrb/unhardcoded/iwd2/cgraceh.pro 1529share/gemrb/unhardcoded/iwd2/cgraceh.pro
1518share/gemrb/unhardcoded/iwd2/chant.pro 1530share/gemrb/unhardcoded/iwd2/chant.pro
1519share/gemrb/unhardcoded/iwd2/chromorb.pro 1531share/gemrb/unhardcoded/iwd2/chromorb.pro
1520share/gemrb/unhardcoded/iwd2/classes.2da 1532share/gemrb/unhardcoded/iwd2/classes.2da
1521share/gemrb/unhardcoded/iwd2/cldamah.pro 1533share/gemrb/unhardcoded/iwd2/cldamah.pro
1522share/gemrb/unhardcoded/iwd2/clight.pro 1534share/gemrb/unhardcoded/iwd2/clight.pro
1523share/gemrb/unhardcoded/iwd2/cloud.pro 1535share/gemrb/unhardcoded/iwd2/cloud.pro
1524share/gemrb/unhardcoded/iwd2/cloudb.pro 1536share/gemrb/unhardcoded/iwd2/cloudb.pro
1525share/gemrb/unhardcoded/iwd2/cloudbh.pro 1537share/gemrb/unhardcoded/iwd2/cloudbh.pro
1526share/gemrb/unhardcoded/iwd2/cloudkil.pro 1538share/gemrb/unhardcoded/iwd2/cloudkil.pro
1527share/gemrb/unhardcoded/iwd2/cloudks.pro 1539share/gemrb/unhardcoded/iwd2/cloudks.pro
1528share/gemrb/unhardcoded/iwd2/clowncol.2da 1540share/gemrb/unhardcoded/iwd2/clowncol.2da
1529share/gemrb/unhardcoded/iwd2/clskills.2da 1541share/gemrb/unhardcoded/iwd2/clskills.2da
1530share/gemrb/unhardcoded/iwd2/clwounh.pro 1542share/gemrb/unhardcoded/iwd2/clwounh.pro
1531share/gemrb/unhardcoded/iwd2/cmdamah.pro 1543share/gemrb/unhardcoded/iwd2/cmdamah.pro
1532share/gemrb/unhardcoded/iwd2/cmwounh.pro 1544share/gemrb/unhardcoded/iwd2/cmwounh.pro
1533share/gemrb/unhardcoded/iwd2/cobones.pro 1545share/gemrb/unhardcoded/iwd2/cobones.pro
1534share/gemrb/unhardcoded/iwd2/cobonh1.pro 1546share/gemrb/unhardcoded/iwd2/cobonh1.pro
1535share/gemrb/unhardcoded/iwd2/cobonh2.pro 1547share/gemrb/unhardcoded/iwd2/cobonh2.pro
1536share/gemrb/unhardcoded/iwd2/cocold.pro 1548share/gemrb/unhardcoded/iwd2/cocold.pro
1537share/gemrb/unhardcoded/iwd2/cocoldh.pro 1549share/gemrb/unhardcoded/iwd2/cocoldh.pro
1538share/gemrb/unhardcoded/iwd2/cofire.pro 1550share/gemrb/unhardcoded/iwd2/cofire.pro
1539share/gemrb/unhardcoded/iwd2/coldh.pro 1551share/gemrb/unhardcoded/iwd2/coldh.pro
1540share/gemrb/unhardcoded/iwd2/coldh.vvc 1552share/gemrb/unhardcoded/iwd2/coldh.vvc
1541share/gemrb/unhardcoded/iwd2/colrspry.pro 1553share/gemrb/unhardcoded/iwd2/colrspry.pro
1542share/gemrb/unhardcoded/iwd2/confush.pro 1554share/gemrb/unhardcoded/iwd2/confush.pro
1543share/gemrb/unhardcoded/iwd2/confusp.pro 1555share/gemrb/unhardcoded/iwd2/confusp.pro
1544share/gemrb/unhardcoded/iwd2/confusw.pro 1556share/gemrb/unhardcoded/iwd2/confusw.pro
1545share/gemrb/unhardcoded/iwd2/conjuh.pro 1557share/gemrb/unhardcoded/iwd2/conjuh.pro
1546share/gemrb/unhardcoded/iwd2/conjut.pro 1558share/gemrb/unhardcoded/iwd2/conjut.pro
1547share/gemrb/unhardcoded/iwd2/copest.pro 1559share/gemrb/unhardcoded/iwd2/copest.pro
1548share/gemrb/unhardcoded/iwd2/cripstr.spl 1560share/gemrb/unhardcoded/iwd2/cripstr.spl
1549share/gemrb/unhardcoded/iwd2/cry150.pro 1561share/gemrb/unhardcoded/iwd2/cry150.pro
1550share/gemrb/unhardcoded/iwd2/cry200.pro 1562share/gemrb/unhardcoded/iwd2/cry200.pro
1551share/gemrb/unhardcoded/iwd2/cry225.pro 1563share/gemrb/unhardcoded/iwd2/cry225.pro
1552share/gemrb/unhardcoded/iwd2/cry250.pro 1564share/gemrb/unhardcoded/iwd2/cry250.pro
1553share/gemrb/unhardcoded/iwd2/cry500np.pro 1565share/gemrb/unhardcoded/iwd2/cry500np.pro
1554share/gemrb/unhardcoded/iwd2/csdamah.pro 1566share/gemrb/unhardcoded/iwd2/csdamah.pro
1555share/gemrb/unhardcoded/iwd2/cstrenh.pro 1567share/gemrb/unhardcoded/iwd2/cstrenh.pro
1556share/gemrb/unhardcoded/iwd2/cswounh.pro 1568share/gemrb/unhardcoded/iwd2/cswounh.pro
1557share/gemrb/unhardcoded/iwd2/curseh.pro 1569share/gemrb/unhardcoded/iwd2/curseh.pro
1558share/gemrb/unhardcoded/iwd2/cwelem1.pro 1570share/gemrb/unhardcoded/iwd2/cwelem1.pro
1559share/gemrb/unhardcoded/iwd2/cwelemh.pro 1571share/gemrb/unhardcoded/iwd2/cwelemh.pro
1560share/gemrb/unhardcoded/iwd2/cwelemx.pro 1572share/gemrb/unhardcoded/iwd2/cwelemx.pro
1561share/gemrb/unhardcoded/iwd2/dagger.pro 1573share/gemrb/unhardcoded/iwd2/dagger.pro
1562share/gemrb/unhardcoded/iwd2/daggerex.pro 1574share/gemrb/unhardcoded/iwd2/daggerex.pro
1563share/gemrb/unhardcoded/iwd2/damage.2da 1575share/gemrb/unhardcoded/iwd2/damage.2da
1564share/gemrb/unhardcoded/iwd2/dart.pro 1576share/gemrb/unhardcoded/iwd2/dart.pro
1565share/gemrb/unhardcoded/iwd2/dartex.pro 1577share/gemrb/unhardcoded/iwd2/dartex.pro
1566share/gemrb/unhardcoded/iwd2/dattach.pro 1578share/gemrb/unhardcoded/iwd2/dattach.pro
1567share/gemrb/unhardcoded/iwd2/dbfireb.pro 1579share/gemrb/unhardcoded/iwd2/dbfireb.pro
1568share/gemrb/unhardcoded/iwd2/dbreath.pro 1580share/gemrb/unhardcoded/iwd2/dbreath.pro
1569share/gemrb/unhardcoded/iwd2/ddeath.pro 1581share/gemrb/unhardcoded/iwd2/ddeath.pro
1570share/gemrb/unhardcoded/iwd2/ddeath2.pro 1582share/gemrb/unhardcoded/iwd2/ddeath2.pro
1571share/gemrb/unhardcoded/iwd2/ddoorh.pro 1583share/gemrb/unhardcoded/iwd2/ddoorh.pro
1572share/gemrb/unhardcoded/iwd2/defsound.2da 1584share/gemrb/unhardcoded/iwd2/defsound.2da
1573share/gemrb/unhardcoded/iwd2/destruh.pro 1585share/gemrb/unhardcoded/iwd2/destruh.pro
1574share/gemrb/unhardcoded/iwd2/detect.spl 1586share/gemrb/unhardcoded/iwd2/detect.spl
1575share/gemrb/unhardcoded/iwd2/dfog.pro 1587share/gemrb/unhardcoded/iwd2/dfog.pro
1576share/gemrb/unhardcoded/iwd2/dirty.spl 1588share/gemrb/unhardcoded/iwd2/dirty.spl
1577share/gemrb/unhardcoded/iwd2/disint.pro 1589share/gemrb/unhardcoded/iwd2/disint.pro
1578share/gemrb/unhardcoded/iwd2/disinth.pro 1590share/gemrb/unhardcoded/iwd2/disinth.pro
1579share/gemrb/unhardcoded/iwd2/dispel.pro 1591share/gemrb/unhardcoded/iwd2/dispel.pro
1580share/gemrb/unhardcoded/iwd2/divinh.pro 1592share/gemrb/unhardcoded/iwd2/divinh.pro
1581share/gemrb/unhardcoded/iwd2/divint.pro 1593share/gemrb/unhardcoded/iwd2/divint.pro
1582share/gemrb/unhardcoded/iwd2/dsclass.2da 1594share/gemrb/unhardcoded/iwd2/dsclass.2da
1583share/gemrb/unhardcoded/iwd2/dspell.pro 1595share/gemrb/unhardcoded/iwd2/dspell.pro
1584share/gemrb/unhardcoded/iwd2/dspellh.pro 1596share/gemrb/unhardcoded/iwd2/dspellh.pro
1585share/gemrb/unhardcoded/iwd2/dsrace.2da 1597share/gemrb/unhardcoded/iwd2/dsrace.2da
1586share/gemrb/unhardcoded/iwd2/dstable.2da 1598share/gemrb/unhardcoded/iwd2/dstable.2da
1587share/gemrb/unhardcoded/iwd2/effects.ids 1599share/gemrb/unhardcoded/iwd2/effects.ids
1588share/gemrb/unhardcoded/iwd2/electrh.pro 1600share/gemrb/unhardcoded/iwd2/electrh.pro
1589share/gemrb/unhardcoded/iwd2/electrh.vvc 1601share/gemrb/unhardcoded/iwd2/electrh.vvc
1590share/gemrb/unhardcoded/iwd2/emotion.pro 1602share/gemrb/unhardcoded/iwd2/emotion.pro
1591share/gemrb/unhardcoded/iwd2/enchah.pro 1603share/gemrb/unhardcoded/iwd2/enchah.pro
1592share/gemrb/unhardcoded/iwd2/enchan.pro 1604share/gemrb/unhardcoded/iwd2/enchan.pro
1593share/gemrb/unhardcoded/iwd2/enchannp.pro 1605share/gemrb/unhardcoded/iwd2/enchannp.pro
1594share/gemrb/unhardcoded/iwd2/enchat.pro 1606share/gemrb/unhardcoded/iwd2/enchat.pro
1595share/gemrb/unhardcoded/iwd2/entangle.pro 1607share/gemrb/unhardcoded/iwd2/entangle.pro
1596share/gemrb/unhardcoded/iwd2/entropy.2da 1608share/gemrb/unhardcoded/iwd2/entropy.2da
1597share/gemrb/unhardcoded/iwd2/equake.pro 1609share/gemrb/unhardcoded/iwd2/equake.pro
1598share/gemrb/unhardcoded/iwd2/exaltah.pro 1610share/gemrb/unhardcoded/iwd2/exaltah.pro
1599share/gemrb/unhardcoded/iwd2/factioh.pro 1611share/gemrb/unhardcoded/iwd2/factioh.pro
1600share/gemrb/unhardcoded/iwd2/fatigue.spl 1612share/gemrb/unhardcoded/iwd2/fatigue.spl
1601share/gemrb/unhardcoded/iwd2/fbreath.pro 1613share/gemrb/unhardcoded/iwd2/fbreath.pro
1602share/gemrb/unhardcoded/iwd2/feat00.spl 1614share/gemrb/unhardcoded/iwd2/feat00.spl
1603share/gemrb/unhardcoded/iwd2/feat02.spl 1615share/gemrb/unhardcoded/iwd2/feat02.spl
1604share/gemrb/unhardcoded/iwd2/feat07.spl 1616share/gemrb/unhardcoded/iwd2/feat07.spl
1605share/gemrb/unhardcoded/iwd2/feat09.spl 1617share/gemrb/unhardcoded/iwd2/feat09.spl
1606share/gemrb/unhardcoded/iwd2/feat0a.spl 1618share/gemrb/unhardcoded/iwd2/feat0a.spl
1607share/gemrb/unhardcoded/iwd2/feat0c.spl 1619share/gemrb/unhardcoded/iwd2/feat0c.spl
1608share/gemrb/unhardcoded/iwd2/feat0d.spl 1620share/gemrb/unhardcoded/iwd2/feat0d.spl
1609share/gemrb/unhardcoded/iwd2/feat0f.spl 1621share/gemrb/unhardcoded/iwd2/feat0f.spl
1610share/gemrb/unhardcoded/iwd2/feat10.spl 1622share/gemrb/unhardcoded/iwd2/feat10.spl
1611share/gemrb/unhardcoded/iwd2/feat18.spl 1623share/gemrb/unhardcoded/iwd2/feat18.spl
1612share/gemrb/unhardcoded/iwd2/feat19.spl 1624share/gemrb/unhardcoded/iwd2/feat19.spl
1613share/gemrb/unhardcoded/iwd2/feat1a.spl 1625share/gemrb/unhardcoded/iwd2/feat1a.spl
1614share/gemrb/unhardcoded/iwd2/feat1c.spl 1626share/gemrb/unhardcoded/iwd2/feat1c.spl
1615share/gemrb/unhardcoded/iwd2/feat1c1.eff 1627share/gemrb/unhardcoded/iwd2/feat1c1.eff
1616share/gemrb/unhardcoded/iwd2/feat1c2.eff 1628share/gemrb/unhardcoded/iwd2/feat1c2.eff
1617share/gemrb/unhardcoded/iwd2/feat1d.spl 1629share/gemrb/unhardcoded/iwd2/feat1d.spl
1618share/gemrb/unhardcoded/iwd2/feat1e.spl 1630share/gemrb/unhardcoded/iwd2/feat1e.spl
1619share/gemrb/unhardcoded/iwd2/feat20.spl 1631share/gemrb/unhardcoded/iwd2/feat20.spl
1620share/gemrb/unhardcoded/iwd2/feat22.spl 1632share/gemrb/unhardcoded/iwd2/feat22.spl
1621share/gemrb/unhardcoded/iwd2/feat23.spl 1633share/gemrb/unhardcoded/iwd2/feat23.spl
1622share/gemrb/unhardcoded/iwd2/feat25.spl 1634share/gemrb/unhardcoded/iwd2/feat25.spl
1623share/gemrb/unhardcoded/iwd2/feat32.spl 1635share/gemrb/unhardcoded/iwd2/feat32.spl
1624share/gemrb/unhardcoded/iwd2/feat33.spl 1636share/gemrb/unhardcoded/iwd2/feat33.spl
1625share/gemrb/unhardcoded/iwd2/feat3b.spl 1637share/gemrb/unhardcoded/iwd2/feat3b.spl
1626share/gemrb/unhardcoded/iwd2/feat41.spl 1638share/gemrb/unhardcoded/iwd2/feat41.spl
1627share/gemrb/unhardcoded/iwd2/featreq.2da 1639share/gemrb/unhardcoded/iwd2/featreq.2da
1628share/gemrb/unhardcoded/iwd2/ffinger.pro 1640share/gemrb/unhardcoded/iwd2/ffinger.pro
1629share/gemrb/unhardcoded/iwd2/findtrap.pro 1641share/gemrb/unhardcoded/iwd2/findtrap.pro
1630share/gemrb/unhardcoded/iwd2/fireball.pro 1642share/gemrb/unhardcoded/iwd2/fireball.pro
1631share/gemrb/unhardcoded/iwd2/fireblic.pro 1643share/gemrb/unhardcoded/iwd2/fireblic.pro
1632share/gemrb/unhardcoded/iwd2/firebolt.pro 1644share/gemrb/unhardcoded/iwd2/firebolt.pro
1633share/gemrb/unhardcoded/iwd2/firebtbl.pro 1645share/gemrb/unhardcoded/iwd2/firebtbl.pro
1634share/gemrb/unhardcoded/iwd2/fireh.pro 1646share/gemrb/unhardcoded/iwd2/fireh.pro
1635share/gemrb/unhardcoded/iwd2/fireh.vvc 1647share/gemrb/unhardcoded/iwd2/fireh.vvc
1636share/gemrb/unhardcoded/iwd2/firestor.pro 1648share/gemrb/unhardcoded/iwd2/firestor.pro
1637share/gemrb/unhardcoded/iwd2/fistweap.2da 1649share/gemrb/unhardcoded/iwd2/fistweap.2da
1638share/gemrb/unhardcoded/iwd2/fodeath.pro 1650share/gemrb/unhardcoded/iwd2/fodeath.pro
1639share/gemrb/unhardcoded/iwd2/fonts.2da 1651share/gemrb/unhardcoded/iwd2/fonts.2da
1640share/gemrb/unhardcoded/iwd2/formatio.2da 1652share/gemrb/unhardcoded/iwd2/formatio.2da
1641share/gemrb/unhardcoded/iwd2/fseed.pro 1653share/gemrb/unhardcoded/iwd2/fseed.pro
1642share/gemrb/unhardcoded/iwd2/fstrikh.pro 1654share/gemrb/unhardcoded/iwd2/fstrikh.pro
1643share/gemrb/unhardcoded/iwd2/gabreath.pro 1655share/gemrb/unhardcoded/iwd2/gabreath.pro
1644share/gemrb/unhardcoded/iwd2/gametime.2da 1656share/gemrb/unhardcoded/iwd2/gametime.2da
1645share/gemrb/unhardcoded/iwd2/garmorh.pro 1657share/gemrb/unhardcoded/iwd2/garmorh.pro
1646share/gemrb/unhardcoded/iwd2/gate.pro 1658share/gemrb/unhardcoded/iwd2/gate.pro
1647share/gemrb/unhardcoded/iwd2/gaze.pro 1659share/gemrb/unhardcoded/iwd2/gaze.pro
1648share/gemrb/unhardcoded/iwd2/geloopx.pro 1660share/gemrb/unhardcoded/iwd2/geloopx.pro
1649share/gemrb/unhardcoded/iwd2/gemprjtl.ids 1661share/gemrb/unhardcoded/iwd2/gemprjtl.ids
1650share/gemrb/unhardcoded/iwd2/gemrb.ini 1662share/gemrb/unhardcoded/iwd2/gemrb.ini
1651share/gemrb/unhardcoded/iwd2/gemtrig.ids 1663share/gemrb/unhardcoded/iwd2/gemtrig.ids
1652share/gemrb/unhardcoded/iwd2/gender.2da 1664share/gemrb/unhardcoded/iwd2/gender.2da
1653share/gemrb/unhardcoded/iwd2/golcloud.pro 1665share/gemrb/unhardcoded/iwd2/golcloud.pro
1654share/gemrb/unhardcoded/iwd2/grease.pro 1666share/gemrb/unhardcoded/iwd2/grease.pro
1655share/gemrb/unhardcoded/iwd2/gshout.pro 1667share/gemrb/unhardcoded/iwd2/gshout.pro
1656share/gemrb/unhardcoded/iwd2/guibtact.2da 1668share/gemrb/unhardcoded/iwd2/guibtact.2da
1657share/gemrb/unhardcoded/iwd2/guils.chu 1669share/gemrb/unhardcoded/iwd2/guils.chu
1658share/gemrb/unhardcoded/iwd2/hamstr.spl 1670share/gemrb/unhardcoded/iwd2/hamstr.spl
1659share/gemrb/unhardcoded/iwd2/harmh.pro 1671share/gemrb/unhardcoded/iwd2/harmh.pro
1660share/gemrb/unhardcoded/iwd2/harmony.pro 1672share/gemrb/unhardcoded/iwd2/harmony.pro
1661share/gemrb/unhardcoded/iwd2/haterace.2da 1673share/gemrb/unhardcoded/iwd2/haterace.2da
1662share/gemrb/unhardcoded/iwd2/healh.pro 1674share/gemrb/unhardcoded/iwd2/healh.pro
1663share/gemrb/unhardcoded/iwd2/hmighth.pro 1675share/gemrb/unhardcoded/iwd2/hmighth.pro
1664share/gemrb/unhardcoded/iwd2/hold.pro 1676share/gemrb/unhardcoded/iwd2/hold.pro
1665share/gemrb/unhardcoded/iwd2/hsmite.pro 1677share/gemrb/unhardcoded/iwd2/hsmite.pro
1666share/gemrb/unhardcoded/iwd2/hword.pro 1678share/gemrb/unhardcoded/iwd2/hword.pro
1667share/gemrb/unhardcoded/iwd2/icelance.pro 1679share/gemrb/unhardcoded/iwd2/icelance.pro
1668share/gemrb/unhardcoded/iwd2/icestorm.pro 1680share/gemrb/unhardcoded/iwd2/icestorm.pro
1669share/gemrb/unhardcoded/iwd2/icloud.pro 1681share/gemrb/unhardcoded/iwd2/icloud.pro
1670share/gemrb/unhardcoded/iwd2/iclouda.pro 1682share/gemrb/unhardcoded/iwd2/iclouda.pro
1671share/gemrb/unhardcoded/iwd2/icloudb.pro 1683share/gemrb/unhardcoded/iwd2/icloudb.pro
1672share/gemrb/unhardcoded/iwd2/illush.pro 1684share/gemrb/unhardcoded/iwd2/illush.pro
1673share/gemrb/unhardcoded/iwd2/illust.pro 1685share/gemrb/unhardcoded/iwd2/illust.pro
1674share/gemrb/unhardcoded/iwd2/inarea.pro 1686share/gemrb/unhardcoded/iwd2/inarea.pro
1675share/gemrb/unhardcoded/iwd2/inareanp.pro 1687share/gemrb/unhardcoded/iwd2/inareanp.pro
1676share/gemrb/unhardcoded/iwd2/inareapa.pro 1688share/gemrb/unhardcoded/iwd2/inareapa.pro
1677share/gemrb/unhardcoded/iwd2/inareasm.pro 1689share/gemrb/unhardcoded/iwd2/inareasm.pro
1678share/gemrb/unhardcoded/iwd2/invoch.pro 1690share/gemrb/unhardcoded/iwd2/invoch.pro
1679share/gemrb/unhardcoded/iwd2/invoct.pro 1691share/gemrb/unhardcoded/iwd2/invoct.pro
1680share/gemrb/unhardcoded/iwd2/iplague.pro 1692share/gemrb/unhardcoded/iwd2/iplague.pro
1681share/gemrb/unhardcoded/iwd2/island00.2da 1693share/gemrb/unhardcoded/iwd2/island00.2da
1682share/gemrb/unhardcoded/iwd2/itemdata.2da 1694share/gemrb/unhardcoded/iwd2/itemdata.2da
1683share/gemrb/unhardcoded/iwd2/itemsnd.2da 1695share/gemrb/unhardcoded/iwd2/itemsnd.2da
1684share/gemrb/unhardcoded/iwd2/itemspec.2da 1696share/gemrb/unhardcoded/iwd2/itemspec.2da
1685share/gemrb/unhardcoded/iwd2/itemtype.2da 1697share/gemrb/unhardcoded/iwd2/itemtype.2da
1686share/gemrb/unhardcoded/iwd2/itemuse.2da 1698share/gemrb/unhardcoded/iwd2/itemuse.2da
1687share/gemrb/unhardcoded/iwd2/iwdshtab.2da 1699share/gemrb/unhardcoded/iwd2/iwdshtab.2da
1688share/gemrb/unhardcoded/iwd2/lightb.pro 1700share/gemrb/unhardcoded/iwd2/lightb.pro
1689share/gemrb/unhardcoded/iwd2/lightbnb.pro 1701share/gemrb/unhardcoded/iwd2/lightbnb.pro
1690share/gemrb/unhardcoded/iwd2/lightsto.pro 1702share/gemrb/unhardcoded/iwd2/lightsto.pro
1691share/gemrb/unhardcoded/iwd2/lodisr.pro 1703share/gemrb/unhardcoded/iwd2/lodisr.pro
1692share/gemrb/unhardcoded/iwd2/magesch.2da 1704share/gemrb/unhardcoded/iwd2/magesch.2da
1693share/gemrb/unhardcoded/iwd2/magicmis.pro 1705share/gemrb/unhardcoded/iwd2/magicmis.pro
1694share/gemrb/unhardcoded/iwd2/malison.pro 1706share/gemrb/unhardcoded/iwd2/malison.pro
1695share/gemrb/unhardcoded/iwd2/mdfeats.2da 1707share/gemrb/unhardcoded/iwd2/mdfeats.2da
1696share/gemrb/unhardcoded/iwd2/mfmiss.pro 1708share/gemrb/unhardcoded/iwd2/mfmiss.pro
1697share/gemrb/unhardcoded/iwd2/mfmiss2.pro 1709share/gemrb/unhardcoded/iwd2/mfmiss2.pro
1698share/gemrb/unhardcoded/iwd2/mfmissh.pro 1710share/gemrb/unhardcoded/iwd2/mfmissh.pro
1699share/gemrb/unhardcoded/iwd2/mfog.pro 1711share/gemrb/unhardcoded/iwd2/mfog.pro
1700share/gemrb/unhardcoded/iwd2/mmagich.pro 1712share/gemrb/unhardcoded/iwd2/mmagich.pro
1701share/gemrb/unhardcoded/iwd2/mmissile.pro 1713share/gemrb/unhardcoded/iwd2/mmissile.pro
1702share/gemrb/unhardcoded/iwd2/modal.2da 1714share/gemrb/unhardcoded/iwd2/modal.2da
1703share/gemrb/unhardcoded/iwd2/moelda.pro 1715share/gemrb/unhardcoded/iwd2/moelda.pro
1704share/gemrb/unhardcoded/iwd2/mrage.pro 1716share/gemrb/unhardcoded/iwd2/mrage.pro
1705share/gemrb/unhardcoded/iwd2/mrageh.pro 1717share/gemrb/unhardcoded/iwd2/mrageh.pro
1706share/gemrb/unhardcoded/iwd2/mspore.pro 1718share/gemrb/unhardcoded/iwd2/mspore.pro
1707share/gemrb/unhardcoded/iwd2/msumm1.pro 1719share/gemrb/unhardcoded/iwd2/msumm1.pro
1708share/gemrb/unhardcoded/iwd2/msumm1h.pro 1720share/gemrb/unhardcoded/iwd2/msumm1h.pro
1709share/gemrb/unhardcoded/iwd2/msumm1x.pro 1721share/gemrb/unhardcoded/iwd2/msumm1x.pro
1710share/gemrb/unhardcoded/iwd2/msumm2h.pro 1722share/gemrb/unhardcoded/iwd2/msumm2h.pro
1711share/gemrb/unhardcoded/iwd2/msumm3h.pro 1723share/gemrb/unhardcoded/iwd2/msumm3h.pro
1712share/gemrb/unhardcoded/iwd2/msumm4h.pro 1724share/gemrb/unhardcoded/iwd2/msumm4h.pro
1713share/gemrb/unhardcoded/iwd2/msumm5h.pro 1725share/gemrb/unhardcoded/iwd2/msumm5h.pro
1714share/gemrb/unhardcoded/iwd2/msumm6h.pro 1726share/gemrb/unhardcoded/iwd2/msumm6h.pro
1715share/gemrb/unhardcoded/iwd2/msumm7h.pro 1727share/gemrb/unhardcoded/iwd2/msumm7h.pro
1716share/gemrb/unhardcoded/iwd2/mswordh.pro 1728share/gemrb/unhardcoded/iwd2/mswordh.pro
1717share/gemrb/unhardcoded/iwd2/mtouchh.pro 1729share/gemrb/unhardcoded/iwd2/mtouchh.pro
1718share/gemrb/unhardcoded/iwd2/necroh.pro 1730share/gemrb/unhardcoded/iwd2/necroh.pro
1719share/gemrb/unhardcoded/iwd2/necrot.pro 1731share/gemrb/unhardcoded/iwd2/necrot.pro
1720share/gemrb/unhardcoded/iwd2/npoisoh.pro 1732share/gemrb/unhardcoded/iwd2/npoisoh.pro
1721share/gemrb/unhardcoded/iwd2/ofsphe.pro 1733share/gemrb/unhardcoded/iwd2/ofsphe.pro
1722share/gemrb/unhardcoded/iwd2/overlay.2da 1734share/gemrb/unhardcoded/iwd2/overlay.2da
1723share/gemrb/unhardcoded/iwd2/paralh.pro 1735share/gemrb/unhardcoded/iwd2/paralh.pro
1724share/gemrb/unhardcoded/iwd2/pathfind.2da 1736share/gemrb/unhardcoded/iwd2/pathfind.2da
1725share/gemrb/unhardcoded/iwd2/pfire.pro 1737share/gemrb/unhardcoded/iwd2/pfire.pro
1726share/gemrb/unhardcoded/iwd2/pictures.2da 1738share/gemrb/unhardcoded/iwd2/pictures.2da
1727share/gemrb/unhardcoded/iwd2/poisonh.pro 1739share/gemrb/unhardcoded/iwd2/poisonh.pro
1728share/gemrb/unhardcoded/iwd2/polystat.2da 1740share/gemrb/unhardcoded/iwd2/polystat.2da
1729share/gemrb/unhardcoded/iwd2/portalh.pro 1741share/gemrb/unhardcoded/iwd2/portalh.pro
1730share/gemrb/unhardcoded/iwd2/prayer.pro 1742share/gemrb/unhardcoded/iwd2/prayer.pro
1731share/gemrb/unhardcoded/iwd2/prayerh.pro 1743share/gemrb/unhardcoded/iwd2/prayerh.pro
1732share/gemrb/unhardcoded/iwd2/proftype.2da 1744share/gemrb/unhardcoded/iwd2/proftype.2da
1733share/gemrb/unhardcoded/iwd2/protevil.pro 1745share/gemrb/unhardcoded/iwd2/protevil.pro
1734share/gemrb/unhardcoded/iwd2/prtl_cl.pro 1746share/gemrb/unhardcoded/iwd2/prtl_cl.pro
1735share/gemrb/unhardcoded/iwd2/prtl_op.pro 1747share/gemrb/unhardcoded/iwd2/prtl_op.pro
1736share/gemrb/unhardcoded/iwd2/pspray.pro 1748share/gemrb/unhardcoded/iwd2/pspray.pro
1737share/gemrb/unhardcoded/iwd2/pwkill.pro 1749share/gemrb/unhardcoded/iwd2/pwkill.pro
1738share/gemrb/unhardcoded/iwd2/pwsileh.pro 1750share/gemrb/unhardcoded/iwd2/pwsileh.pro
1739share/gemrb/unhardcoded/iwd2/pwstun.pro 1751share/gemrb/unhardcoded/iwd2/pwstun.pro
1740share/gemrb/unhardcoded/iwd2/pwstunh.pro 1752share/gemrb/unhardcoded/iwd2/pwstunh.pro
1741share/gemrb/unhardcoded/iwd2/raceflag.2da 1753share/gemrb/unhardcoded/iwd2/raceflag.2da
1742share/gemrb/unhardcoded/iwd2/races.2da 1754share/gemrb/unhardcoded/iwd2/races.2da
1743share/gemrb/unhardcoded/iwd2/racskill.2da 1755share/gemrb/unhardcoded/iwd2/racskill.2da
1744share/gemrb/unhardcoded/iwd2/rad100.pro 1756share/gemrb/unhardcoded/iwd2/rad100.pro
1745share/gemrb/unhardcoded/iwd2/rad250.pro 1757share/gemrb/unhardcoded/iwd2/rad250.pro
1746share/gemrb/unhardcoded/iwd2/rad300.pro 1758share/gemrb/unhardcoded/iwd2/rad300.pro
1747share/gemrb/unhardcoded/iwd2/randitem.2da 1759share/gemrb/unhardcoded/iwd2/randitem.2da
1748share/gemrb/unhardcoded/iwd2/rdeadh.pro 1760share/gemrb/unhardcoded/iwd2/rdeadh.pro
1749share/gemrb/unhardcoded/iwd2/recitah.pro 1761share/gemrb/unhardcoded/iwd2/recitah.pro
1750share/gemrb/unhardcoded/iwd2/resurrh.pro 1762share/gemrb/unhardcoded/iwd2/resurrh.pro
1751share/gemrb/unhardcoded/iwd2/rng450.pro 1763share/gemrb/unhardcoded/iwd2/rng450.pro
1752share/gemrb/unhardcoded/iwd2/rparalh.pro 1764share/gemrb/unhardcoded/iwd2/rparalh.pro
1753share/gemrb/unhardcoded/iwd2/rwotfag.pro 1765share/gemrb/unhardcoded/iwd2/rwotfag.pro
1754share/gemrb/unhardcoded/iwd2/rwotfah.pro 1766share/gemrb/unhardcoded/iwd2/rwotfah.pro
1755share/gemrb/unhardcoded/iwd2/sarmorh.pro 1767share/gemrb/unhardcoded/iwd2/sarmorh.pro
1756share/gemrb/unhardcoded/iwd2/savegame.2da 1768share/gemrb/unhardcoded/iwd2/savegame.2da
1757share/gemrb/unhardcoded/iwd2/scharge.pro 1769share/gemrb/unhardcoded/iwd2/scharge.pro
1758share/gemrb/unhardcoded/iwd2/schargh.pro 1770share/gemrb/unhardcoded/iwd2/schargh.pro
1759share/gemrb/unhardcoded/iwd2/script.2da 1771share/gemrb/unhardcoded/iwd2/script.2da
1760share/gemrb/unhardcoded/iwd2/seater.pro 1772share/gemrb/unhardcoded/iwd2/seater.pro
1761share/gemrb/unhardcoded/iwd2/seaterh.pro 1773share/gemrb/unhardcoded/iwd2/seaterh.pro
1762share/gemrb/unhardcoded/iwd2/sgrowth.pro 1774share/gemrb/unhardcoded/iwd2/sgrowth.pro
1763share/gemrb/unhardcoded/iwd2/shout.pro 1775share/gemrb/unhardcoded/iwd2/shout.pro
1764share/gemrb/unhardcoded/iwd2/shroud.pro 1776share/gemrb/unhardcoded/iwd2/shroud.pro
1765share/gemrb/unhardcoded/iwd2/shtable.2da 1777share/gemrb/unhardcoded/iwd2/shtable.2da
1766share/gemrb/unhardcoded/iwd2/skillsta.2da 1778share/gemrb/unhardcoded/iwd2/skillsta.2da
1767share/gemrb/unhardcoded/iwd2/sleep.pro 1779share/gemrb/unhardcoded/iwd2/sleep.pro
1768share/gemrb/unhardcoded/iwd2/slivinh.pro 1780share/gemrb/unhardcoded/iwd2/slivinh.pro
1769share/gemrb/unhardcoded/iwd2/slottype.2da 1781share/gemrb/unhardcoded/iwd2/slottype.2da
1770share/gemrb/unhardcoded/iwd2/soflamh.pro 1782share/gemrb/unhardcoded/iwd2/soflamh.pro
1771share/gemrb/unhardcoded/iwd2/sohope.pro 1783share/gemrb/unhardcoded/iwd2/sohope.pro
1772share/gemrb/unhardcoded/iwd2/sooneh.pro 1784share/gemrb/unhardcoded/iwd2/sooneh.pro
1773share/gemrb/unhardcoded/iwd2/sopain.pro 1785share/gemrb/unhardcoded/iwd2/sopain.pro
1774share/gemrb/unhardcoded/iwd2/sparbknp.pro 1786share/gemrb/unhardcoded/iwd2/sparbknp.pro
1775share/gemrb/unhardcoded/iwd2/sparbkpa.pro 1787share/gemrb/unhardcoded/iwd2/sparbkpa.pro
1776share/gemrb/unhardcoded/iwd2/sparblnp.pro 1788share/gemrb/unhardcoded/iwd2/sparblnp.pro
1777share/gemrb/unhardcoded/iwd2/sparblpa.pro 1789share/gemrb/unhardcoded/iwd2/sparblpa.pro
1778share/gemrb/unhardcoded/iwd2/sparchnp.pro 1790share/gemrb/unhardcoded/iwd2/sparchnp.pro
1779share/gemrb/unhardcoded/iwd2/sparchpa.pro 1791share/gemrb/unhardcoded/iwd2/sparchpa.pro
1780share/gemrb/unhardcoded/iwd2/spargonp.pro 1792share/gemrb/unhardcoded/iwd2/spargonp.pro
1781share/gemrb/unhardcoded/iwd2/spargopa.pro 1793share/gemrb/unhardcoded/iwd2/spargopa.pro
1782share/gemrb/unhardcoded/iwd2/spargrnp.pro 1794share/gemrb/unhardcoded/iwd2/spargrnp.pro
1783share/gemrb/unhardcoded/iwd2/spargrpa.pro 1795share/gemrb/unhardcoded/iwd2/spargrpa.pro
1784share/gemrb/unhardcoded/iwd2/sparicnp.pro 1796share/gemrb/unhardcoded/iwd2/sparicnp.pro
1785share/gemrb/unhardcoded/iwd2/sparicpa.pro 1797share/gemrb/unhardcoded/iwd2/sparicpa.pro
1786share/gemrb/unhardcoded/iwd2/sparklbk.pro 1798share/gemrb/unhardcoded/iwd2/sparklbk.pro
1787share/gemrb/unhardcoded/iwd2/sparklbl.pro 1799share/gemrb/unhardcoded/iwd2/sparklbl.pro
1788share/gemrb/unhardcoded/iwd2/sparklch.pro 1800share/gemrb/unhardcoded/iwd2/sparklch.pro
1789share/gemrb/unhardcoded/iwd2/sparklgo.pro 1801share/gemrb/unhardcoded/iwd2/sparklgo.pro
1790share/gemrb/unhardcoded/iwd2/sparklgr.pro 1802share/gemrb/unhardcoded/iwd2/sparklgr.pro
1791share/gemrb/unhardcoded/iwd2/sparklic.pro 1803share/gemrb/unhardcoded/iwd2/sparklic.pro
1792share/gemrb/unhardcoded/iwd2/sparklma.pro 1804share/gemrb/unhardcoded/iwd2/sparklma.pro
1793share/gemrb/unhardcoded/iwd2/sparklor.pro 1805share/gemrb/unhardcoded/iwd2/sparklor.pro
1794share/gemrb/unhardcoded/iwd2/sparklpu.pro 1806share/gemrb/unhardcoded/iwd2/sparklpu.pro
1795share/gemrb/unhardcoded/iwd2/sparklre.pro 1807share/gemrb/unhardcoded/iwd2/sparklre.pro
1796share/gemrb/unhardcoded/iwd2/sparklst.pro 1808share/gemrb/unhardcoded/iwd2/sparklst.pro
1797share/gemrb/unhardcoded/iwd2/sparmanp.pro 1809share/gemrb/unhardcoded/iwd2/sparmanp.pro
1798share/gemrb/unhardcoded/iwd2/sparmapa.pro 1810share/gemrb/unhardcoded/iwd2/sparmapa.pro
1799share/gemrb/unhardcoded/iwd2/sparornp.pro 1811share/gemrb/unhardcoded/iwd2/sparornp.pro
1800share/gemrb/unhardcoded/iwd2/sparorpa.pro 1812share/gemrb/unhardcoded/iwd2/sparorpa.pro
1801share/gemrb/unhardcoded/iwd2/sparpunp.pro 1813share/gemrb/unhardcoded/iwd2/sparpunp.pro
1802share/gemrb/unhardcoded/iwd2/sparpupa.pro 1814share/gemrb/unhardcoded/iwd2/sparpupa.pro
1803share/gemrb/unhardcoded/iwd2/sparrenp.pro 1815share/gemrb/unhardcoded/iwd2/sparrenp.pro
1804share/gemrb/unhardcoded/iwd2/sparrepa.pro 1816share/gemrb/unhardcoded/iwd2/sparrepa.pro
1805share/gemrb/unhardcoded/iwd2/sparstnp.pro 1817share/gemrb/unhardcoded/iwd2/sparstnp.pro
1806share/gemrb/unhardcoded/iwd2/sparstpa.pro 1818share/gemrb/unhardcoded/iwd2/sparstpa.pro
1807share/gemrb/unhardcoded/iwd2/spbrnhnd.pro 1819share/gemrb/unhardcoded/iwd2/spbrnhnd.pro
1808share/gemrb/unhardcoded/iwd2/spear.pro 1820share/gemrb/unhardcoded/iwd2/spear.pro
1809share/gemrb/unhardcoded/iwd2/spearex.pro 1821share/gemrb/unhardcoded/iwd2/spearex.pro
1810share/gemrb/unhardcoded/iwd2/spfdeath.pro 1822share/gemrb/unhardcoded/iwd2/spfdeath.pro
1811share/gemrb/unhardcoded/iwd2/spfirebl.pro 1823share/gemrb/unhardcoded/iwd2/spfirebl.pro
1812share/gemrb/unhardcoded/iwd2/spin231r.spl 1824share/gemrb/unhardcoded/iwd2/spin231r.spl
1813share/gemrb/unhardcoded/iwd2/spin232r.spl 1825share/gemrb/unhardcoded/iwd2/spin232r.spl
1814share/gemrb/unhardcoded/iwd2/spin233r.spl 1826share/gemrb/unhardcoded/iwd2/spin233r.spl
1815share/gemrb/unhardcoded/iwd2/spklarbk.pro 1827share/gemrb/unhardcoded/iwd2/spklarbk.pro
1816share/gemrb/unhardcoded/iwd2/spklarbl.pro 1828share/gemrb/unhardcoded/iwd2/spklarbl.pro
1817share/gemrb/unhardcoded/iwd2/spklarch.pro 1829share/gemrb/unhardcoded/iwd2/spklarch.pro
1818share/gemrb/unhardcoded/iwd2/spklargo.pro 1830share/gemrb/unhardcoded/iwd2/spklargo.pro
1819share/gemrb/unhardcoded/iwd2/spklargr.pro 1831share/gemrb/unhardcoded/iwd2/spklargr.pro
1820share/gemrb/unhardcoded/iwd2/spklaric.pro 1832share/gemrb/unhardcoded/iwd2/spklaric.pro
1821share/gemrb/unhardcoded/iwd2/spklarma.pro 1833share/gemrb/unhardcoded/iwd2/spklarma.pro
1822share/gemrb/unhardcoded/iwd2/spklaror.pro 1834share/gemrb/unhardcoded/iwd2/spklaror.pro
1823share/gemrb/unhardcoded/iwd2/spklarpu.pro 1835share/gemrb/unhardcoded/iwd2/spklarpu.pro
1824share/gemrb/unhardcoded/iwd2/spklarre.pro 1836share/gemrb/unhardcoded/iwd2/spklarre.pro
1825share/gemrb/unhardcoded/iwd2/spklarst.pro 1837share/gemrb/unhardcoded/iwd2/spklarst.pro
1826share/gemrb/unhardcoded/iwd2/splfocus.2da 1838share/gemrb/unhardcoded/iwd2/splfocus.2da
1827share/gemrb/unhardcoded/iwd2/splprot.2da 1839share/gemrb/unhardcoded/iwd2/splprot.2da
1828share/gemrb/unhardcoded/iwd2/splspec.2da 1840share/gemrb/unhardcoded/iwd2/splspec.2da
1829share/gemrb/unhardcoded/iwd2/spoisoh.pro 1841share/gemrb/unhardcoded/iwd2/spoisoh.pro
1830share/gemrb/unhardcoded/iwd2/spscorch.pro 1842share/gemrb/unhardcoded/iwd2/spscorch.pro
1831share/gemrb/unhardcoded/iwd2/spscoric.pro 1843share/gemrb/unhardcoded/iwd2/spscoric.pro
1832share/gemrb/unhardcoded/iwd2/spwrath.pro 1844share/gemrb/unhardcoded/iwd2/spwrath.pro
1833share/gemrb/unhardcoded/iwd2/ssorbh.pro 1845share/gemrb/unhardcoded/iwd2/ssorbh.pro
1834share/gemrb/unhardcoded/iwd2/ssswarm.pro 1846share/gemrb/unhardcoded/iwd2/ssswarm.pro
1835share/gemrb/unhardcoded/iwd2/sstone.pro 1847share/gemrb/unhardcoded/iwd2/sstone.pro
1836share/gemrb/unhardcoded/iwd2/sstoneh.pro 1848share/gemrb/unhardcoded/iwd2/sstoneh.pro
1837share/gemrb/unhardcoded/iwd2/start.2da 1849share/gemrb/unhardcoded/iwd2/start.2da
1838share/gemrb/unhardcoded/iwd2/stone.pro 1850share/gemrb/unhardcoded/iwd2/stone.pro
1839share/gemrb/unhardcoded/iwd2/strengh.pro 1851share/gemrb/unhardcoded/iwd2/strengh.pro
1840share/gemrb/unhardcoded/iwd2/strings.2da 1852share/gemrb/unhardcoded/iwd2/strings.2da
1841share/gemrb/unhardcoded/iwd2/suffoc.pro 1853share/gemrb/unhardcoded/iwd2/suffoc.pro
1842share/gemrb/unhardcoded/iwd2/suffoch.pro 1854share/gemrb/unhardcoded/iwd2/suffoch.pro
1843share/gemrb/unhardcoded/iwd2/sunfire.pro 1855share/gemrb/unhardcoded/iwd2/sunfire.pro
1844share/gemrb/unhardcoded/iwd2/sunray.pro 1856share/gemrb/unhardcoded/iwd2/sunray.pro
1845share/gemrb/unhardcoded/iwd2/sunscoh.pro 1857share/gemrb/unhardcoded/iwd2/sunscoh.pro
1846share/gemrb/unhardcoded/iwd2/swave.pro 1858share/gemrb/unhardcoded/iwd2/swave.pro
1847share/gemrb/unhardcoded/iwd2/swaveh.pro 1859share/gemrb/unhardcoded/iwd2/swaveh.pro
1848share/gemrb/unhardcoded/iwd2/topics.2da 1860share/gemrb/unhardcoded/iwd2/topics.2da
1849share/gemrb/unhardcoded/iwd2/trap.pro 1861share/gemrb/unhardcoded/iwd2/trap.pro
1850share/gemrb/unhardcoded/iwd2/trapglyp.pro 1862share/gemrb/unhardcoded/iwd2/trapglyp.pro
1851share/gemrb/unhardcoded/iwd2/trapskul.pro 1863share/gemrb/unhardcoded/iwd2/trapskul.pro
1852share/gemrb/unhardcoded/iwd2/tspray.pro 1864share/gemrb/unhardcoded/iwd2/tspray.pro
1853share/gemrb/unhardcoded/iwd2/turn.spl 1865share/gemrb/unhardcoded/iwd2/turn.spl
1854share/gemrb/unhardcoded/iwd2/ublight.pro 1866share/gemrb/unhardcoded/iwd2/ublight.pro
1855share/gemrb/unhardcoded/iwd2/uhold.pro 1867share/gemrb/unhardcoded/iwd2/uhold.pro
1856share/gemrb/unhardcoded/iwd2/uncanny.spl 1868share/gemrb/unhardcoded/iwd2/uncanny.spl
1857share/gemrb/unhardcoded/iwd2/uward.pro 1869share/gemrb/unhardcoded/iwd2/uward.pro
1858share/gemrb/unhardcoded/iwd2/uwardh.pro 1870share/gemrb/unhardcoded/iwd2/uwardh.pro
1859share/gemrb/unhardcoded/iwd2/vcremap.2da 1871share/gemrb/unhardcoded/iwd2/vcremap.2da
1860share/gemrb/unhardcoded/iwd2/vspherh.pro 1872share/gemrb/unhardcoded/iwd2/vspherh.pro
1861share/gemrb/unhardcoded/iwd2/walksnd.2da 1873share/gemrb/unhardcoded/iwd2/walksnd.2da
1862share/gemrb/unhardcoded/iwd2/wdeath1.pro 1874share/gemrb/unhardcoded/iwd2/wdeath1.pro
1863share/gemrb/unhardcoded/iwd2/wdeath2.pro 1875share/gemrb/unhardcoded/iwd2/wdeath2.pro
1864share/gemrb/unhardcoded/iwd2/web.pro 1876share/gemrb/unhardcoded/iwd2/web.pro
1865share/gemrb/unhardcoded/iwd2/whirlw.pro 1877share/gemrb/unhardcoded/iwd2/whirlw.pro
1866share/gemrb/unhardcoded/iwd2/wofire.pro 1878share/gemrb/unhardcoded/iwd2/wofire.pro
1867share/gemrb/unhardcoded/iwd2/womoon.pro 1879share/gemrb/unhardcoded/iwd2/womoon.pro
1868share/gemrb/unhardcoded/iwd2/womoonx.pro 1880share/gemrb/unhardcoded/iwd2/womoonx.pro
1869share/gemrb/unhardcoded/iwd2/wowisp.pro 1881share/gemrb/unhardcoded/iwd2/wowisp.pro
1870share/gemrb/unhardcoded/iwd2/wvdeath.pro 1882share/gemrb/unhardcoded/iwd2/wvdeath.pro
1871share/gemrb/unhardcoded/iwd2/wvhith.pro 1883share/gemrb/unhardcoded/iwd2/wvhith.pro
1872share/gemrb/unhardcoded/iwd2/wwolf.pro 1884share/gemrb/unhardcoded/iwd2/wwolf.pro
1873share/gemrb/unhardcoded/iwd2/zlaura.pro 1885share/gemrb/unhardcoded/iwd2/zlaura.pro
1874share/gemrb/unhardcoded/pst/MPALETTE.bmp 1886share/gemrb/unhardcoded/pst/MPALETTE.bmp
1875share/gemrb/unhardcoded/pst/abcomm.2da 1887share/gemrb/unhardcoded/pst/abcomm.2da
1876share/gemrb/unhardcoded/pst/acidblgr.pro 1888share/gemrb/unhardcoded/pst/acidblgr.pro
1877share/gemrb/unhardcoded/pst/acidblmu.pro 1889share/gemrb/unhardcoded/pst/acidblmu.pro
1878share/gemrb/unhardcoded/pst/acidblob.pro 1890share/gemrb/unhardcoded/pst/acidblob.pro
1879share/gemrb/unhardcoded/pst/acidbloc.pro 1891share/gemrb/unhardcoded/pst/acidbloc.pro
1880share/gemrb/unhardcoded/pst/adder.spl 1892share/gemrb/unhardcoded/pst/adder.spl
1881share/gemrb/unhardcoded/pst/aligns.2da 1893share/gemrb/unhardcoded/pst/aligns.2da
1882share/gemrb/unhardcoded/pst/amiss.pro 1894share/gemrb/unhardcoded/pst/amiss.pro
1883share/gemrb/unhardcoded/pst/amiss2.pro 1895share/gemrb/unhardcoded/pst/amiss2.pro
1884share/gemrb/unhardcoded/pst/anims.2da 1896share/gemrb/unhardcoded/pst/anims.2da
1885share/gemrb/unhardcoded/pst/aotorm.pro 1897share/gemrb/unhardcoded/pst/aotorm.pro
1886share/gemrb/unhardcoded/pst/areapro.2da 1898share/gemrb/unhardcoded/pst/areapro.2da
1887share/gemrb/unhardcoded/pst/arrow.pro 1899share/gemrb/unhardcoded/pst/arrow.pro
1888share/gemrb/unhardcoded/pst/arrowex.pro 1900share/gemrb/unhardcoded/pst/arrowex.pro
1889share/gemrb/unhardcoded/pst/arrowflb.pro 1901share/gemrb/unhardcoded/pst/arrowflb.pro
1890share/gemrb/unhardcoded/pst/arrowflg.pro 1902share/gemrb/unhardcoded/pst/arrowflg.pro
1891share/gemrb/unhardcoded/pst/arrowfli.pro 1903share/gemrb/unhardcoded/pst/arrowfli.pro
1892share/gemrb/unhardcoded/pst/arrowflm.pro 1904share/gemrb/unhardcoded/pst/arrowflm.pro
1893share/gemrb/unhardcoded/pst/arrowhvy.pro 1905share/gemrb/unhardcoded/pst/arrowhvy.pro
1894share/gemrb/unhardcoded/pst/astorm.pro 1906share/gemrb/unhardcoded/pst/astorm.pro
1895share/gemrb/unhardcoded/pst/astorm.spl 1907share/gemrb/unhardcoded/pst/astorm.spl
1896share/gemrb/unhardcoded/pst/avatars.2da 1908share/gemrb/unhardcoded/pst/avatars.2da
1897share/gemrb/unhardcoded/pst/avprefix.2da 1909share/gemrb/unhardcoded/pst/avprefix.2da
1898share/gemrb/unhardcoded/pst/avprefs.2da 1910share/gemrb/unhardcoded/pst/avprefs.2da
1899share/gemrb/unhardcoded/pst/avslots.2da 1911share/gemrb/unhardcoded/pst/avslots.2da
1900share/gemrb/unhardcoded/pst/axe.pro 1912share/gemrb/unhardcoded/pst/axe.pro
1901share/gemrb/unhardcoded/pst/axeex.pro 1913share/gemrb/unhardcoded/pst/axeex.pro
1902share/gemrb/unhardcoded/pst/axoft.spl 1914share/gemrb/unhardcoded/pst/axoft.spl
1903share/gemrb/unhardcoded/pst/baldur.bcs 1915share/gemrb/unhardcoded/pst/baldur.bcs
1904share/gemrb/unhardcoded/pst/ball.spl 1916share/gemrb/unhardcoded/pst/ball.spl
1905share/gemrb/unhardcoded/pst/bbridge.pro 1917share/gemrb/unhardcoded/pst/bbridge.pro
1906share/gemrb/unhardcoded/pst/bbridge.spl 1918share/gemrb/unhardcoded/pst/bbridge.spl
1907share/gemrb/unhardcoded/pst/bios.2da 1919share/gemrb/unhardcoded/pst/bios.2da
1908share/gemrb/unhardcoded/pst/blessed.pro 1920share/gemrb/unhardcoded/pst/blessed.pro
1909share/gemrb/unhardcoded/pst/blight.pro 1921share/gemrb/unhardcoded/pst/blight.pro
1910share/gemrb/unhardcoded/pst/blight2.pro 1922share/gemrb/unhardcoded/pst/blight2.pro
1911share/gemrb/unhardcoded/pst/bluetint.spl 1923share/gemrb/unhardcoded/pst/bluetint.spl
1912share/gemrb/unhardcoded/pst/bolt.pro 1924share/gemrb/unhardcoded/pst/bolt.pro
1913share/gemrb/unhardcoded/pst/boltex.pro 1925share/gemrb/unhardcoded/pst/boltex.pro
1914share/gemrb/unhardcoded/pst/bstorm.pro 1926share/gemrb/unhardcoded/pst/bstorm.pro
1915share/gemrb/unhardcoded/pst/bstorm.spl 1927share/gemrb/unhardcoded/pst/bstorm.spl
1916share/gemrb/unhardcoded/pst/bstorm2.pro 1928share/gemrb/unhardcoded/pst/bstorm2.pro
1917share/gemrb/unhardcoded/pst/bstorm2.spl 1929share/gemrb/unhardcoded/pst/bstorm2.spl
1918share/gemrb/unhardcoded/pst/bullet.pro 1930share/gemrb/unhardcoded/pst/bullet.pro
1919share/gemrb/unhardcoded/pst/bulletex.pro 1931share/gemrb/unhardcoded/pst/bulletex.pro
1920share/gemrb/unhardcoded/pst/callih.pro 1932share/gemrb/unhardcoded/pst/callih.pro
1921share/gemrb/unhardcoded/pst/cgtable.2da 1933share/gemrb/unhardcoded/pst/cgtable.2da
1922share/gemrb/unhardcoded/pst/chost.2da 1934share/gemrb/unhardcoded/pst/chost.2da
1923share/gemrb/unhardcoded/pst/chost.pro 1935share/gemrb/unhardcoded/pst/chost.pro
1924share/gemrb/unhardcoded/pst/chost.spl 1936share/gemrb/unhardcoded/pst/chost.spl
1925share/gemrb/unhardcoded/pst/chromorb.pro 1937share/gemrb/unhardcoded/pst/chromorb.pro
1926share/gemrb/unhardcoded/pst/classes.2da 1938share/gemrb/unhardcoded/pst/classes.2da
1927share/gemrb/unhardcoded/pst/cloud.pro 1939share/gemrb/unhardcoded/pst/cloud.pro
1928share/gemrb/unhardcoded/pst/cloudkil.pro 1940share/gemrb/unhardcoded/pst/cloudkil.pro
1929share/gemrb/unhardcoded/pst/clskills.2da 1941share/gemrb/unhardcoded/pst/clskills.2da
1930share/gemrb/unhardcoded/pst/cocold.pro 1942share/gemrb/unhardcoded/pst/cocold.pro
1931share/gemrb/unhardcoded/pst/colrspry.pro 1943share/gemrb/unhardcoded/pst/colrspry.pro
1932share/gemrb/unhardcoded/pst/comment.2da 1944share/gemrb/unhardcoded/pst/comment.2da
1933share/gemrb/unhardcoded/pst/conflag.pro 1945share/gemrb/unhardcoded/pst/conflag.pro
1934share/gemrb/unhardcoded/pst/conflag.spl 1946share/gemrb/unhardcoded/pst/conflag.spl
1935share/gemrb/unhardcoded/pst/confus.pro 1947share/gemrb/unhardcoded/pst/confus.pro
1936share/gemrb/unhardcoded/pst/crits.2da 1948share/gemrb/unhardcoded/pst/crits.2da
1937share/gemrb/unhardcoded/pst/cursed.pro 1949share/gemrb/unhardcoded/pst/cursed.pro
1938share/gemrb/unhardcoded/pst/dagger.pro 1950share/gemrb/unhardcoded/pst/dagger.pro
1939share/gemrb/unhardcoded/pst/daggerex.pro 1951share/gemrb/unhardcoded/pst/daggerex.pro
1940share/gemrb/unhardcoded/pst/damage.2da 1952share/gemrb/unhardcoded/pst/damage.2da
1941share/gemrb/unhardcoded/pst/dart.pro 1953share/gemrb/unhardcoded/pst/dart.pro
1942share/gemrb/unhardcoded/pst/dartex.pro 1954share/gemrb/unhardcoded/pst/dartex.pro
1943share/gemrb/unhardcoded/pst/dbolt.pro 1955share/gemrb/unhardcoded/pst/dbolt.pro
1944share/gemrb/unhardcoded/pst/dbolt.spl 1956share/gemrb/unhardcoded/pst/dbolt.spl
1945share/gemrb/unhardcoded/pst/defsound.2da 1957share/gemrb/unhardcoded/pst/defsound.2da
1946share/gemrb/unhardcoded/pst/dhell.pro 1958share/gemrb/unhardcoded/pst/dhell.pro
1947share/gemrb/unhardcoded/pst/dhell.spl 1959share/gemrb/unhardcoded/pst/dhell.spl
1948share/gemrb/unhardcoded/pst/dmhead.cre 1960share/gemrb/unhardcoded/pst/dmhead.cre
1949share/gemrb/unhardcoded/pst/dstable.2da 1961share/gemrb/unhardcoded/pst/dstable.2da
1950share/gemrb/unhardcoded/pst/easymaze.2da 1962share/gemrb/unhardcoded/pst/easymaze.2da
1951share/gemrb/unhardcoded/pst/ebomb.pro 1963share/gemrb/unhardcoded/pst/ebomb.pro
1952share/gemrb/unhardcoded/pst/effects.ids 1964share/gemrb/unhardcoded/pst/effects.ids
1953share/gemrb/unhardcoded/pst/elyfire.pro 1965share/gemrb/unhardcoded/pst/elyfire.pro
1954share/gemrb/unhardcoded/pst/elytear.pro 1966share/gemrb/unhardcoded/pst/elytear.pro
1955share/gemrb/unhardcoded/pst/embalm.pro 1967share/gemrb/unhardcoded/pst/embalm.pro
1956share/gemrb/unhardcoded/pst/estrike.pro 1968share/gemrb/unhardcoded/pst/estrike.pro
1957share/gemrb/unhardcoded/pst/factions.2da 1969share/gemrb/unhardcoded/pst/factions.2da
1958share/gemrb/unhardcoded/pst/faerie.spl 1970share/gemrb/unhardcoded/pst/faerie.spl
1959share/gemrb/unhardcoded/pst/fbomb.pro 1971share/gemrb/unhardcoded/pst/fbomb.pro
1960share/gemrb/unhardcoded/pst/fbyello.pro 1972share/gemrb/unhardcoded/pst/fbyello.pro
1961share/gemrb/unhardcoded/pst/fearaura.pro 1973share/gemrb/unhardcoded/pst/fearaura.pro
1962share/gemrb/unhardcoded/pst/ffire.pro 1974share/gemrb/unhardcoded/pst/ffire.pro
1963share/gemrb/unhardcoded/pst/fireball.pro 1975share/gemrb/unhardcoded/pst/fireball.pro
1964share/gemrb/unhardcoded/pst/firebolt.pro 1976share/gemrb/unhardcoded/pst/firebolt.pro
1965share/gemrb/unhardcoded/pst/firebtbl.pro 1977share/gemrb/unhardcoded/pst/firebtbl.pro
1966share/gemrb/unhardcoded/pst/fireice.pro 1978share/gemrb/unhardcoded/pst/fireice.pro
1967share/gemrb/unhardcoded/pst/firestor.pro 1979share/gemrb/unhardcoded/pst/firestor.pro
1968share/gemrb/unhardcoded/pst/fistweap.2da 1980share/gemrb/unhardcoded/pst/fistweap.2da
1969share/gemrb/unhardcoded/pst/fizzle.spl 1981share/gemrb/unhardcoded/pst/fizzle.spl
1970share/gemrb/unhardcoded/pst/fmiss.pro 1982share/gemrb/unhardcoded/pst/fmiss.pro
1971share/gemrb/unhardcoded/pst/fonts.2da 1983share/gemrb/unhardcoded/pst/fonts.2da
1972share/gemrb/unhardcoded/pst/formatio.2da 1984share/gemrb/unhardcoded/pst/formatio.2da
1973share/gemrb/unhardcoded/pst/foundry.2da 1985share/gemrb/unhardcoded/pst/foundry.2da
1974share/gemrb/unhardcoded/pst/frain.pro 1986share/gemrb/unhardcoded/pst/frain.pro
1975share/gemrb/unhardcoded/pst/gametime.2da 1987share/gemrb/unhardcoded/pst/gametime.2da
1976share/gemrb/unhardcoded/pst/gaze.pro 1988share/gemrb/unhardcoded/pst/gaze.pro
1977share/gemrb/unhardcoded/pst/gemprjtl.ids 1989share/gemrb/unhardcoded/pst/gemprjtl.ids
1978share/gemrb/unhardcoded/pst/gemrb.ini 1990share/gemrb/unhardcoded/pst/gemrb.ini
1979share/gemrb/unhardcoded/pst/genders.2da 1991share/gemrb/unhardcoded/pst/genders.2da
1980share/gemrb/unhardcoded/pst/goinvul.pro 1992share/gemrb/unhardcoded/pst/goinvul.pro
1981share/gemrb/unhardcoded/pst/goinvul.spl 1993share/gemrb/unhardcoded/pst/goinvul.spl
1982share/gemrb/unhardcoded/pst/grease.pro 1994share/gemrb/unhardcoded/pst/grease.pro
1983share/gemrb/unhardcoded/pst/guibtact.2da 1995share/gemrb/unhardcoded/pst/guibtact.2da
1984share/gemrb/unhardcoded/pst/guiid.chu 1996share/gemrb/unhardcoded/pst/guiid.chu
1985share/gemrb/unhardcoded/pst/guils.chu 1997share/gemrb/unhardcoded/pst/guils.chu
1986share/gemrb/unhardcoded/pst/guiw08.chu 1998share/gemrb/unhardcoded/pst/guiw08.chu
1987share/gemrb/unhardcoded/pst/hlymite.pro 1999share/gemrb/unhardcoded/pst/hlymite.pro
1988share/gemrb/unhardcoded/pst/hold.pro 2000share/gemrb/unhardcoded/pst/hold.pro
1989share/gemrb/unhardcoded/pst/holdund.pro 2001share/gemrb/unhardcoded/pst/holdund.pro
1990share/gemrb/unhardcoded/pst/holdund.spl 2002share/gemrb/unhardcoded/pst/holdund.spl
1991share/gemrb/unhardcoded/pst/hopand.pro 2003share/gemrb/unhardcoded/pst/hopand.pro
1992share/gemrb/unhardcoded/pst/hopand2.pro 2004share/gemrb/unhardcoded/pst/hopand2.pro
1993share/gemrb/unhardcoded/pst/horror.pro 2005share/gemrb/unhardcoded/pst/horror.pro
1994share/gemrb/unhardcoded/pst/howl.spl 2006share/gemrb/unhardcoded/pst/howl.spl
1995share/gemrb/unhardcoded/pst/ice.pro 2007share/gemrb/unhardcoded/pst/ice.pro
1996share/gemrb/unhardcoded/pst/ice.spl 2008share/gemrb/unhardcoded/pst/ice.spl
1997share/gemrb/unhardcoded/pst/ice2.spl 2009share/gemrb/unhardcoded/pst/ice2.spl
1998share/gemrb/unhardcoded/pst/ice3.spl 2010share/gemrb/unhardcoded/pst/ice3.spl
1999share/gemrb/unhardcoded/pst/icestorm.pro 2011share/gemrb/unhardcoded/pst/icestorm.pro
2000share/gemrb/unhardcoded/pst/ifury.pro 2012share/gemrb/unhardcoded/pst/ifury.pro
2001share/gemrb/unhardcoded/pst/ifury.spl 2013share/gemrb/unhardcoded/pst/ifury.spl
2002share/gemrb/unhardcoded/pst/ignusorb.pro 2014share/gemrb/unhardcoded/pst/ignusorb.pro
2003share/gemrb/unhardcoded/pst/ignusorb.vvc 2015share/gemrb/unhardcoded/pst/ignusorb.vvc
2004share/gemrb/unhardcoded/pst/iknife.pro 2016share/gemrb/unhardcoded/pst/iknife.pro
2005share/gemrb/unhardcoded/pst/imiss.pro 2017share/gemrb/unhardcoded/pst/imiss.pro
2006share/gemrb/unhardcoded/pst/imiss2.pro 2018share/gemrb/unhardcoded/pst/imiss2.pro
2007share/gemrb/unhardcoded/pst/impstr.spl 2019share/gemrb/unhardcoded/pst/impstr.spl
2008share/gemrb/unhardcoded/pst/inarea.pro 2020share/gemrb/unhardcoded/pst/inarea.pro
2009share/gemrb/unhardcoded/pst/inareanp.pro 2021share/gemrb/unhardcoded/pst/inareanp.pro
2010share/gemrb/unhardcoded/pst/inareapa.pro 2022share/gemrb/unhardcoded/pst/inareapa.pro
2011share/gemrb/unhardcoded/pst/inareasm.pro 2023share/gemrb/unhardcoded/pst/inareasm.pro
2012share/gemrb/unhardcoded/pst/istorm.pro 2024share/gemrb/unhardcoded/pst/istorm.pro
2013share/gemrb/unhardcoded/pst/istorm.spl 2025share/gemrb/unhardcoded/pst/istorm.spl
2014share/gemrb/unhardcoded/pst/istr.pro 2026share/gemrb/unhardcoded/pst/istr.pro
2015share/gemrb/unhardcoded/pst/iswarm.pro 2027share/gemrb/unhardcoded/pst/iswarm.pro
2016share/gemrb/unhardcoded/pst/iswarm.spl 2028share/gemrb/unhardcoded/pst/iswarm.spl
2017share/gemrb/unhardcoded/pst/item_use.2da 2029share/gemrb/unhardcoded/pst/item_use.2da
2018share/gemrb/unhardcoded/pst/itemsnd.2da 2030share/gemrb/unhardcoded/pst/itemsnd.2da
2019share/gemrb/unhardcoded/pst/itemspec.2da 2031share/gemrb/unhardcoded/pst/itemspec.2da
2020share/gemrb/unhardcoded/pst/itemtype.2da 2032share/gemrb/unhardcoded/pst/itemtype.2da
2021share/gemrb/unhardcoded/pst/itemuse.2da 2033share/gemrb/unhardcoded/pst/itemuse.2da
2022share/gemrb/unhardcoded/pst/iterror.pro 2034share/gemrb/unhardcoded/pst/iterror.pro
2023share/gemrb/unhardcoded/pst/kiss.pro 2035share/gemrb/unhardcoded/pst/kiss.pro
2024share/gemrb/unhardcoded/pst/kitlist.2da 2036share/gemrb/unhardcoded/pst/kitlist.2da
2025share/gemrb/unhardcoded/pst/knock.pro 2037share/gemrb/unhardcoded/pst/knock.pro
2026share/gemrb/unhardcoded/pst/lightb.pro 2038share/gemrb/unhardcoded/pst/lightb.pro
2027share/gemrb/unhardcoded/pst/lightnin.spl 2039share/gemrb/unhardcoded/pst/lightnin.spl
2028share/gemrb/unhardcoded/pst/lightsto.pro 2040share/gemrb/unhardcoded/pst/lightsto.pro
2029share/gemrb/unhardcoded/pst/litany.pro 2041share/gemrb/unhardcoded/pst/litany.pro
2030share/gemrb/unhardcoded/pst/litany.spl 2042share/gemrb/unhardcoded/pst/litany.spl
2031share/gemrb/unhardcoded/pst/lmiss.pro 2043share/gemrb/unhardcoded/pst/lmiss.pro
2032share/gemrb/unhardcoded/pst/lstorm.2da 2044share/gemrb/unhardcoded/pst/lstorm.2da
2033share/gemrb/unhardcoded/pst/lstorm.pro 2045share/gemrb/unhardcoded/pst/lstorm.pro
2034share/gemrb/unhardcoded/pst/lstorm.spl 2046share/gemrb/unhardcoded/pst/lstorm.spl
2035share/gemrb/unhardcoded/pst/lstorm2.pro 2047share/gemrb/unhardcoded/pst/lstorm2.pro
2036share/gemrb/unhardcoded/pst/lstorm2.spl 2048share/gemrb/unhardcoded/pst/lstorm2.spl
2037share/gemrb/unhardcoded/pst/magicmis.pro 2049share/gemrb/unhardcoded/pst/magicmis.pro
2038share/gemrb/unhardcoded/pst/mcannon.pro 2050share/gemrb/unhardcoded/pst/mcannon.pro
2039share/gemrb/unhardcoded/pst/mcannon.spl 2051share/gemrb/unhardcoded/pst/mcannon.spl
2040share/gemrb/unhardcoded/pst/mmiss.pro 2052share/gemrb/unhardcoded/pst/mmiss.pro
2041share/gemrb/unhardcoded/pst/mmiss2.pro 2053share/gemrb/unhardcoded/pst/mmiss2.pro
2042share/gemrb/unhardcoded/pst/modal.2da 2054share/gemrb/unhardcoded/pst/modal.2da
2043share/gemrb/unhardcoded/pst/mpal256.bmp 2055share/gemrb/unhardcoded/pst/mpal256.bmp
2044share/gemrb/unhardcoded/pst/mswarm.pro 2056share/gemrb/unhardcoded/pst/mswarm.pro
2045share/gemrb/unhardcoded/pst/mswarm.spl 2057share/gemrb/unhardcoded/pst/mswarm.spl
2046share/gemrb/unhardcoded/pst/music.2da 2058share/gemrb/unhardcoded/pst/music.2da
2047share/gemrb/unhardcoded/pst/nbolt.pro 2059share/gemrb/unhardcoded/pst/nbolt.pro
2048share/gemrb/unhardcoded/pst/orb.spl 2060share/gemrb/unhardcoded/pst/orb.spl
2049share/gemrb/unhardcoded/pst/orngtint.spl 2061share/gemrb/unhardcoded/pst/orngtint.spl
2050share/gemrb/unhardcoded/pst/overlay.2da 2062share/gemrb/unhardcoded/pst/overlay.2da
2051share/gemrb/unhardcoded/pst/pacify.pro 2063share/gemrb/unhardcoded/pst/pacify.pro
2052share/gemrb/unhardcoded/pst/pacify.spl 2064share/gemrb/unhardcoded/pst/pacify.spl
2053share/gemrb/unhardcoded/pst/pathfind.2da 2065share/gemrb/unhardcoded/pst/pathfind.2da
2054share/gemrb/unhardcoded/pst/pcmaze.2da 2066share/gemrb/unhardcoded/pst/pcmaze.2da
2055share/gemrb/unhardcoded/pst/pdolls.2da 2067share/gemrb/unhardcoded/pst/pdolls.2da
2056share/gemrb/unhardcoded/pst/poo.spl 2068share/gemrb/unhardcoded/pst/poo.spl
2057share/gemrb/unhardcoded/pst/poone.pro 2069share/gemrb/unhardcoded/pst/poone.pro
2058share/gemrb/unhardcoded/pst/proftype.2da 2070share/gemrb/unhardcoded/pst/proftype.2da
2059share/gemrb/unhardcoded/pst/pwb.spl 2071share/gemrb/unhardcoded/pst/pwb.spl
2060share/gemrb/unhardcoded/pst/pwblind.pro 2072share/gemrb/unhardcoded/pst/pwblind.pro
2061share/gemrb/unhardcoded/pst/pwk.spl 2073share/gemrb/unhardcoded/pst/pwk.spl
2062share/gemrb/unhardcoded/pst/pwkill.pro 2074share/gemrb/unhardcoded/pst/pwkill.pro
2063share/gemrb/unhardcoded/pst/races.2da 2075share/gemrb/unhardcoded/pst/races.2da
2064share/gemrb/unhardcoded/pst/randitem.2da 2076share/gemrb/unhardcoded/pst/randitem.2da
2065share/gemrb/unhardcoded/pst/rdead.pro 2077share/gemrb/unhardcoded/pst/rdead.pro
2066share/gemrb/unhardcoded/pst/rdead.spl 2078share/gemrb/unhardcoded/pst/rdead.spl
2067share/gemrb/unhardcoded/pst/restmov.2da 2079share/gemrb/unhardcoded/pst/restmov.2da
2068share/gemrb/unhardcoded/pst/rock.pro 2080share/gemrb/unhardcoded/pst/rock.pro
2069share/gemrb/unhardcoded/pst/rotorm.pro 2081share/gemrb/unhardcoded/pst/rotorm.pro
2070share/gemrb/unhardcoded/pst/rune.2da 2082share/gemrb/unhardcoded/pst/rune.2da
2071share/gemrb/unhardcoded/pst/rune.pro 2083share/gemrb/unhardcoded/pst/rune.pro
2072share/gemrb/unhardcoded/pst/rune.spl 2084share/gemrb/unhardcoded/pst/rune.spl
2073share/gemrb/unhardcoded/pst/s015hwav.vvc 2085share/gemrb/unhardcoded/pst/s015hwav.vvc
2074share/gemrb/unhardcoded/pst/s025melt.vvc 2086share/gemrb/unhardcoded/pst/s025melt.vvc
2075share/gemrb/unhardcoded/pst/s046ist2.vvc 2087share/gemrb/unhardcoded/pst/s046ist2.vvc
2076share/gemrb/unhardcoded/pst/s046istm.vvc 2088share/gemrb/unhardcoded/pst/s046istm.vvc
2077share/gemrb/unhardcoded/pst/s052cone.vvc 2089share/gemrb/unhardcoded/pst/s052cone.vvc
2078share/gemrb/unhardcoded/pst/s056itrl.vvc 2090share/gemrb/unhardcoded/pst/s056itrl.vvc
2079share/gemrb/unhardcoded/pst/s061beam.vvc 2091share/gemrb/unhardcoded/pst/s061beam.vvc
2080share/gemrb/unhardcoded/pst/s061glwb.vvc 2092share/gemrb/unhardcoded/pst/s061glwb.vvc
2081share/gemrb/unhardcoded/pst/s061shll.vvc 2093share/gemrb/unhardcoded/pst/s061shll.vvc
2082share/gemrb/unhardcoded/pst/s064bglt.vvc 2094share/gemrb/unhardcoded/pst/s064bglt.vvc
2083share/gemrb/unhardcoded/pst/s064hglt.vvc 2095share/gemrb/unhardcoded/pst/s064hglt.vvc
2084share/gemrb/unhardcoded/pst/s064lort.vvc 2096share/gemrb/unhardcoded/pst/s064lort.vvc
2085share/gemrb/unhardcoded/pst/s064uplt.vvc 2097share/gemrb/unhardcoded/pst/s064uplt.vvc
2086share/gemrb/unhardcoded/pst/s070boom.vvc 2098share/gemrb/unhardcoded/pst/s070boom.vvc
2087share/gemrb/unhardcoded/pst/s075wdsh.vvc 2099share/gemrb/unhardcoded/pst/s075wdsh.vvc
2088share/gemrb/unhardcoded/pst/s914bgbl.vvc 2100share/gemrb/unhardcoded/pst/s914bgbl.vvc
2089share/gemrb/unhardcoded/pst/s914hgbl.vvc 2101share/gemrb/unhardcoded/pst/s914hgbl.vvc
2090share/gemrb/unhardcoded/pst/s914rune.vvc 2102share/gemrb/unhardcoded/pst/s914rune.vvc
2091share/gemrb/unhardcoded/pst/savegame.2da 2103share/gemrb/unhardcoded/pst/savegame.2da
2092share/gemrb/unhardcoded/pst/script.2da 2104share/gemrb/unhardcoded/pst/script.2da
2093share/gemrb/unhardcoded/pst/shammer.pro 2105share/gemrb/unhardcoded/pst/shammer.pro
2094share/gemrb/unhardcoded/pst/shammer.spl 2106share/gemrb/unhardcoded/pst/shammer.spl
2095share/gemrb/unhardcoded/pst/sigil.2da 2107share/gemrb/unhardcoded/pst/sigil.2da
 2108share/gemrb/unhardcoded/pst/skills.2da
2096share/gemrb/unhardcoded/pst/skmob.pro 2109share/gemrb/unhardcoded/pst/skmob.pro
2097share/gemrb/unhardcoded/pst/skmob.spl 2110share/gemrb/unhardcoded/pst/skmob.spl
2098share/gemrb/unhardcoded/pst/skmob2.pro 2111share/gemrb/unhardcoded/pst/skmob2.pro
2099share/gemrb/unhardcoded/pst/sleep.pro 2112share/gemrb/unhardcoded/pst/sleep.pro
2100share/gemrb/unhardcoded/pst/slots.ids 2113share/gemrb/unhardcoded/pst/slots.ids
2101share/gemrb/unhardcoded/pst/slottype.2da 2114share/gemrb/unhardcoded/pst/slottype.2da
2102share/gemrb/unhardcoded/pst/source/baldur.baf 2115share/gemrb/unhardcoded/pst/source/baldur.baf
2103share/gemrb/unhardcoded/pst/sparbknp.pro 2116share/gemrb/unhardcoded/pst/sparbknp.pro
2104share/gemrb/unhardcoded/pst/sparbkpa.pro 2117share/gemrb/unhardcoded/pst/sparbkpa.pro
2105share/gemrb/unhardcoded/pst/sparblnp.pro 2118share/gemrb/unhardcoded/pst/sparblnp.pro
2106share/gemrb/unhardcoded/pst/sparblpa.pro 2119share/gemrb/unhardcoded/pst/sparblpa.pro
2107share/gemrb/unhardcoded/pst/sparchnp.pro 2120share/gemrb/unhardcoded/pst/sparchnp.pro
2108share/gemrb/unhardcoded/pst/sparchpa.pro 2121share/gemrb/unhardcoded/pst/sparchpa.pro
2109share/gemrb/unhardcoded/pst/spargonp.pro 2122share/gemrb/unhardcoded/pst/spargonp.pro
2110share/gemrb/unhardcoded/pst/spargopa.pro 2123share/gemrb/unhardcoded/pst/spargopa.pro
2111share/gemrb/unhardcoded/pst/spargrnp.pro 2124share/gemrb/unhardcoded/pst/spargrnp.pro
2112share/gemrb/unhardcoded/pst/spargrpa.pro 2125share/gemrb/unhardcoded/pst/spargrpa.pro
2113share/gemrb/unhardcoded/pst/sparicnp.pro 2126share/gemrb/unhardcoded/pst/sparicnp.pro
2114share/gemrb/unhardcoded/pst/sparicpa.pro 2127share/gemrb/unhardcoded/pst/sparicpa.pro
2115share/gemrb/unhardcoded/pst/sparklbk.pro 2128share/gemrb/unhardcoded/pst/sparklbk.pro
2116share/gemrb/unhardcoded/pst/sparklbl.pro 2129share/gemrb/unhardcoded/pst/sparklbl.pro
2117share/gemrb/unhardcoded/pst/sparklch.pro 2130share/gemrb/unhardcoded/pst/sparklch.pro
2118share/gemrb/unhardcoded/pst/sparklgo.pro 2131share/gemrb/unhardcoded/pst/sparklgo.pro
2119share/gemrb/unhardcoded/pst/sparklgr.pro 2132share/gemrb/unhardcoded/pst/sparklgr.pro
2120share/gemrb/unhardcoded/pst/sparklic.pro 2133share/gemrb/unhardcoded/pst/sparklic.pro
2121share/gemrb/unhardcoded/pst/sparklma.pro 2134share/gemrb/unhardcoded/pst/sparklma.pro
2122share/gemrb/unhardcoded/pst/sparklor.pro 2135share/gemrb/unhardcoded/pst/sparklor.pro
2123share/gemrb/unhardcoded/pst/sparklpu.pro 2136share/gemrb/unhardcoded/pst/sparklpu.pro
2124share/gemrb/unhardcoded/pst/sparklre.pro 2137share/gemrb/unhardcoded/pst/sparklre.pro
2125share/gemrb/unhardcoded/pst/sparklst.pro 2138share/gemrb/unhardcoded/pst/sparklst.pro
2126share/gemrb/unhardcoded/pst/sparmanp.pro 2139share/gemrb/unhardcoded/pst/sparmanp.pro
2127share/gemrb/unhardcoded/pst/sparmapa.pro 2140share/gemrb/unhardcoded/pst/sparmapa.pro
2128share/gemrb/unhardcoded/pst/sparornp.pro 2141share/gemrb/unhardcoded/pst/sparornp.pro
2129share/gemrb/unhardcoded/pst/sparorpa.pro 2142share/gemrb/unhardcoded/pst/sparorpa.pro
2130share/gemrb/unhardcoded/pst/sparpunp.pro 2143share/gemrb/unhardcoded/pst/sparpunp.pro
2131share/gemrb/unhardcoded/pst/sparpupa.pro 2144share/gemrb/unhardcoded/pst/sparpupa.pro
2132share/gemrb/unhardcoded/pst/sparrenp.pro 2145share/gemrb/unhardcoded/pst/sparrenp.pro
2133share/gemrb/unhardcoded/pst/sparrepa.pro 2146share/gemrb/unhardcoded/pst/sparrepa.pro
2134share/gemrb/unhardcoded/pst/sparstnp.pro 2147share/gemrb/unhardcoded/pst/sparstnp.pro
2135share/gemrb/unhardcoded/pst/sparstpa.pro 2148share/gemrb/unhardcoded/pst/sparstpa.pro
2136share/gemrb/unhardcoded/pst/speak.eff 2149share/gemrb/unhardcoded/pst/speak.eff
2137share/gemrb/unhardcoded/pst/spear.pro 2150share/gemrb/unhardcoded/pst/spear.pro
2138share/gemrb/unhardcoded/pst/spearex.pro 2151share/gemrb/unhardcoded/pst/spearex.pro
2139share/gemrb/unhardcoded/pst/spfirebl.pro 2152share/gemrb/unhardcoded/pst/spfirebl.pro
2140share/gemrb/unhardcoded/pst/spklarbk.pro 2153share/gemrb/unhardcoded/pst/spklarbk.pro
2141share/gemrb/unhardcoded/pst/spklarbl.pro 2154share/gemrb/unhardcoded/pst/spklarbl.pro
2142share/gemrb/unhardcoded/pst/spklarch.pro 2155share/gemrb/unhardcoded/pst/spklarch.pro
2143share/gemrb/unhardcoded/pst/spklargo.pro 2156share/gemrb/unhardcoded/pst/spklargo.pro
2144share/gemrb/unhardcoded/pst/spklargr.pro 2157share/gemrb/unhardcoded/pst/spklargr.pro
2145share/gemrb/unhardcoded/pst/spklaric.pro 2158share/gemrb/unhardcoded/pst/spklaric.pro
2146share/gemrb/unhardcoded/pst/spklarma.pro 2159share/gemrb/unhardcoded/pst/spklarma.pro
2147share/gemrb/unhardcoded/pst/spklaror.pro 2160share/gemrb/unhardcoded/pst/spklaror.pro
2148share/gemrb/unhardcoded/pst/spklarpu.pro 2161share/gemrb/unhardcoded/pst/spklarpu.pro
2149share/gemrb/unhardcoded/pst/spklarre.pro 2162share/gemrb/unhardcoded/pst/spklarre.pro
2150share/gemrb/unhardcoded/pst/spklarst.pro 2163share/gemrb/unhardcoded/pst/spklarst.pro
2151share/gemrb/unhardcoded/pst/splspec.2da 2164share/gemrb/unhardcoded/pst/splspec.2da
2152share/gemrb/unhardcoded/pst/spscorch.pro 2165share/gemrb/unhardcoded/pst/spscorch.pro
2153share/gemrb/unhardcoded/pst/spscoric.pro 2166share/gemrb/unhardcoded/pst/spscoric.pro
2154share/gemrb/unhardcoded/pst/sshadow.pro 2167share/gemrb/unhardcoded/pst/sshadow.pro
2155share/gemrb/unhardcoded/pst/sshadow.spl 2168share/gemrb/unhardcoded/pst/sshadow.spl
2156share/gemrb/unhardcoded/pst/start.2da 2169share/gemrb/unhardcoded/pst/start.2da
2157share/gemrb/unhardcoded/pst/states.2da 2170share/gemrb/unhardcoded/pst/states.2da
2158share/gemrb/unhardcoded/pst/stone.pro 2171share/gemrb/unhardcoded/pst/stone.pro
2159share/gemrb/unhardcoded/pst/stories.pro 2172share/gemrb/unhardcoded/pst/stories.pro
2160share/gemrb/unhardcoded/pst/stories.spl 2173share/gemrb/unhardcoded/pst/stories.spl
2161share/gemrb/unhardcoded/pst/str.spl 2174share/gemrb/unhardcoded/pst/str.spl
2162share/gemrb/unhardcoded/pst/strength.pro 2175share/gemrb/unhardcoded/pst/strength.pro
2163share/gemrb/unhardcoded/pst/strings.2da 2176share/gemrb/unhardcoded/pst/strings.2da
2164share/gemrb/unhardcoded/pst/tlaugh.pro 2177share/gemrb/unhardcoded/pst/tlaugh.pro
2165share/gemrb/unhardcoded/pst/trapglyp.pro 2178share/gemrb/unhardcoded/pst/trapglyp.pro
2166share/gemrb/unhardcoded/pst/trapskul.pro 2179share/gemrb/unhardcoded/pst/trapskul.pro
2167share/gemrb/unhardcoded/pst/vcremap.2da 2180share/gemrb/unhardcoded/pst/vcremap.2da
2168share/gemrb/unhardcoded/pst/vtouch.pro 2181share/gemrb/unhardcoded/pst/vtouch.pro
2169share/gemrb/unhardcoded/pst/weapprof.2da 2182share/gemrb/unhardcoded/pst/weapprof.2da
2170share/gemrb/unhardcoded/pst/web.pro 2183share/gemrb/unhardcoded/pst/web.pro
2171share/gemrb/unhardcoded/pst/wmmos2b.mos 2184share/gemrb/unhardcoded/pst/wmmos2b.mos
2172share/gemrb/unhardcoded/shared/REVERB.2DA 2185share/gemrb/unhardcoded/shared/REVERB.2DA
2173share/gemrb/unhardcoded/shared/avatar_shadows.2da 2186share/gemrb/unhardcoded/shared/avatar_shadows.2da
2174share/gemrb/unhardcoded/shared/avprefc.2da 2187share/gemrb/unhardcoded/shared/avprefc.2da
2175share/gemrb/unhardcoded/shared/avprefg.2da 2188share/gemrb/unhardcoded/shared/avprefg.2da
2176share/gemrb/unhardcoded/shared/avprefix.2da 2189share/gemrb/unhardcoded/shared/avprefix.2da
2177share/gemrb/unhardcoded/shared/axeflm.pro 2190share/gemrb/unhardcoded/shared/axeflm.pro
2178share/gemrb/unhardcoded/shared/bardsong.spl 2191share/gemrb/unhardcoded/shared/bardsong.spl
2179share/gemrb/unhardcoded/shared/cgtable.2da 2192share/gemrb/unhardcoded/shared/cgtable.2da
2180share/gemrb/unhardcoded/shared/chinese.ini 2193share/gemrb/unhardcoded/shared/chinese.ini
2181share/gemrb/unhardcoded/shared/clssplab.2da 2194share/gemrb/unhardcoded/shared/clssplab.2da
2182share/gemrb/unhardcoded/shared/comment.2da 2195share/gemrb/unhardcoded/shared/comment.2da
2183share/gemrb/unhardcoded/shared/containr.2da 2196share/gemrb/unhardcoded/shared/containr.2da
2184share/gemrb/unhardcoded/shared/cow.pro 2197share/gemrb/unhardcoded/shared/cow.pro
2185share/gemrb/unhardcoded/shared/czech.ini 2198share/gemrb/unhardcoded/shared/czech.ini
2186share/gemrb/unhardcoded/shared/default.ini 2199share/gemrb/unhardcoded/shared/default.ini
2187share/gemrb/unhardcoded/shared/defaults.ini 2200share/gemrb/unhardcoded/shared/defaults.ini
2188share/gemrb/unhardcoded/shared/demoend.chu 2201share/gemrb/unhardcoded/shared/demoend.chu
2189share/gemrb/unhardcoded/shared/detect.spl 2202share/gemrb/unhardcoded/shared/detect.spl
2190share/gemrb/unhardcoded/shared/difflvls.2da 2203share/gemrb/unhardcoded/shared/difflvls.2da
2191share/gemrb/unhardcoded/shared/dmgtypes.2da 2204share/gemrb/unhardcoded/shared/dmgtypes.2da
2192share/gemrb/unhardcoded/shared/dummy.spl 2205share/gemrb/unhardcoded/shared/dummy.spl
2193share/gemrb/unhardcoded/shared/fatigue.2da 2206share/gemrb/unhardcoded/shared/fatigue.2da
2194share/gemrb/unhardcoded/shared/findtrap.spl 2207share/gemrb/unhardcoded/shared/findtrap.spl
2195share/gemrb/unhardcoded/shared/flmstrk.pro 2208share/gemrb/unhardcoded/shared/flmstrk.pro
2196share/gemrb/unhardcoded/shared/gemact.ids 2209share/gemrb/unhardcoded/shared/gemact.ids
2197share/gemrb/unhardcoded/shared/gemtrig.ids 2210share/gemrb/unhardcoded/shared/gemtrig.ids
2198share/gemrb/unhardcoded/shared/german.ini 2211share/gemrb/unhardcoded/shared/german.ini
 2212share/gemrb/unhardcoded/shared/inarea5.pro
2199share/gemrb/unhardcoded/shared/invtrav.pro 2213share/gemrb/unhardcoded/shared/invtrav.pro
2200share/gemrb/unhardcoded/shared/itemspec.2da 2214share/gemrb/unhardcoded/shared/itemspec.2da
2201share/gemrb/unhardcoded/shared/japanese.ini 2215share/gemrb/unhardcoded/shared/japanese.ini
2202share/gemrb/unhardcoded/shared/keymap.2da 2216share/gemrb/unhardcoded/shared/keymap.2da
2203share/gemrb/unhardcoded/shared/korean.ini 2217share/gemrb/unhardcoded/shared/korean.ini
 2218share/gemrb/unhardcoded/shared/mfmiss5.spl
 2219share/gemrb/unhardcoded/shared/mfmiss5b.spl
2204share/gemrb/unhardcoded/shared/modal.2da 2220share/gemrb/unhardcoded/shared/modal.2da
2205share/gemrb/unhardcoded/shared/numwslot.2da 2221share/gemrb/unhardcoded/shared/numwslot.2da
2206share/gemrb/unhardcoded/shared/panic.spl 2222share/gemrb/unhardcoded/shared/panic.spl
2207share/gemrb/unhardcoded/shared/polish.ini 2223share/gemrb/unhardcoded/shared/polish.ini
2208share/gemrb/unhardcoded/shared/polystat.2da 2224share/gemrb/unhardcoded/shared/polystat.2da
 2225share/gemrb/unhardcoded/shared/racefeat.2da
2209share/gemrb/unhardcoded/shared/redholy.pro 2226share/gemrb/unhardcoded/shared/redholy.pro
2210share/gemrb/unhardcoded/shared/sanctuc.vvc 2227share/gemrb/unhardcoded/shared/sanctuc.vvc
2211share/gemrb/unhardcoded/shared/shair.pro 2228share/gemrb/unhardcoded/shared/shair.pro
2212share/gemrb/unhardcoded/shared/shair1.pro 2229share/gemrb/unhardcoded/shared/shair1.pro
2213share/gemrb/unhardcoded/shared/shair2.pro 2230share/gemrb/unhardcoded/shared/shair2.pro
2214share/gemrb/unhardcoded/shared/shair3.pro 2231share/gemrb/unhardcoded/shared/shair3.pro
2215share/gemrb/unhardcoded/shared/shair4.pro 2232share/gemrb/unhardcoded/shared/shair4.pro
2216share/gemrb/unhardcoded/shared/shair5.pro 2233share/gemrb/unhardcoded/shared/shair5.pro
2217share/gemrb/unhardcoded/shared/shair6.pro 2234share/gemrb/unhardcoded/shared/shair6.pro
2218share/gemrb/unhardcoded/shared/shair7.pro 2235share/gemrb/unhardcoded/shared/shair7.pro
2219share/gemrb/unhardcoded/shared/sharea.pro 2236share/gemrb/unhardcoded/shared/sharea.pro
2220share/gemrb/unhardcoded/shared/sharea1.pro 2237share/gemrb/unhardcoded/shared/sharea1.pro
2221share/gemrb/unhardcoded/shared/sharea2.pro 2238share/gemrb/unhardcoded/shared/sharea2.pro
2222share/gemrb/unhardcoded/shared/sharea3.pro 2239share/gemrb/unhardcoded/shared/sharea3.pro
2223share/gemrb/unhardcoded/shared/sharea4.pro 2240share/gemrb/unhardcoded/shared/sharea4.pro
2224share/gemrb/unhardcoded/shared/sharea5.pro 2241share/gemrb/unhardcoded/shared/sharea5.pro
2225share/gemrb/unhardcoded/shared/sharea6.pro 2242share/gemrb/unhardcoded/shared/sharea6.pro
2226share/gemrb/unhardcoded/shared/shearth.pro 2243share/gemrb/unhardcoded/shared/shearth.pro
2227share/gemrb/unhardcoded/shared/shearth1.pro 2244share/gemrb/unhardcoded/shared/shearth1.pro
2228share/gemrb/unhardcoded/shared/shearth2.pro 2245share/gemrb/unhardcoded/shared/shearth2.pro
2229share/gemrb/unhardcoded/shared/shearth3.pro 2246share/gemrb/unhardcoded/shared/shearth3.pro
2230share/gemrb/unhardcoded/shared/shearth4.pro 2247share/gemrb/unhardcoded/shared/shearth4.pro
2231share/gemrb/unhardcoded/shared/shearth5.pro 2248share/gemrb/unhardcoded/shared/shearth5.pro
2232share/gemrb/unhardcoded/shared/shearth6.pro 2249share/gemrb/unhardcoded/shared/shearth6.pro
2233share/gemrb/unhardcoded/shared/shearth7.pro 2250share/gemrb/unhardcoded/shared/shearth7.pro
2234share/gemrb/unhardcoded/shared/shwater.pro 2251share/gemrb/unhardcoded/shared/shwater.pro
2235share/gemrb/unhardcoded/shared/shwater1.pro 2252share/gemrb/unhardcoded/shared/shwater1.pro
2236share/gemrb/unhardcoded/shared/shwater2.pro 2253share/gemrb/unhardcoded/shared/shwater2.pro
2237share/gemrb/unhardcoded/shared/shwater3.pro 2254share/gemrb/unhardcoded/shared/shwater3.pro
2238share/gemrb/unhardcoded/shared/shwater4.pro 2255share/gemrb/unhardcoded/shared/shwater4.pro
2239share/gemrb/unhardcoded/shared/shwater5.pro 2256share/gemrb/unhardcoded/shared/shwater5.pro
2240share/gemrb/unhardcoded/shared/shwater6.pro 2257share/gemrb/unhardcoded/shared/shwater6.pro
2241share/gemrb/unhardcoded/shared/shwater7.pro 2258share/gemrb/unhardcoded/shared/shwater7.pro
2242share/gemrb/unhardcoded/shared/skybolt.pro 2259share/gemrb/unhardcoded/shared/skybolt.pro
2243share/gemrb/unhardcoded/shared/sneak.spl 2260share/gemrb/unhardcoded/shared/sneak.spl
2244share/gemrb/unhardcoded/shared/souleatr.2da 2261share/gemrb/unhardcoded/shared/souleatr.2da
2245share/gemrb/unhardcoded/shared/spboom1.pro 2262share/gemrb/unhardcoded/shared/spboom1.pro
2246share/gemrb/unhardcoded/shared/spboom2.pro 2263share/gemrb/unhardcoded/shared/spboom2.pro
2247share/gemrb/unhardcoded/shared/spboom3.pro 2264share/gemrb/unhardcoded/shared/spboom3.pro
2248share/gemrb/unhardcoded/shared/spdimdr.pro 2265share/gemrb/unhardcoded/shared/spdimdr.pro
2249share/gemrb/unhardcoded/shared/splbrdkn.2da 
2250share/gemrb/unhardcoded/shared/spldisp.2da 2266share/gemrb/unhardcoded/shared/spldisp.2da
2251share/gemrb/unhardcoded/shared/splwizkn.2da 2267share/gemrb/unhardcoded/shared/splwizkn.2da
2252share/gemrb/unhardcoded/shared/spmagmis.pro 2268share/gemrb/unhardcoded/shared/spmagmis.pro
2253share/gemrb/unhardcoded/shared/spsmkjet.pro 2269share/gemrb/unhardcoded/shared/spsmkjet.pro
2254share/gemrb/unhardcoded/shared/spsmold.pro 2270share/gemrb/unhardcoded/shared/spsmold.pro
2255share/gemrb/unhardcoded/shared/spsmpuff.pro 2271share/gemrb/unhardcoded/shared/spsmpuff.pro
2256share/gemrb/unhardcoded/shared/storespl.2da 2272share/gemrb/unhardcoded/shared/storespl.2da
 2273share/gemrb/unhardcoded/shared/summlimt.2da
 2274share/gemrb/unhardcoded/shared/traplimt.2da
2257share/gemrb/unhardcoded/shared/turn.spl 2275share/gemrb/unhardcoded/shared/turn.spl
2258share/gemrb/unhardcoded/shared/zzweaps.2da 2276share/gemrb/unhardcoded/shared/zzweaps.2da
2259share/icons/hicolor/scalable/apps/gemrb.svg 2277share/icons/hicolor/scalable/apps/gemrb.svg
 2278share/metainfo/org.gemrb.gemrb.metainfo.xml
2260share/pixmaps/gemrb.png 2279share/pixmaps/gemrb.png

cvs diff -r1.3 -r1.4 pkgsrc/games/gemrb/distinfo (switch to unified diff)

--- pkgsrc/games/gemrb/distinfo 2020/08/31 12:46:21 1.3
+++ pkgsrc/games/gemrb/distinfo 2021/06/06 16:59:51 1.4
@@ -1,9 +1,8 @@ @@ -1,9 +1,8 @@
1$NetBSD: distinfo,v 1.3 2020/08/31 12:46:21 nia Exp $ 1$NetBSD: distinfo,v 1.4 2021/06/06 16:59:51 nia Exp $
2 2
3SHA1 (gemrb-0.8.7.tar.gz) = 3c616ddff1278b0e052b0493d0a767c38201b660 3SHA1 (gemrb-0.8.8.tar.gz) = 62e5e19e2cd6f2c2ce5d14a23637aaa78c6ce95a
4RMD160 (gemrb-0.8.7.tar.gz) = af92ea4ef244128289a5d22858e05b4924a5f963 4RMD160 (gemrb-0.8.8.tar.gz) = c88ce8b2c604f297fa205390a21fda5f96006593
5SHA512 (gemrb-0.8.7.tar.gz) = f3358635a55202f39869308647bf4da5e14fa90fc9fe20e348ce3945b392092c0e29ae944087a41cbcbe7eb51bf0e41c59f56683a168b9f98b09bc39719ad274 5SHA512 (gemrb-0.8.8.tar.gz) = 9425d68b931663e25b449386266d0409141f40da0e79513aa52c52e3f0f8c81f14b498d816e6b8dd86ce7948b22ad94128b700c013706bf808c7f1e58f734758
6Size (gemrb-0.8.7.tar.gz) = 12446067 bytes 6Size (gemrb-0.8.8.tar.gz) = 13918948 bytes
7SHA1 (patch-gemrb_core_System_Logging.h) = bba78f6b5ecc835ffc83b2d335e16de81184db0c 7SHA1 (patch-gemrb_core_System_String.cpp) = 3e692b69a3a334050cb10400fce276893143dd57
8SHA1 (patch-gemrb_core_System_String.cpp) = 12bc64c4e24ec1c85ba5efe31d96b62d52fad4de 
9SHA1 (patch-gemrb_plugins_TTFImporter_TTFFont.cpp) = 5d21363e3b1957f96bf20f4229ebe529909bc3da 8SHA1 (patch-gemrb_plugins_TTFImporter_TTFFont.cpp) = 5d21363e3b1957f96bf20f4229ebe529909bc3da

File Deleted: pkgsrc/games/gemrb/patches/Attic/patch-gemrb_core_System_Logging.h

cvs diff -r1.1 -r1.2 pkgsrc/games/gemrb/patches/Attic/patch-gemrb_core_System_String.cpp (switch to unified diff)

--- pkgsrc/games/gemrb/patches/Attic/patch-gemrb_core_System_String.cpp 2020/08/31 12:46:21 1.1
+++ pkgsrc/games/gemrb/patches/Attic/patch-gemrb_core_System_String.cpp 2021/06/06 16:59:51 1.2
@@ -1,34 +1,35 @@ @@ -1,34 +1,35 @@
1$NetBSD: patch-gemrb_core_System_String.cpp,v 1.1 2020/08/31 12:46:21 nia Exp $ 1$NetBSD: patch-gemrb_core_System_String.cpp,v 1.2 2021/06/06 16:59:51 nia Exp $
2 2
3Deal with old NetBSD/SunOS style iconv. 3Deal with old NetBSD/SunOS style iconv.
4 4
5--- gemrb/core/System/String.cpp.orig 2020-08-23 18:32:26.000000000 +0000 5--- gemrb/core/System/String.cpp.orig 2021-06-02 16:16:47.000000000 +0000
6+++ gemrb/core/System/String.cpp 6+++ gemrb/core/System/String.cpp
7@@ -35,6 +35,15 @@ 7@@ -31,6 +31,16 @@
8 #if HAVE_ICONV 
9 #include <iconv.h> 8 #include <iconv.h>
10 #include <cerrno> 9 #endif
11+ 10
12+#if defined(__NetBSD__) 11+#if defined(__NetBSD__)
13+#include <sys/param.h> 12+#include <sys/param.h>
14+#if __NetBSD_Prereq__(9,99,17) 13+#if __NetBSD_Prereq__(9,99,17)
15+#define NETBSD_POSIX_ICONV 1 14+#define NETBSD_POSIX_ICONV 1
16+#else 15+#else
17+#define NETBSD_POSIX_ICONV 0 16+#define NETBSD_POSIX_ICONV 0
18+#endif /* __NetBSD_Prereq__(9,99,17) */ 17+#endif /* __NetBSD_Prereq__(9,99,17) */
19+#endif /* defined(__NetBSD__) */ 18+#endif /* defined(__NetBSD__) */
20 #endif 19+#endif
21  20+
22 namespace GemRB { 21 namespace GemRB {
23@@ -127,7 +136,11 @@ char* ConvertCharEncoding(const char* st 22
 23 static String* StringFromEncodedData(const ieByte* string, const EncodingStruct& encoded)
 24@@ -123,7 +133,11 @@ char* ConvertCharEncoding(const char* st
24 size_t out_len_left = out_len; 25 size_t out_len_left = out_len;
25 char* buf = (char*) malloc(out_len); 26 char* buf = (char*) malloc(out_len);
26 char* buf_out = buf; 27 char* buf_out = buf;
27+#if (defined(__NetBSD__) && !NETBSD_POSIX_ICONV) || defined(__sun) 28+#if (defined(__NetBSD__) && !NETBSD_POSIX_ICONV) || defined(__sun)
28+ size_t ret = iconv(cd, (const char **)&in, &in_len, &buf_out, &out_len_left); 29+ size_t ret = iconv(cd, (const char **)&in, &in_len, &buf_out, &out_len_left);
29+#else 30+#else
30 size_t ret = iconv(cd, &in, &in_len, &buf_out, &out_len_left); 31 size_t ret = iconv(cd, &in, &in_len, &buf_out, &out_len_left);
31+#endif 32+#endif
32 iconv_close(cd); 33 iconv_close(cd);
33  34
34 if (ret == (size_t)-1) { 35 if (ret == (size_t)-1) {