├── .gitignore ├── FireURQ.dpr ├── FireURQ.res ├── LICENSE ├── MD5.pas ├── bfshkeys.pas.inc ├── deploy ├── fireurq.iss └── versions.docx ├── f2 ├── f2Application.pas ├── f2Context.pas ├── f2DecorScript.pas ├── f2Decorators.pas ├── f2FontGen.pas ├── f2FontLoad.pas ├── f2FontPool.pas ├── f2Interpreter.pas ├── f2LinkParser.pas ├── f2PicturePool.pas ├── f2SaveLoadManager.pas ├── f2Scene.pas ├── f2ScnMain.pas ├── f2ScnSaveLoad.pas ├── f2ScnSplash.pas ├── f2SettingsStorage.pas ├── f2Skins.pas ├── f2TextPane.pas ├── f2Types.pas ├── f2Utils.pas ├── fireURQ2.dof ├── fireURQ2.dpr ├── fireURQ2.res └── icon.res ├── furqAbout.dfm ├── furqAbout.pas ├── furqBase.pas ├── furqContext.pas ├── furqDecoders.pas ├── furqExprEval.pas ├── furqFiler.pas ├── furqLoader.pas ├── furqTypes.pas ├── furqUtils.pas ├── furqWinMain.dfm ├── furqWinMain.pas └── tests ├── .gitignore ├── ver1.8.1 ├── 212.av.qst └── AV_Vulcano.qst ├── ver1.8 ├── 167.includes.qst ├── 167.includes │ └── 167.includes.qsz ├── 197.inv_disable.qst ├── 201.comment_error.qst ├── 202.simple_links.qst ├── 204.link_error.qst ├── 206.linkdeco.qst ├── 210.droplinks.qst ├── inc │ ├── inc2.qst │ └── inc3.qst └── inc1.qst ├── ver1.9.1 ├── 229.enabled_deco.qst ├── 230.hidden_deco.qst ├── 231.strfunc.qst ├── 232.quotas.qst ├── 236.btn.qst └── texture.png ├── ver1.9.2 ├── 234.qst ├── 237.qst ├── 239.menu_align.qst ├── 239.menu_align.qst.zip ├── 240.qst ├── 241.qst ├── 242.qst ├── 243.qst ├── 243.s01 ├── 243.sav ├── 244.qst ├── 247.qst ├── 248.qst ├── 248.sav ├── 250.qst ├── 250.sav ├── 253.qst ├── 253.s01 ├── 253.s02 ├── 255.qst ├── 258.1.qst ├── 258.1.s01 ├── 258.1.s02 ├── 258.1.s03 ├── 258.1.s04 ├── 258.1.s05 ├── 258.1.s06 ├── 258.1.sav ├── 260.qst ├── 261.qst ├── 261.s01 ├── 261.s02 ├── 262.qst ├── 264.qst ├── 265.qst ├── btnsaveload.qst ├── btnsaveload.sav ├── fairy122.png ├── line.gif ├── redarr.png └── ton_hat.png ├── ver1.9 ├── 211.file_output.qst ├── 213.clickarea.qst ├── 213.clickarea.sav ├── 213.imgbutton.qst ├── 213.imgbutton.sav ├── 213.textbutton.qst ├── 213.textbutton.sav ├── 217.space.qst ├── 218.btn_symbols.qst ├── 221.music_error.qst ├── 221.music_error.qsz ├── 223.av.qst ├── 34.logging_menu.000.log ├── 34.logging_menu.qst ├── Danny Wright – New Life_.mp3 ├── docs.txt ├── linksdecosave.qst ├── linksdecosave.sav └── texture.png ├── ver2.1 ├── 257 │ ├── game.qst │ └── rur.ttf ├── 274 │ ├── button1.png │ ├── fignya.qst │ ├── georgia.ttf │ ├── georgiab.ttf │ └── skin.xml ├── 285 │ ├── cursor.png │ ├── test285.qst │ ├── test285.s01 │ ├── test285.s03 │ └── test285.s07 ├── 289 │ ├── skin.xml │ └── test289.qst ├── 259.qst ├── 267.qst ├── 273.qst ├── 275-269.qst ├── 276.qst ├── 280.qst ├── 280.sav ├── 288.qst └── _newfonts.qst ├── ver2.2.1 ├── 307.qst ├── 307.s07 ├── 307.sav └── 308.qst ├── ver2.2.2 ├── 311.qst ├── 314.qst ├── 316.gss ├── 316.qst ├── 317.qst ├── 319.qst ├── 320.qst ├── blam.ogg ├── bum.ogg └── menu.png ├── ver2.2.3 └── 322.qst ├── ver2.2.4 ├── 256 │ ├── 256.qst │ ├── PD-BEER.XM │ └── skip.ogg ├── 325 │ ├── 1.it │ ├── 2.it │ ├── 3.it │ └── 325.qst ├── 332 │ ├── 332.qst │ ├── mission.mid │ └── trolls_a.xm ├── 333 │ ├── 333.qst │ └── death.png ├── 323.qst ├── 327.qst ├── 328.qst ├── 329.qst ├── 330.qst └── 331.qst └── ver2.2 ├── 306 ├── 306.qst ├── dec1.png ├── dec2.png ├── dec3.png └── skin.xml ├── 287.qst ├── 287.s02 ├── 291.qst ├── 293.qst ├── 295.gss ├── 295.qst ├── 296.qst ├── 297.qst ├── 298.qst ├── 300.qsz ├── 300.s01 ├── 301.qst ├── bar.s02 ├── bar.s07 ├── foo.s02 └── foo.sav /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/.gitignore -------------------------------------------------------------------------------- /FireURQ.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/FireURQ.dpr -------------------------------------------------------------------------------- /FireURQ.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/FireURQ.res -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/LICENSE -------------------------------------------------------------------------------- /MD5.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/MD5.pas -------------------------------------------------------------------------------- /bfshkeys.pas.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/bfshkeys.pas.inc -------------------------------------------------------------------------------- /deploy/fireurq.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/deploy/fireurq.iss -------------------------------------------------------------------------------- /deploy/versions.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/deploy/versions.docx -------------------------------------------------------------------------------- /f2/f2Application.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/f2/f2Application.pas -------------------------------------------------------------------------------- /f2/f2Context.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/f2/f2Context.pas -------------------------------------------------------------------------------- /f2/f2DecorScript.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/f2/f2DecorScript.pas -------------------------------------------------------------------------------- /f2/f2Decorators.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/f2/f2Decorators.pas -------------------------------------------------------------------------------- /f2/f2FontGen.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/f2/f2FontGen.pas -------------------------------------------------------------------------------- /f2/f2FontLoad.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/f2/f2FontLoad.pas -------------------------------------------------------------------------------- /f2/f2FontPool.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/f2/f2FontPool.pas -------------------------------------------------------------------------------- /f2/f2Interpreter.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/f2/f2Interpreter.pas -------------------------------------------------------------------------------- /f2/f2LinkParser.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/f2/f2LinkParser.pas -------------------------------------------------------------------------------- /f2/f2PicturePool.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/f2/f2PicturePool.pas -------------------------------------------------------------------------------- /f2/f2SaveLoadManager.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/f2/f2SaveLoadManager.pas -------------------------------------------------------------------------------- /f2/f2Scene.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/f2/f2Scene.pas -------------------------------------------------------------------------------- /f2/f2ScnMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/f2/f2ScnMain.pas -------------------------------------------------------------------------------- /f2/f2ScnSaveLoad.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/f2/f2ScnSaveLoad.pas -------------------------------------------------------------------------------- /f2/f2ScnSplash.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/f2/f2ScnSplash.pas -------------------------------------------------------------------------------- /f2/f2SettingsStorage.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/f2/f2SettingsStorage.pas -------------------------------------------------------------------------------- /f2/f2Skins.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/f2/f2Skins.pas -------------------------------------------------------------------------------- /f2/f2TextPane.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/f2/f2TextPane.pas -------------------------------------------------------------------------------- /f2/f2Types.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/f2/f2Types.pas -------------------------------------------------------------------------------- /f2/f2Utils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/f2/f2Utils.pas -------------------------------------------------------------------------------- /f2/fireURQ2.dof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/f2/fireURQ2.dof -------------------------------------------------------------------------------- /f2/fireURQ2.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/f2/fireURQ2.dpr -------------------------------------------------------------------------------- /f2/fireURQ2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/f2/fireURQ2.res -------------------------------------------------------------------------------- /f2/icon.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/f2/icon.res -------------------------------------------------------------------------------- /furqAbout.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/furqAbout.dfm -------------------------------------------------------------------------------- /furqAbout.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/furqAbout.pas -------------------------------------------------------------------------------- /furqBase.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/furqBase.pas -------------------------------------------------------------------------------- /furqContext.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/furqContext.pas -------------------------------------------------------------------------------- /furqDecoders.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/furqDecoders.pas -------------------------------------------------------------------------------- /furqExprEval.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/furqExprEval.pas -------------------------------------------------------------------------------- /furqFiler.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/furqFiler.pas -------------------------------------------------------------------------------- /furqLoader.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/furqLoader.pas -------------------------------------------------------------------------------- /furqTypes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/furqTypes.pas -------------------------------------------------------------------------------- /furqUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/furqUtils.pas -------------------------------------------------------------------------------- /furqWinMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/furqWinMain.dfm -------------------------------------------------------------------------------- /furqWinMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/furqWinMain.pas -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | !**/*.log -------------------------------------------------------------------------------- /tests/ver1.8.1/212.av.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.8.1/212.av.qst -------------------------------------------------------------------------------- /tests/ver1.8.1/AV_Vulcano.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.8.1/AV_Vulcano.qst -------------------------------------------------------------------------------- /tests/ver1.8/167.includes.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.8/167.includes.qst -------------------------------------------------------------------------------- /tests/ver1.8/167.includes/167.includes.qsz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.8/167.includes/167.includes.qsz -------------------------------------------------------------------------------- /tests/ver1.8/197.inv_disable.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.8/197.inv_disable.qst -------------------------------------------------------------------------------- /tests/ver1.8/201.comment_error.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.8/201.comment_error.qst -------------------------------------------------------------------------------- /tests/ver1.8/202.simple_links.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.8/202.simple_links.qst -------------------------------------------------------------------------------- /tests/ver1.8/204.link_error.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.8/204.link_error.qst -------------------------------------------------------------------------------- /tests/ver1.8/206.linkdeco.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.8/206.linkdeco.qst -------------------------------------------------------------------------------- /tests/ver1.8/210.droplinks.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.8/210.droplinks.qst -------------------------------------------------------------------------------- /tests/ver1.8/inc/inc2.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.8/inc/inc2.qst -------------------------------------------------------------------------------- /tests/ver1.8/inc/inc3.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.8/inc/inc3.qst -------------------------------------------------------------------------------- /tests/ver1.8/inc1.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.8/inc1.qst -------------------------------------------------------------------------------- /tests/ver1.9.1/229.enabled_deco.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.1/229.enabled_deco.qst -------------------------------------------------------------------------------- /tests/ver1.9.1/230.hidden_deco.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.1/230.hidden_deco.qst -------------------------------------------------------------------------------- /tests/ver1.9.1/231.strfunc.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.1/231.strfunc.qst -------------------------------------------------------------------------------- /tests/ver1.9.1/232.quotas.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.1/232.quotas.qst -------------------------------------------------------------------------------- /tests/ver1.9.1/236.btn.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.1/236.btn.qst -------------------------------------------------------------------------------- /tests/ver1.9.1/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.1/texture.png -------------------------------------------------------------------------------- /tests/ver1.9.2/234.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/234.qst -------------------------------------------------------------------------------- /tests/ver1.9.2/237.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/237.qst -------------------------------------------------------------------------------- /tests/ver1.9.2/239.menu_align.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/239.menu_align.qst -------------------------------------------------------------------------------- /tests/ver1.9.2/239.menu_align.qst.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/239.menu_align.qst.zip -------------------------------------------------------------------------------- /tests/ver1.9.2/240.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/240.qst -------------------------------------------------------------------------------- /tests/ver1.9.2/241.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/241.qst -------------------------------------------------------------------------------- /tests/ver1.9.2/242.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/242.qst -------------------------------------------------------------------------------- /tests/ver1.9.2/243.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/243.qst -------------------------------------------------------------------------------- /tests/ver1.9.2/243.s01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/243.s01 -------------------------------------------------------------------------------- /tests/ver1.9.2/243.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/243.sav -------------------------------------------------------------------------------- /tests/ver1.9.2/244.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/244.qst -------------------------------------------------------------------------------- /tests/ver1.9.2/247.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/247.qst -------------------------------------------------------------------------------- /tests/ver1.9.2/248.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/248.qst -------------------------------------------------------------------------------- /tests/ver1.9.2/248.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/248.sav -------------------------------------------------------------------------------- /tests/ver1.9.2/250.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/250.qst -------------------------------------------------------------------------------- /tests/ver1.9.2/250.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/250.sav -------------------------------------------------------------------------------- /tests/ver1.9.2/253.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/253.qst -------------------------------------------------------------------------------- /tests/ver1.9.2/253.s01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/253.s01 -------------------------------------------------------------------------------- /tests/ver1.9.2/253.s02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/253.s02 -------------------------------------------------------------------------------- /tests/ver1.9.2/255.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/255.qst -------------------------------------------------------------------------------- /tests/ver1.9.2/258.1.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/258.1.qst -------------------------------------------------------------------------------- /tests/ver1.9.2/258.1.s01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/258.1.s01 -------------------------------------------------------------------------------- /tests/ver1.9.2/258.1.s02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/258.1.s02 -------------------------------------------------------------------------------- /tests/ver1.9.2/258.1.s03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/258.1.s03 -------------------------------------------------------------------------------- /tests/ver1.9.2/258.1.s04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/258.1.s04 -------------------------------------------------------------------------------- /tests/ver1.9.2/258.1.s05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/258.1.s05 -------------------------------------------------------------------------------- /tests/ver1.9.2/258.1.s06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/258.1.s06 -------------------------------------------------------------------------------- /tests/ver1.9.2/258.1.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/258.1.sav -------------------------------------------------------------------------------- /tests/ver1.9.2/260.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/260.qst -------------------------------------------------------------------------------- /tests/ver1.9.2/261.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/261.qst -------------------------------------------------------------------------------- /tests/ver1.9.2/261.s01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/261.s01 -------------------------------------------------------------------------------- /tests/ver1.9.2/261.s02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/261.s02 -------------------------------------------------------------------------------- /tests/ver1.9.2/262.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/262.qst -------------------------------------------------------------------------------- /tests/ver1.9.2/264.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/264.qst -------------------------------------------------------------------------------- /tests/ver1.9.2/265.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/265.qst -------------------------------------------------------------------------------- /tests/ver1.9.2/btnsaveload.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/btnsaveload.qst -------------------------------------------------------------------------------- /tests/ver1.9.2/btnsaveload.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/btnsaveload.sav -------------------------------------------------------------------------------- /tests/ver1.9.2/fairy122.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/fairy122.png -------------------------------------------------------------------------------- /tests/ver1.9.2/line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/line.gif -------------------------------------------------------------------------------- /tests/ver1.9.2/redarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/redarr.png -------------------------------------------------------------------------------- /tests/ver1.9.2/ton_hat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9.2/ton_hat.png -------------------------------------------------------------------------------- /tests/ver1.9/211.file_output.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9/211.file_output.qst -------------------------------------------------------------------------------- /tests/ver1.9/213.clickarea.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9/213.clickarea.qst -------------------------------------------------------------------------------- /tests/ver1.9/213.clickarea.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9/213.clickarea.sav -------------------------------------------------------------------------------- /tests/ver1.9/213.imgbutton.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9/213.imgbutton.qst -------------------------------------------------------------------------------- /tests/ver1.9/213.imgbutton.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9/213.imgbutton.sav -------------------------------------------------------------------------------- /tests/ver1.9/213.textbutton.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9/213.textbutton.qst -------------------------------------------------------------------------------- /tests/ver1.9/213.textbutton.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9/213.textbutton.sav -------------------------------------------------------------------------------- /tests/ver1.9/217.space.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9/217.space.qst -------------------------------------------------------------------------------- /tests/ver1.9/218.btn_symbols.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9/218.btn_symbols.qst -------------------------------------------------------------------------------- /tests/ver1.9/221.music_error.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9/221.music_error.qst -------------------------------------------------------------------------------- /tests/ver1.9/221.music_error.qsz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9/221.music_error.qsz -------------------------------------------------------------------------------- /tests/ver1.9/223.av.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9/223.av.qst -------------------------------------------------------------------------------- /tests/ver1.9/34.logging_menu.000.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9/34.logging_menu.000.log -------------------------------------------------------------------------------- /tests/ver1.9/34.logging_menu.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9/34.logging_menu.qst -------------------------------------------------------------------------------- /tests/ver1.9/Danny Wright – New Life_.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9/Danny Wright – New Life_.mp3 -------------------------------------------------------------------------------- /tests/ver1.9/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9/docs.txt -------------------------------------------------------------------------------- /tests/ver1.9/linksdecosave.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9/linksdecosave.qst -------------------------------------------------------------------------------- /tests/ver1.9/linksdecosave.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9/linksdecosave.sav -------------------------------------------------------------------------------- /tests/ver1.9/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver1.9/texture.png -------------------------------------------------------------------------------- /tests/ver2.1/257/game.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.1/257/game.qst -------------------------------------------------------------------------------- /tests/ver2.1/257/rur.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.1/257/rur.ttf -------------------------------------------------------------------------------- /tests/ver2.1/259.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.1/259.qst -------------------------------------------------------------------------------- /tests/ver2.1/267.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.1/267.qst -------------------------------------------------------------------------------- /tests/ver2.1/273.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.1/273.qst -------------------------------------------------------------------------------- /tests/ver2.1/274/button1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.1/274/button1.png -------------------------------------------------------------------------------- /tests/ver2.1/274/fignya.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.1/274/fignya.qst -------------------------------------------------------------------------------- /tests/ver2.1/274/georgia.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.1/274/georgia.ttf -------------------------------------------------------------------------------- /tests/ver2.1/274/georgiab.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.1/274/georgiab.ttf -------------------------------------------------------------------------------- /tests/ver2.1/274/skin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.1/274/skin.xml -------------------------------------------------------------------------------- /tests/ver2.1/275-269.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.1/275-269.qst -------------------------------------------------------------------------------- /tests/ver2.1/276.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.1/276.qst -------------------------------------------------------------------------------- /tests/ver2.1/280.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.1/280.qst -------------------------------------------------------------------------------- /tests/ver2.1/280.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.1/280.sav -------------------------------------------------------------------------------- /tests/ver2.1/285/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.1/285/cursor.png -------------------------------------------------------------------------------- /tests/ver2.1/285/test285.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.1/285/test285.qst -------------------------------------------------------------------------------- /tests/ver2.1/285/test285.s01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.1/285/test285.s01 -------------------------------------------------------------------------------- /tests/ver2.1/285/test285.s03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.1/285/test285.s03 -------------------------------------------------------------------------------- /tests/ver2.1/285/test285.s07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.1/285/test285.s07 -------------------------------------------------------------------------------- /tests/ver2.1/288.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.1/288.qst -------------------------------------------------------------------------------- /tests/ver2.1/289/skin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.1/289/skin.xml -------------------------------------------------------------------------------- /tests/ver2.1/289/test289.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.1/289/test289.qst -------------------------------------------------------------------------------- /tests/ver2.1/_newfonts.qst: -------------------------------------------------------------------------------- 1 | textfont = "sans-italic[25]" 2 | pln Here we are! -------------------------------------------------------------------------------- /tests/ver2.2.1/307.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.1/307.qst -------------------------------------------------------------------------------- /tests/ver2.2.1/307.s07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.1/307.s07 -------------------------------------------------------------------------------- /tests/ver2.2.1/307.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.1/307.sav -------------------------------------------------------------------------------- /tests/ver2.2.1/308.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.1/308.qst -------------------------------------------------------------------------------- /tests/ver2.2.2/311.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.2/311.qst -------------------------------------------------------------------------------- /tests/ver2.2.2/314.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.2/314.qst -------------------------------------------------------------------------------- /tests/ver2.2.2/316.gss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.2/316.gss -------------------------------------------------------------------------------- /tests/ver2.2.2/316.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.2/316.qst -------------------------------------------------------------------------------- /tests/ver2.2.2/317.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.2/317.qst -------------------------------------------------------------------------------- /tests/ver2.2.2/319.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.2/319.qst -------------------------------------------------------------------------------- /tests/ver2.2.2/320.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.2/320.qst -------------------------------------------------------------------------------- /tests/ver2.2.2/blam.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.2/blam.ogg -------------------------------------------------------------------------------- /tests/ver2.2.2/bum.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.2/bum.ogg -------------------------------------------------------------------------------- /tests/ver2.2.2/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.2/menu.png -------------------------------------------------------------------------------- /tests/ver2.2.3/322.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.3/322.qst -------------------------------------------------------------------------------- /tests/ver2.2.4/256/256.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.4/256/256.qst -------------------------------------------------------------------------------- /tests/ver2.2.4/256/PD-BEER.XM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.4/256/PD-BEER.XM -------------------------------------------------------------------------------- /tests/ver2.2.4/256/skip.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.4/256/skip.ogg -------------------------------------------------------------------------------- /tests/ver2.2.4/323.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.4/323.qst -------------------------------------------------------------------------------- /tests/ver2.2.4/325/1.it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.4/325/1.it -------------------------------------------------------------------------------- /tests/ver2.2.4/325/2.it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.4/325/2.it -------------------------------------------------------------------------------- /tests/ver2.2.4/325/3.it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.4/325/3.it -------------------------------------------------------------------------------- /tests/ver2.2.4/325/325.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.4/325/325.qst -------------------------------------------------------------------------------- /tests/ver2.2.4/327.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.4/327.qst -------------------------------------------------------------------------------- /tests/ver2.2.4/328.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.4/328.qst -------------------------------------------------------------------------------- /tests/ver2.2.4/329.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.4/329.qst -------------------------------------------------------------------------------- /tests/ver2.2.4/330.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.4/330.qst -------------------------------------------------------------------------------- /tests/ver2.2.4/331.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.4/331.qst -------------------------------------------------------------------------------- /tests/ver2.2.4/332/332.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.4/332/332.qst -------------------------------------------------------------------------------- /tests/ver2.2.4/332/mission.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.4/332/mission.mid -------------------------------------------------------------------------------- /tests/ver2.2.4/332/trolls_a.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.4/332/trolls_a.xm -------------------------------------------------------------------------------- /tests/ver2.2.4/333/333.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.4/333/333.qst -------------------------------------------------------------------------------- /tests/ver2.2.4/333/death.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2.4/333/death.png -------------------------------------------------------------------------------- /tests/ver2.2/287.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2/287.qst -------------------------------------------------------------------------------- /tests/ver2.2/287.s02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2/287.s02 -------------------------------------------------------------------------------- /tests/ver2.2/291.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2/291.qst -------------------------------------------------------------------------------- /tests/ver2.2/293.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2/293.qst -------------------------------------------------------------------------------- /tests/ver2.2/295.gss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2/295.gss -------------------------------------------------------------------------------- /tests/ver2.2/295.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2/295.qst -------------------------------------------------------------------------------- /tests/ver2.2/296.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2/296.qst -------------------------------------------------------------------------------- /tests/ver2.2/297.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2/297.qst -------------------------------------------------------------------------------- /tests/ver2.2/298.qst: -------------------------------------------------------------------------------- 1 | :0 2 | anykey z,100 3 | goto 0 -------------------------------------------------------------------------------- /tests/ver2.2/300.qsz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2/300.qsz -------------------------------------------------------------------------------- /tests/ver2.2/300.s01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2/300.s01 -------------------------------------------------------------------------------- /tests/ver2.2/301.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2/301.qst -------------------------------------------------------------------------------- /tests/ver2.2/306/306.qst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2/306/306.qst -------------------------------------------------------------------------------- /tests/ver2.2/306/dec1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2/306/dec1.png -------------------------------------------------------------------------------- /tests/ver2.2/306/dec2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2/306/dec2.png -------------------------------------------------------------------------------- /tests/ver2.2/306/dec3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2/306/dec3.png -------------------------------------------------------------------------------- /tests/ver2.2/306/skin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2/306/skin.xml -------------------------------------------------------------------------------- /tests/ver2.2/bar.s02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2/bar.s02 -------------------------------------------------------------------------------- /tests/ver2.2/bar.s07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2/bar.s07 -------------------------------------------------------------------------------- /tests/ver2.2/foo.s02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2/foo.s02 -------------------------------------------------------------------------------- /tests/ver2.2/foo.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireton/fireurq/HEAD/tests/ver2.2/foo.sav --------------------------------------------------------------------------------