<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://oldwiki.cpcwiki.eu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jonathan</id>
		<title>CPCWiki - THE Amstrad CPC encyclopedia! - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://oldwiki.cpcwiki.eu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jonathan"/>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php/Special:Contributions/Jonathan"/>
		<updated>2026-08-29T05:03:41Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.25.1</generator>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Zym&amp;diff=122089</id>
		<title>Zym</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Zym&amp;diff=122089"/>
				<updated>2025-02-04T16:02:59Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Brief page to make red link blue&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Zym is a Z-machine interpreter, described on the [[Z-Machine]] page.&lt;br /&gt;
&lt;br /&gt;
[[Category:Emulator]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Z-Machine&amp;diff=122088</id>
		<title>Z-Machine</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Z-Machine&amp;diff=122088"/>
				<updated>2025-02-04T16:01:54Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Mentioning Vezza here&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Z-Machine is a text based interpreter which runs text adventures made by Infocom and Z-code files.&lt;br /&gt;
&lt;br /&gt;
It is available for CPC for different OS.&lt;br /&gt;
&lt;br /&gt;
* A version for CPM&lt;br /&gt;
* A version for AMSDOS&lt;br /&gt;
* A version for SymbOS&lt;br /&gt;
&lt;br /&gt;
[[CPCZVM]] is a Z-Machine interpreter for the CPC. It is a modification of ZXZVM, an interpreter made by [[John Elliott]] for the PCW.  The Amstrad version was converted by [[Kevin Thacker]]. There are two versions, for CPM and AMSDOS.&lt;br /&gt;
&lt;br /&gt;
Zym is a Z-Machine interpreter for SymbOS, made by [[prevtenet]].&lt;br /&gt;
&lt;br /&gt;
[[Vezza]] is another Z-machine interpreter.&lt;br /&gt;
&lt;br /&gt;
=CPM version=&lt;br /&gt;
&lt;br /&gt;
CPCZVM for CPM features a virtual memory system supporting both the Z-machines RAM and ROM. It runs under CPM2.2 and CPM+. CPCZVM has been written to be as compatible with CPM as possible and should run on other CPMs for the Amstrad.&lt;br /&gt;
&lt;br /&gt;
CPCZVM will not run under Amstrad's CPM2.2 distribution because it doesn't have enough TPA. However you can use [[DkTronics_CPM]] which has a larger TPA.&lt;br /&gt;
&lt;br /&gt;
==Running an adventure==&lt;br /&gt;
&lt;br /&gt;
* Copy CPCZVM.COM, ZXZVM.BIN and the game file (e.g. ADVENT.Z3) to media which has at least 64KB free. All of these should  be in the same location. &lt;br /&gt;
* Boot into CP/M.&lt;br /&gt;
* Select the disc (e.g. B:)&lt;br /&gt;
* Type: CPCZVM ADVENT.Z3 to start.&lt;br /&gt;
&lt;br /&gt;
Not supported:&lt;br /&gt;
* Timed input&lt;br /&gt;
* Italics, Bold and other font styles.&lt;br /&gt;
* Colours&lt;br /&gt;
* Sound&lt;br /&gt;
&lt;br /&gt;
NOTE:&lt;br /&gt;
* CPM2.2 version is better than the CPM+ version because it can use windows like the AMSDOS version to allow individual sections of the display to be split or scrolling. Amstrad's implementation of CPM is assumed and that printing goes to the firmware functions and the firmware control codes can be executed. &lt;br /&gt;
* CPM+ version uses the VT52 terminal emulation but because that doesn't support windows it is less powerful.&lt;br /&gt;
* Using a RAMdisk under CPM+ doesn't make much of a difference to the speed of loading.&lt;br /&gt;
&lt;br /&gt;
==Technical Information==&lt;br /&gt;
&lt;br /&gt;
* The program reads the first 64KB of the game file, padding with 0's if less than 64KB, and writes out a SWAP.DAT file. A Z-machine has a maximum of 64KB of RAM. Therefore the disc which CPCZVM is run from must have at least 64KB free and be writeable. When the RAM is written to this swap file is updated. This swap file is also re-generated from the game file when the game is restarted.&lt;br /&gt;
&lt;br /&gt;
* Part of the CPC's memory is used for the virtual memory cache. A page table describes which virtual memory blocks are loaded and their physical location within RAM. This is initially populated from the start from the game file. When a read is done, the virtual memory address is looked up in the page table, and if it is mapped to physical memory then the physical memory is read. A write is similar to a read with an additional flag being set if a write has been made to a mapped page. If a virtual memory page is not currently loaded, then depending on the metric used, a page is chosen to be evicted. If the page has been modified it is committed to the swap file. Then the new page is loaded into the same physical location. During game play, any access to virtual memory in the first 64KB comes from the swap file, and any accesses above 64KB come from the game file. In this way the virtual memory supports both Z-Machine RAM and Z-Machine ROM.&lt;br /&gt;
&lt;br /&gt;
* CP/M is used because it has a random access filesystem compared to AMSDOS which doesn't. The random access is required to read blocks from the swap and game file when needed.&lt;br /&gt;
&lt;br /&gt;
* Disc accesses use normal CP/M functions so it should work with other devices such as RAM discs, Harddisks etc.&lt;br /&gt;
&lt;br /&gt;
=AMSDOS version=&lt;br /&gt;
&lt;br /&gt;
CPCZVM for AMSDOS requires additional Dk'tronics compatible memory (e.g. [[X-MEM]] ). The entire game file is loaded into available RAM so it is recommended to use a 512KB RAM expansion. Loading uses CAS IN CHAR so is very slow.&lt;br /&gt;
&lt;br /&gt;
NOTES:&lt;br /&gt;
* This version supports the v1.0 specification &lt;br /&gt;
* It has been tested against oztest, czech, etude and strict tests.&lt;br /&gt;
&lt;br /&gt;
==What is supported==&lt;br /&gt;
* Transcript (goes to printer)&lt;br /&gt;
* Timed input&lt;br /&gt;
* Font styles (bold, italics etc)&lt;br /&gt;
* Z-Machine window opcodes&lt;br /&gt;
 &lt;br /&gt;
==What isn't supported==&lt;br /&gt;
* UNDO&lt;br /&gt;
* V6 or V7 games&lt;br /&gt;
* Colours (this requires that all the colours can be displayed at once)&lt;br /&gt;
&lt;br /&gt;
==Running an adventure==&lt;br /&gt;
* Copy CPCZVM.BAS and the game file (e.g. ADVENT.Z3) to media. Both of these should  be in the same location. &lt;br /&gt;
* Make a simple BASIC loader with this form:&lt;br /&gt;
 &lt;br /&gt;
  5 BORDER 0:INK 0,0:INK 1,13&lt;br /&gt;
 10 a$=&amp;quot;advent.z3&amp;quot;&lt;br /&gt;
 20 chain&amp;quot;cpczvm&amp;quot;&lt;br /&gt;
&lt;br /&gt;
and save it:&lt;br /&gt;
&lt;br /&gt;
 save&amp;quot;advent&lt;br /&gt;
&lt;br /&gt;
* Now you can run your adventure:&lt;br /&gt;
&lt;br /&gt;
 run&amp;quot;advent&lt;br /&gt;
&lt;br /&gt;
NOTES:&lt;br /&gt;
* In the example above 'advent.z3' is the name of the game file. It should not have a header. &lt;br /&gt;
* 'a$' variable must be used. You can't use another name because CPCZVM.BAS requires it to have this name.&lt;br /&gt;
* In the example above 'advent' is the name of your basic loader. You can name it as you wish.&lt;br /&gt;
* It is advised to use a large ram expansion (&amp;gt;64KB) because many game files are large and you need plenty of extra ram to load large game files.&lt;br /&gt;
* If the adventure will not fit on a normal CPC Data format disk, use [[ParaDOS]] and copy the files to a ROMDOS D1 format disc.&lt;br /&gt;
&lt;br /&gt;
==Technical information==&lt;br /&gt;
&lt;br /&gt;
* The CPCZVM.BAS contains a fixed basic stub followed by the machine code. The BASIC stub must not be modified or it will break CPCZVM.BAS. Using a BASIC stub means I don't need to re-enable any ROMs (like I would if RUN was used) and the current drive and filesystem remains active allowing hard disks and other DOS to be used. In addition I can pass HIMEM to know if there is enough RAM free (expansion ROMs can modify HIMEM to allocate work space) and a string variable containing the game filename.&lt;br /&gt;
* The program uses the firmware except TXT WRITE CHAR is patched so that bold, italics and inverse is supported. The font is manipulated as it is drawn.&lt;br /&gt;
* Transcript goes to the printer.&lt;br /&gt;
* The program detects the amount of additional RAM and will warn if there is not enough when loading the game file. &lt;br /&gt;
* The program only supports Dk'Tronics compatible RAM.&lt;br /&gt;
* The entire game file is loaded into extra ram using &amp;quot;CAS IN CHAR&amp;quot; functions. This is used because the extra memory is paged in 16KB at a time and [[BIOS_Function_Summary#Cassette_.28or_Diskette.29_Functions|CAS IN DIRECT]] reads in an entire block and the game files exceed the size of 16KB and do not require an AMSDOS header to be added.&lt;br /&gt;
* The BASIC boot program allows a game filename to be passed to CPCZVM.BAS without requiring it to be modified. The use of CHAIN keeps the defined variables and HIMEM.&lt;br /&gt;
* This version should run from [[X-MASS]] or other hardware.&lt;br /&gt;
&lt;br /&gt;
=SymbOS Version=&lt;br /&gt;
&lt;br /&gt;
Zym is a Z-Machine interpreter for SymbOS written in C. It supports Z-machine versions 3, 4, 5, and 8, so it can run most of the games published by Infocom, as well as thousands of other Z-code games created by the interactive fiction community. Zym supports different terminal window sizes and also runs on ALL SymbOS platforms, not only CPC.&lt;br /&gt;
&lt;br /&gt;
Zym requires SymbOS 3.1 or higher and at least 256 KB of RAM to load most games.&lt;br /&gt;
&lt;br /&gt;
https://i.imgur.com/W8AmmFE.png&lt;br /&gt;
&lt;br /&gt;
=Downloads=&lt;br /&gt;
&lt;br /&gt;
* [https://www.seasip.info/ZX/zxzvm.html ZXZVM homepage]&lt;br /&gt;
* [https://www.seasip.info/index.html John Elliott's website]&lt;br /&gt;
* [[File:Zvm.zip]] Source code (CPM+AMSDOS+Disks)&lt;br /&gt;
* [http://www.symbos.de/appinfo.htm?00054 SymbOS homepage]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Z-machine&amp;diff=122087</id>
		<title>Z-machine</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Z-machine&amp;diff=122087"/>
				<updated>2025-02-04T16:00:51Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Redirected page to Z-Machine&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#redirect[[Z-Machine]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Vezza&amp;diff=122086</id>
		<title>Vezza</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Vezza&amp;diff=122086"/>
				<updated>2025-02-04T16:00:42Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Brief page with links&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a [[Z-machine]] emulator.&lt;br /&gt;
&lt;br /&gt;
==External link==&lt;br /&gt;
*[https://sijnstra.itch.io/vezza Itch.io: download]&lt;br /&gt;
*[https://gitlab.com/sijnstra1/vezza Gitlab: code]&lt;br /&gt;
&lt;br /&gt;
[[Category:Emulator]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=Z-Machine&amp;diff=122084</id>
		<title>Z-Machine</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=Z-Machine&amp;diff=122084"/>
				<updated>2025-02-04T15:58:59Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Linking to CPCVM&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Z-Machine is a text based interpreter which runs text adventures made by Infocom and Z-code files.&lt;br /&gt;
&lt;br /&gt;
It is available for CPC for different OS.&lt;br /&gt;
&lt;br /&gt;
* A version for CPM&lt;br /&gt;
* A version for AMSDOS&lt;br /&gt;
* A version for SymbOS&lt;br /&gt;
&lt;br /&gt;
[[CPCZVM]] is a Z-Machine interpreter for the CPC. It is a modification of ZXZVM, an interpreter made by [[John Elliott]] for the PCW.  The Amstrad version was converted by [[Kevin Thacker]]. There are two versions, for CPM and AMSDOS.&lt;br /&gt;
&lt;br /&gt;
Zym is a Z-Machine interpreter for SymbOS, made by [[prevtenet]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=CPM version=&lt;br /&gt;
&lt;br /&gt;
CPCZVM for CPM features a virtual memory system supporting both the Z-machines RAM and ROM. It runs under CPM2.2 and CPM+. CPCZVM has been written to be as compatible with CPM as possible and should run on other CPMs for the Amstrad.&lt;br /&gt;
&lt;br /&gt;
CPCZVM will not run under Amstrad's CPM2.2 distribution because it doesn't have enough TPA. However you can use [[DkTronics_CPM]] which has a larger TPA.&lt;br /&gt;
&lt;br /&gt;
==Running an adventure==&lt;br /&gt;
&lt;br /&gt;
* Copy CPCZVM.COM, ZXZVM.BIN and the game file (e.g. ADVENT.Z3) to media which has at least 64KB free. All of these should  be in the same location. &lt;br /&gt;
* Boot into CP/M.&lt;br /&gt;
* Select the disc (e.g. B:)&lt;br /&gt;
* Type: CPCZVM ADVENT.Z3 to start.&lt;br /&gt;
&lt;br /&gt;
Not supported:&lt;br /&gt;
* Timed input&lt;br /&gt;
* Italics, Bold and other font styles.&lt;br /&gt;
* Colours&lt;br /&gt;
* Sound&lt;br /&gt;
&lt;br /&gt;
NOTE:&lt;br /&gt;
* CPM2.2 version is better than the CPM+ version because it can use windows like the AMSDOS version to allow individual sections of the display to be split or scrolling. Amstrad's implementation of CPM is assumed and that printing goes to the firmware functions and the firmware control codes can be executed. &lt;br /&gt;
* CPM+ version uses the VT52 terminal emulation but because that doesn't support windows it is less powerful.&lt;br /&gt;
* Using a RAMdisk under CPM+ doesn't make much of a difference to the speed of loading.&lt;br /&gt;
&lt;br /&gt;
==Technical Information==&lt;br /&gt;
&lt;br /&gt;
* The program reads the first 64KB of the game file, padding with 0's if less than 64KB, and writes out a SWAP.DAT file. A Z-machine has a maximum of 64KB of RAM. Therefore the disc which CPCZVM is run from must have at least 64KB free and be writeable. When the RAM is written to this swap file is updated. This swap file is also re-generated from the game file when the game is restarted.&lt;br /&gt;
&lt;br /&gt;
* Part of the CPC's memory is used for the virtual memory cache. A page table describes which virtual memory blocks are loaded and their physical location within RAM. This is initially populated from the start from the game file. When a read is done, the virtual memory address is looked up in the page table, and if it is mapped to physical memory then the physical memory is read. A write is similar to a read with an additional flag being set if a write has been made to a mapped page. If a virtual memory page is not currently loaded, then depending on the metric used, a page is chosen to be evicted. If the page has been modified it is committed to the swap file. Then the new page is loaded into the same physical location. During game play, any access to virtual memory in the first 64KB comes from the swap file, and any accesses above 64KB come from the game file. In this way the virtual memory supports both Z-Machine RAM and Z-Machine ROM.&lt;br /&gt;
&lt;br /&gt;
* CP/M is used because it has a random access filesystem compared to AMSDOS which doesn't. The random access is required to read blocks from the swap and game file when needed.&lt;br /&gt;
&lt;br /&gt;
* Disc accesses use normal CP/M functions so it should work with other devices such as RAM discs, Harddisks etc.&lt;br /&gt;
&lt;br /&gt;
=AMSDOS version=&lt;br /&gt;
&lt;br /&gt;
CPCZVM for AMSDOS requires additional Dk'tronics compatible memory (e.g. [[X-MEM]] ). The entire game file is loaded into available RAM so it is recommended to use a 512KB RAM expansion. Loading uses CAS IN CHAR so is very slow.&lt;br /&gt;
&lt;br /&gt;
NOTES:&lt;br /&gt;
* This version supports the v1.0 specification &lt;br /&gt;
* It has been tested against oztest, czech, etude and strict tests.&lt;br /&gt;
&lt;br /&gt;
==What is supported==&lt;br /&gt;
* Transcript (goes to printer)&lt;br /&gt;
* Timed input&lt;br /&gt;
* Font styles (bold, italics etc)&lt;br /&gt;
* Z-Machine window opcodes&lt;br /&gt;
 &lt;br /&gt;
==What isn't supported==&lt;br /&gt;
* UNDO&lt;br /&gt;
* V6 or V7 games&lt;br /&gt;
* Colours (this requires that all the colours can be displayed at once)&lt;br /&gt;
&lt;br /&gt;
==Running an adventure==&lt;br /&gt;
* Copy CPCZVM.BAS and the game file (e.g. ADVENT.Z3) to media. Both of these should  be in the same location. &lt;br /&gt;
* Make a simple BASIC loader with this form:&lt;br /&gt;
 &lt;br /&gt;
  5 BORDER 0:INK 0,0:INK 1,13&lt;br /&gt;
 10 a$=&amp;quot;advent.z3&amp;quot;&lt;br /&gt;
 20 chain&amp;quot;cpczvm&amp;quot;&lt;br /&gt;
&lt;br /&gt;
and save it:&lt;br /&gt;
&lt;br /&gt;
 save&amp;quot;advent&lt;br /&gt;
&lt;br /&gt;
* Now you can run your adventure:&lt;br /&gt;
&lt;br /&gt;
 run&amp;quot;advent&lt;br /&gt;
&lt;br /&gt;
NOTES:&lt;br /&gt;
* In the example above 'advent.z3' is the name of the game file. It should not have a header. &lt;br /&gt;
* 'a$' variable must be used. You can't use another name because CPCZVM.BAS requires it to have this name.&lt;br /&gt;
* In the example above 'advent' is the name of your basic loader. You can name it as you wish.&lt;br /&gt;
* It is advised to use a large ram expansion (&amp;gt;64KB) because many game files are large and you need plenty of extra ram to load large game files.&lt;br /&gt;
* If the adventure will not fit on a normal CPC Data format disk, use [[ParaDOS]] and copy the files to a ROMDOS D1 format disc.&lt;br /&gt;
&lt;br /&gt;
==Technical information==&lt;br /&gt;
&lt;br /&gt;
* The CPCZVM.BAS contains a fixed basic stub followed by the machine code. The BASIC stub must not be modified or it will break CPCZVM.BAS. Using a BASIC stub means I don't need to re-enable any ROMs (like I would if RUN was used) and the current drive and filesystem remains active allowing hard disks and other DOS to be used. In addition I can pass HIMEM to know if there is enough RAM free (expansion ROMs can modify HIMEM to allocate work space) and a string variable containing the game filename.&lt;br /&gt;
* The program uses the firmware except TXT WRITE CHAR is patched so that bold, italics and inverse is supported. The font is manipulated as it is drawn.&lt;br /&gt;
* Transcript goes to the printer.&lt;br /&gt;
* The program detects the amount of additional RAM and will warn if there is not enough when loading the game file. &lt;br /&gt;
* The program only supports Dk'Tronics compatible RAM.&lt;br /&gt;
* The entire game file is loaded into extra ram using &amp;quot;CAS IN CHAR&amp;quot; functions. This is used because the extra memory is paged in 16KB at a time and [[BIOS_Function_Summary#Cassette_.28or_Diskette.29_Functions|CAS IN DIRECT]] reads in an entire block and the game files exceed the size of 16KB and do not require an AMSDOS header to be added.&lt;br /&gt;
* The BASIC boot program allows a game filename to be passed to CPCZVM.BAS without requiring it to be modified. The use of CHAIN keeps the defined variables and HIMEM.&lt;br /&gt;
* This version should run from [[X-MASS]] or other hardware.&lt;br /&gt;
&lt;br /&gt;
=SymbOS Version=&lt;br /&gt;
&lt;br /&gt;
Zym is a Z-Machine interpreter for SymbOS written in C. It supports Z-machine versions 3, 4, 5, and 8, so it can run most of the games published by Infocom, as well as thousands of other Z-code games created by the interactive fiction community. Zym supports different terminal window sizes and also runs on ALL SymbOS platforms, not only CPC.&lt;br /&gt;
&lt;br /&gt;
Zym requires SymbOS 3.1 or higher and at least 256 KB of RAM to load most games.&lt;br /&gt;
&lt;br /&gt;
https://i.imgur.com/W8AmmFE.png&lt;br /&gt;
&lt;br /&gt;
=Downloads=&lt;br /&gt;
&lt;br /&gt;
* [https://www.seasip.info/ZX/zxzvm.html ZXZVM homepage]&lt;br /&gt;
* [https://www.seasip.info/index.html John Elliott's website]&lt;br /&gt;
* [[File:Zvm.zip]] Source code (CPM+AMSDOS+Disks)&lt;br /&gt;
* [http://www.symbos.de/appinfo.htm?00054 SymbOS homepage]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=CPCZVM&amp;diff=122083</id>
		<title>CPCZVM</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=CPCZVM&amp;diff=122083"/>
				<updated>2025-02-04T15:58:32Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Categorisation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This Z-machine interpreter and is described on the [[Z-Machine]] page.&lt;br /&gt;
&lt;br /&gt;
[[Category:Emulator]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=CPCZVM&amp;diff=122082</id>
		<title>CPCZVM</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=CPCZVM&amp;diff=122082"/>
				<updated>2025-02-04T15:57:50Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Brief page to make red link blue&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This Z-machine interpreter and is described on the [[Z-Machine]] page.&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_2_(November_1986)&amp;diff=121859</id>
		<title>WACCI issue 2 (November 1986)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_2_(November_1986)&amp;diff=121859"/>
				<updated>2025-01-31T10:57:28Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Adding screenshots&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Second issue of [[WACCI]].&lt;br /&gt;
&lt;br /&gt;
A printed version was distributed later, with a note inside saying:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Welcome to the second edition of WACCI. Those of you who received issue 71 will remember the free gift of the very first edition of WACCI. I have laid issue to along the same lines and I hope you enjoy the read. It is interesting to see how far the magazine had come in such a short space of time, this issue being 24 pages long as opposed to the 16 of issue one. Paul.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery caption=&amp;quot;Screenshots&amp;quot;&amp;gt;&lt;br /&gt;
WACCI issue 2 screenshot of loading screen.png|Loading screen&lt;br /&gt;
WACCI issue 2 screenshot of table of contents.png|Table of contents&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
* [[Media:WACCI magazine disc 1 side B (issue 2).dsk|Disc image]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;br /&gt;
[[Category:Disczine]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=File:WACCI_issue_2_screenshot_of_table_of_contents.png&amp;diff=121858</id>
		<title>File:WACCI issue 2 screenshot of table of contents.png</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=File:WACCI_issue_2_screenshot_of_table_of_contents.png&amp;diff=121858"/>
				<updated>2025-01-31T10:57:06Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=File:WACCI_issue_2_screenshot_of_loading_screen.png&amp;diff=121857</id>
		<title>File:WACCI issue 2 screenshot of loading screen.png</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=File:WACCI_issue_2_screenshot_of_loading_screen.png&amp;diff=121857"/>
				<updated>2025-01-31T10:55:05Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_1_(October_1986)&amp;diff=121856</id>
		<title>WACCI issue 1 (October 1986)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_1_(October_1986)&amp;diff=121856"/>
				<updated>2025-01-31T10:54:38Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Adding screenshots&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The first issue of [[WACCI]].&lt;br /&gt;
&lt;br /&gt;
A printed version was distributed with issue 71, with a note inside saying:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
This isn't really what the first WACCI looked like. Issue one was simply a newsletter that was distributed on C60 tapes. It was, however, truly historic event, so Clive and myself felt that we should produce a souvenir issue to commemorate the launch of WACCI in October 1986. I have tried to layout issue one in a combination of the old and new styles - hope you enjoy it. Paul.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery caption=&amp;quot;Screenshots&amp;quot;&amp;gt;&lt;br /&gt;
WACCI issue 1 screenshot of loading screen.png|Loading screen&lt;br /&gt;
WACCI issue 1 screenshot of table of contents.png|Table of contents&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
*[[Media:WACCI magazine disc 1 side A (issue 1).dsk|Disc image]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;br /&gt;
[[Category:Disczine]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=File:WACCI_issue_1_screenshot_of_table_of_contents.png&amp;diff=121855</id>
		<title>File:WACCI issue 1 screenshot of table of contents.png</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=File:WACCI_issue_1_screenshot_of_table_of_contents.png&amp;diff=121855"/>
				<updated>2025-01-31T10:54:18Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=File:WACCI_issue_1_screenshot_of_loading_screen.png&amp;diff=121854</id>
		<title>File:WACCI issue 1 screenshot of loading screen.png</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=File:WACCI_issue_1_screenshot_of_loading_screen.png&amp;diff=121854"/>
				<updated>2025-01-31T10:53:24Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_2_(November_1986)&amp;diff=121536</id>
		<title>WACCI issue 2 (November 1986)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_2_(November_1986)&amp;diff=121536"/>
				<updated>2025-01-12T14:45:08Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Adding note from printed version&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Second issue of [[WACCI]].&lt;br /&gt;
&lt;br /&gt;
A printed version was distributed later, with a note inside saying:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Welcome to the second edition of WACCI. Those of you who received issue 71 will remember the free gift of the very first edition of WACCI. I have laid issue to along the same lines and I hope you enjoy the read. It is interesting to see how far the magazine had come in such a short space of time, this issue being 24 pages long as opposed to the 16 of issue one. Paul.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
* [[Media:WACCI magazine disc 1 side B (issue 2).dsk|Disc image]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;br /&gt;
[[Category:Disczine]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_1_(October_1986)&amp;diff=121535</id>
		<title>WACCI issue 1 (October 1986)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_1_(October_1986)&amp;diff=121535"/>
				<updated>2025-01-12T14:42:48Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Typo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The first issue of [[WACCI]].&lt;br /&gt;
&lt;br /&gt;
A printed version was distributed with issue 71, with a note inside saying:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
This isn't really what the first WACCI looked like. Issue one was simply a newsletter that was distributed on C60 tapes. It was, however, truly historic event, so Clive and myself felt that we should produce a souvenir issue to commemorate the launch of WACCI in October 1986. I have tried to layout issue one in a combination of the old and new styles - hope you enjoy it. Paul.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
*[[Media:WACCI magazine disc 1 side A (issue 1).dsk|Disc image]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;br /&gt;
[[Category:Disczine]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_1_(October_1986)&amp;diff=121534</id>
		<title>WACCI issue 1 (October 1986)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_1_(October_1986)&amp;diff=121534"/>
				<updated>2025-01-12T14:41:52Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Adding note from printed version&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The first issue of [[WACCI]].&lt;br /&gt;
&lt;br /&gt;
A printed version was distributed with issue 70, with a note inside saying:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
This isn't really what the first WACCI looked like. Issue one was simply a newsletter that was distributed on C60 tapes. It was, however, truly historic event, so Clive and myself felt that we should produce a souvenir issue to commemorate the launch of WACCI in October 1986. I have tried to layout issue one in a combination of the old and new styles - hope you enjoy it. Paul.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
*[[Media:WACCI magazine disc 1 side A (issue 1).dsk|Disc image]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;br /&gt;
[[Category:Disczine]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_3_(December_1986)&amp;diff=121516</id>
		<title>WACCI issue 3 (December 1986)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_3_(December_1986)&amp;diff=121516"/>
				<updated>2025-01-10T22:54:16Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Adding screenshots&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Third issue of [[WACCI]]. The first three issues were published on paper and electronically. This was the final issue on disc/tape.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery caption=&amp;quot;Screenshots&amp;quot;&amp;gt;&lt;br /&gt;
File:WACCI issue 3 screenshot of loading screen.png|Loading screen&lt;br /&gt;
File:WACCI issue 3 screenshot of table of contents.png|Table of contents&lt;br /&gt;
File:WACCI issue 3 screenshot of first page.png|First page&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
* [[Media:WACCI magazine disc 2 side A (issue 3).dsk|Disc image]]&lt;br /&gt;
* [[Media:WACCI magazine disc 2 side B (images).dsk|Images]]. Side B of issue 3 disc (unsure whether it was originally supplied with the magazine)&lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;br /&gt;
[[Category:Disczine]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=File:WACCI_issue_3_screenshot_of_first_page.png&amp;diff=121515</id>
		<title>File:WACCI issue 3 screenshot of first page.png</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=File:WACCI_issue_3_screenshot_of_first_page.png&amp;diff=121515"/>
				<updated>2025-01-10T22:48:49Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=File:WACCI_issue_3_screenshot_of_table_of_contents.png&amp;diff=121514</id>
		<title>File:WACCI issue 3 screenshot of table of contents.png</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=File:WACCI_issue_3_screenshot_of_table_of_contents.png&amp;diff=121514"/>
				<updated>2025-01-10T22:47:54Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=File:WACCI_issue_3_screenshot_of_loading_screen.png&amp;diff=121513</id>
		<title>File:WACCI issue 3 screenshot of loading screen.png</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=File:WACCI_issue_3_screenshot_of_loading_screen.png&amp;diff=121513"/>
				<updated>2025-01-10T22:46:42Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI&amp;diff=121512</id>
		<title>WACCI</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI&amp;diff=121512"/>
				<updated>2025-01-10T22:28:12Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Adding explanation of acronym from Amstrad Addict magazine&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The CPC's longest-running fanzine and user group, WACCI was based in Britain and it catered mostly for serious users.&lt;br /&gt;
&lt;br /&gt;
Its acronym has never been satisfactorily explained although the official WACCI explanation was that it stood for World Amstrad Computer Club International. [[Jeff Walker]], who was the original founder, said he always thought the name would be good for a magazine and that he used it without any intention of it being an acronym at all. In [[Amstrad Addict]]'s &amp;quot;The WACCI days of the CPC&amp;quot; article, published in 2023, the next editor [[Steve Williams]] said:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
'''What about the name?'''&lt;br /&gt;
&lt;br /&gt;
''WACCI'' was meant to stand for the Worldwide Amstrad Computer Club International which, if you think about it, didn't really make much sense. Surely Worldwide means International so why is it in the name twice? Well, because Jeff once told me that the anachronism initially stood for Walker's Amstrad Computer Club International but he swore me to secrecy so we'll keep it just between you and me, eh?  No one else will ever know!&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As well as a (more or less) regular paper-based magazine, WACCI also provided a [[PD library]] (of mostly [[CP/M]] software) and it also had a 'homebrew' library.&lt;br /&gt;
&lt;br /&gt;
Some of the CPC's best writers, such as [[Auntie John]] (John Kennedy), were contributors to early WACCIs and one of Amstrad Action's finest journalists, [[ChaRleyTroniC]] (Richard Fairhurst), was its final editor.&lt;br /&gt;
&lt;br /&gt;
The decline in serious use of the CPC inevitably led to a petering out of the publication and the last issue - number 140 - was published in the Summer of 2003.&lt;br /&gt;
&lt;br /&gt;
A spin-off disczine, [[EuroWACCI]], existed for six issues.&lt;br /&gt;
&lt;br /&gt;
== WACCI editors ==&lt;br /&gt;
&lt;br /&gt;
* [[Jeff Walker]]&lt;br /&gt;
* [[Steve Williams]]&lt;br /&gt;
* [[Clive Bellaby]]&lt;br /&gt;
* [[Paul Dwerryhouse]]&lt;br /&gt;
* [[Philip DiRichleau]]&lt;br /&gt;
* [[John Bowley]]&lt;br /&gt;
* [[Dave Stitson]]&lt;br /&gt;
* [[ChaRleyTroniC|Richard Fairhurst]]&lt;br /&gt;
&lt;br /&gt;
==Issues==&lt;br /&gt;
The first three issues are available in .DSK format. The final two issues are available in HTML format. Some others are available in PDF format, as set out below. A few of the cover scans are missing.&lt;br /&gt;
&amp;lt;gallery caption=&amp;quot;WACCI&amp;quot;&amp;gt;&lt;br /&gt;
Image:Wacci 001.jpg|[[WACCI issue 1 (October 1986)]] - disc image&lt;br /&gt;
Image:Wacci 002.jpg|[[WACCI issue 2 (November 1986)]] - disc image&lt;br /&gt;
Image:Wacci 003.jpg|[[WACCI issue 3 (December 1986)]] - disc image&lt;br /&gt;
-|WACCI issue 4&lt;br /&gt;
-|WACCI issue 5&lt;br /&gt;
-|WACCI issue 6&lt;br /&gt;
-|WACCI issue 7&lt;br /&gt;
-|WACCI issue 8&lt;br /&gt;
-|WACCI issue 9&lt;br /&gt;
Image:Wacci 010.jpg|[[WACCI issue 10 (July 1987)]]&lt;br /&gt;
-|WACCI issue 11&lt;br /&gt;
-|WACCI issue 12&lt;br /&gt;
-|WACCI issue 13&lt;br /&gt;
-|WACCI issue 14&lt;br /&gt;
-|WACCI issue 15&lt;br /&gt;
Image:Wacci 016.jpg|[[WACCI issue 16 (January 1988)]]&lt;br /&gt;
-|WACCI issue 17&lt;br /&gt;
-|WACCI issue 18&lt;br /&gt;
-|WACCI issue 19&lt;br /&gt;
Image:Wacci 020.jpg|[[WACCI issue 20 (May 1988)]]&lt;br /&gt;
-|WACCI issue 21&lt;br /&gt;
-|WACCI issue 22&lt;br /&gt;
-|WACCI issue 23&lt;br /&gt;
-|WACCI issue 24&lt;br /&gt;
-|WACCI issue 25&lt;br /&gt;
-|[[WACCI issue 26 (November 1988)]] - PDF&lt;br /&gt;
Image:Wacci 027.jpg|[[WACCI issue 27 (December 1988)]]&lt;br /&gt;
Image:Wacci 028.jpg|[[WACCI issue 28 (January 1989)]] - PDF&lt;br /&gt;
Image:Wacci 029.jpg|[[WACCI issue 29 (February 1989)]]&lt;br /&gt;
-|[[WACCI issue 30 (March 1989)]] - PDF&lt;br /&gt;
Image:Wacci 031.jpg|[[WACCI issue 31 (April 1989)]]&lt;br /&gt;
Image:Wacci 032.jpg|[[WACCI issue 32 (May 1989)]]&lt;br /&gt;
Image:Wacci 033.jpg|[[WACCI issue 33 (July 1989)]]&lt;br /&gt;
Image:Wacci 034.jpg|[[WACCI issue 34 (August 1989)]]&lt;br /&gt;
Image:Wacci 035.jpg|[[WACCI issue 35 (September 1989)]]&lt;br /&gt;
Image:Wacci 036.jpg|[[WACCI issue 36 (October 1989)]]&lt;br /&gt;
Image:Wacci 037.jpg|[[WACCI issue 37 (November 1989)]]&lt;br /&gt;
Image:Wacci 038.jpg|[[WACCI issue 38 (December 1989)]]&lt;br /&gt;
Image:Wacci 039.jpg|[[WACCI issue 39 (January 1990)]]&lt;br /&gt;
Image:Wacci 040.jpg|[[WACCI issue 40 (February 1990)]]&lt;br /&gt;
Image:Wacci 041.jpg|[[WACCI issue 41 (March 1990)]]&lt;br /&gt;
Image:Wacci 042.jpg|[[WACCI issue 42 (April 1990)]] - PDF&lt;br /&gt;
Image:Wacci 043.jpg|[[WACCI issue 43 (May 1990)]] - PDF&lt;br /&gt;
Image:Wacci 044.jpg|[[WACCI issue 44 (June 1990)]] - PDF&lt;br /&gt;
Image:Wacci 045.jpg|[[WACCI issue 45 (September 1990)]] - PDF&lt;br /&gt;
Image:Wacci 046.jpg|[[WACCI issue 46 (December 1990)]] - PDF&lt;br /&gt;
Image:Wacci 047.jpg|[[WACCI issue 47 (March 1990)]] - PDF&lt;br /&gt;
Image:Wacci 048.jpg|WACCI issue 48&lt;br /&gt;
Image:Wacci 049.jpg|WACCI issue 49&lt;br /&gt;
Image:Wacci 050.jpg|[[WACCI issue 50 (January 1992)]]&lt;br /&gt;
Image:Wacci 051.jpg|[[WACCI issue 51 (February 1992)]] - PDF&lt;br /&gt;
Image:Wacci 052.jpg|[[WACCI issue 52 (March 1992)]] - PDF&lt;br /&gt;
Image:Wacci 053.jpg|[[WACCI issue 53 (April 1992)]] - PDF&lt;br /&gt;
Image:Wacci 054.jpg|[[WACCI issue 54 (May 1992)]] - PDF&lt;br /&gt;
Image:Wacci 055.jpg|[[WACCI issue 55 (Jun 1992)]] - PDF&lt;br /&gt;
Image:Wacci 056.jpg|[[WACCI issue 56 (July 1992)]] - PDF&lt;br /&gt;
Image:Wacci 057.jpg|[[WACCI issue 57 (August 1992)]]&lt;br /&gt;
Image:Wacci 058.jpg|[[WACCI issue 58 (September 1992)]] - PDF&lt;br /&gt;
Image:Wacci 059.jpg|[[WACCI issue 59 (October 1992)]]&lt;br /&gt;
Image:Wacci 060.jpg|[[WACCI issue 60 (November 1992)]]&lt;br /&gt;
Image:Wacci 061.jpg|[[WACCI issue 61 (December 1992)]] - PDF&lt;br /&gt;
Image:Wacci 062.jpg|[[WACCI issue 62 (January 1993)]]&lt;br /&gt;
Image:Wacci 063.jpg|[[WACCI issue 63 (February 1993)]]&lt;br /&gt;
Image:Wacci 064.jpg|[[WACCI issue 64 (March 1993)]]&lt;br /&gt;
Image:Wacci 065.jpg|[[WACCI issue 65 (April 1993)]]&lt;br /&gt;
Image:Wacci 066.jpg|[[WACCI issue 66 (May 1993)]]&lt;br /&gt;
Image:Wacci 067.jpg|[[WACCI issue 67 (June 1993)]]&lt;br /&gt;
Image:Wacci 068.jpg|[[WACCI issue 68 (July 1993)]]&lt;br /&gt;
Image:Wacci 069.jpg|[[WACCI issue 69 (August 1993)]]&lt;br /&gt;
Image:Wacci 070.jpg|[[WACCI issue 70 (September 1993)]]&lt;br /&gt;
Image:Wacci 071.jpg|[[WACCI issue 71 (October 1993)]]&lt;br /&gt;
Image:Wacci 072.jpg|[[WACCI issue 72 (November 1993)]]&lt;br /&gt;
Image:Wacci 073.jpg|[[WACCI issue 73 (December 1993)]]&lt;br /&gt;
Image:Wacci 074.jpg|[[WACCI issue 74 (January 1994)]]&lt;br /&gt;
Image:Wacci 075.jpg|[[WACCI issue 75 (February 1994)]]&lt;br /&gt;
Image:Wacci 076.jpg|[[WACCI issue 76 (March 1994)]]&lt;br /&gt;
Image:Wacci 077.jpg|[[WACCI issue 77 (April 1994)]]&lt;br /&gt;
Image:Wacci 078.jpg|[[WACCI issue 78 (May 1994)]]&lt;br /&gt;
Image:Wacci 079.jpg|[[WACCI issue 79 (June 1994)]]&lt;br /&gt;
Image:Wacci 080.jpg|[[WACCI issue 80 (July 1994)]]&lt;br /&gt;
Image:Wacci 081.jpg|[[WACCI issue 81 (August 1994)]]&lt;br /&gt;
Image:Wacci 082.jpg|[[WACCI issue 82 (September/October 1994)]] - PDF&lt;br /&gt;
Image:Wacci 083.jpg|[[WACCI issue 83 (November 1994)]] - PDF&lt;br /&gt;
Image:Wacci 084.jpg|[[WACCI issue 84 (December 1994)]] - PDF&lt;br /&gt;
Image:Wacci 085.jpg|[[WACCI issue 85 (January 1995)]] - PDF&lt;br /&gt;
Image:Wacci 086.jpg|[[WACCI issue 86 (February 1995)]] - PDF&lt;br /&gt;
Image:Wacci 087.jpg|[[WACCI issue 87 (March 1995)]] - PDF&lt;br /&gt;
Image:Wacci 088.jpg|[[WACCI issue 88 (April 1995)]]&lt;br /&gt;
Image:Wacci 089.jpg|[[WACCI issue 89 (May 1995)]] - PDF&lt;br /&gt;
Image:Wacci 090.jpg|[[WACCI issue 90 (June 1995)]] - PDF&lt;br /&gt;
Image:Wacci 091.jpg|[[WACCI issue 91 (July 1995)]]&lt;br /&gt;
Image:Wacci 092.jpg|[[WACCI issue 92 (August/September 1995)]]&lt;br /&gt;
Image:Wacci 093.jpg|[[WACCI issue 93 (October 1995)]]&lt;br /&gt;
Image:Wacci 094.jpg|[[WACCI issue 94 (November 1995)]]&lt;br /&gt;
Image:Wacci 095.jpg|[[WACCI issue 95 (December 1995)]] - PDF&lt;br /&gt;
Image:Wacci 096.jpg|[[WACCI issue 96 (January 1996)]]&lt;br /&gt;
Image:Wacci 097.jpg|[[WACCI issue 97 (February 1996)]] - PDF&lt;br /&gt;
Image:Wacci 098.jpg|[[WACCI issue 98 (March 1996)]]&lt;br /&gt;
Image:Wacci 099.jpg|[[WACCI issue 99 (April 1996)]]&lt;br /&gt;
Image:Wacci 100.jpg|[[WACCI issue 100 (May 1996)]] - PDF&lt;br /&gt;
Image:Wacci 101.jpg|[[WACCI issue 101 (June 1996)]] - PDF&lt;br /&gt;
Image:Wacci 102.jpg|[[WACCI issue 102 (July 1996)]] - PDF&lt;br /&gt;
Image:Wacci 103.jpg|[[WACCI issue 103 (August 1996)]] - PDF&lt;br /&gt;
Image:Wacci 104.jpg|[[WACCI issue 104 (September 1996)]] - PDF&lt;br /&gt;
Image:Wacci 105.jpg|[[WACCI issue 105 (October 1996)]] - PDF&lt;br /&gt;
Image:Wacci 106.jpg|[[WACCI issue 106 (November 1996)]] - PDF&lt;br /&gt;
Image:Wacci 107.jpg|[[WACCI issue 107 (December 1996)]] - PDF&lt;br /&gt;
Image:Wacci 108.jpg|[[WACCI issue 108 (January 1996)]] - PDF&lt;br /&gt;
Image:Wacci 109.jpg|[[WACCI issue 109 (February 1996)]] - PDF&lt;br /&gt;
Image:Wacci 110.jpg|[[WACCI issue 110 (March 1997)]] - PDF&lt;br /&gt;
Image:Wacci 111.jpg|[[WACCI issue 111 (April 1997)]] - PDF&lt;br /&gt;
Image:Wacci 112.jpg|[[WACCI issue 112 (May 1997)]] - PDF&lt;br /&gt;
Image:Wacci 113.jpg|[[WACCI issue 113 (June 1997)]] - PDF&lt;br /&gt;
Image:Wacci 114.jpg|[[WACCI issue 114 (July 1997)]] - PDF&lt;br /&gt;
Image:Wacci 115.jpg|[[WACCI issue 115 (August/September 1997)]] - PDF&lt;br /&gt;
Image:Wacci 116.jpg|[[WACCI issue 116 (October 1997)]] - PDF&lt;br /&gt;
Image:Wacci 117.jpg|[[WACCI issue 117 (November/December 1998)]] - PDF&lt;br /&gt;
Image:Wacci 118.jpg|[[WACCI issue 118 (January 1998)]] - PDF&lt;br /&gt;
Image:Wacci 119.jpg|[[WACCI issue 119 (February 1998)]] - PDF&lt;br /&gt;
Image:Wacci 120.jpg|[[WACCI issue 120 (March/April 1998)]] - PDF&lt;br /&gt;
Image:Wacci 121.jpg|[[WACCI issue 121 (May 1998)]] - PDF&lt;br /&gt;
Image:Wacci 122.jpg|[[WACCI issue 122 (June 1998)]] - PDF&lt;br /&gt;
Image:Wacci 123.jpg|[[WACCI issue 123 (July/August 1998)]] - PDF&lt;br /&gt;
Image:Wacci 124.jpg|[[WACCI issue 124 (September 1998)]] - PDF&lt;br /&gt;
Image:Wacci 125.jpg|[[WACCI issue 125 (October 1998)]] - PDF&lt;br /&gt;
Image:Wacci 126.jpg|[[WACCI issue 126 (November/December 1998)]] - PDF&lt;br /&gt;
Image:Wacci 127.jpg|[[WACCI issue 127 (January 1999)]] - PDF&lt;br /&gt;
Image:Wacci 128.jpg|[[WACCI issue 128 (February/April 1999)]] - PDF&lt;br /&gt;
Image:Wacci 129.jpg|[[WACCI issue 129 (May 1999)]] - PDF&lt;br /&gt;
Image:Wacci 130.jpg|[[WACCI issue 130 (July 1999)]] - PDF&lt;br /&gt;
Image:Wacci 131.jpg|[[WACCI issue 131 (August/September 1999)]]&lt;br /&gt;
Image:Wacci 132.jpg|[[WACCI issue 132 (July 2000)]]&lt;br /&gt;
Image:Wacci 133.jpg|[[WACCI issue 133 (August 2000)]]&lt;br /&gt;
Image:Wacci 134.jpg|[[WACCI issue 134 (October 2000)]]&lt;br /&gt;
Image:Wacci 135.jpg|[[WACCI issue 135 (January 2001)]]&lt;br /&gt;
Image:Wacci 136.jpg|[[WACCI issue 136 (July/August 2001)]] - HTML&lt;br /&gt;
Image:Wacci 137.jpg|[[WACCI issue 137 (September/October 2001)]] - HTML&lt;br /&gt;
Image:Wacci 138.jpg|[[WACCI issue 138 (January/February 2002)]] - HTML&lt;br /&gt;
Image:Wacci 139.jpg|[[WACCI issue 139 (Spring 2003)]] - PDF&lt;br /&gt;
Image:Wacci 140.jpg|[[WACCI issue 140 (Summer 2003)]] - PDF&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[WACCI BBS]]&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [https://web.archive.org/web/20080124105649/http://www.wacci.org.uk:80/ WACCI homepage (wacci.org.uk via archive.org)]&lt;br /&gt;
&lt;br /&gt;
* [https://www.cpcwiki.eu/forum/general-discussion/wacci-issues/ CPCWiki forum: &amp;quot;WACCI issues&amp;quot; (thread started by Gryzor, 19 April 2016)]&lt;br /&gt;
&lt;br /&gt;
* [https://www.cpcwiki.eu/forum/applications/wacci-pd-library-list-of-software/ CPCWiki forum: &amp;quot;WACCI PD Software and Book Library - list of software discs and books&amp;quot; (thread started by ComSoft6128, 24 July 2018)]&lt;br /&gt;
&lt;br /&gt;
* [https://www.cpcwiki.eu/forum/general-discussion/wacci-issues-1-3-october-to-december-1986-on-disc/ CPCWiki forum: &amp;quot;WACCI issues 1-3 (October to December 1986) on disc&amp;quot; (thread started by Jonathan, 6 January 2025)]&lt;br /&gt;
&lt;br /&gt;
* [https://web.archive.org/web/20050212202852/http://www.wacci.demon.co.uk/ &amp;quot;WACCI The CPC User Group&amp;quot; website (wacci.demon.co.uk via archive.org)]&lt;br /&gt;
&lt;br /&gt;
* [https://web.archive.org/web/20000309134932/http://users.ox.ac.uk/~chri0264/wowww.html &amp;quot;WoWWW: WACCI on World Wide Web&amp;quot; (users.ox.ac.uk/~chri0264 via archive.org)]&lt;br /&gt;
&lt;br /&gt;
* [https://acpc.me/ACME/?FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D acpc.me: Various front covers and full magazine scans]&lt;br /&gt;
&lt;br /&gt;
[[Category:Fanzines]] [[Category:Papermag]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI&amp;diff=121511</id>
		<title>WACCI</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI&amp;diff=121511"/>
				<updated>2025-01-10T22:19:31Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Getting rid of the separate &amp;quot;Issues&amp;quot; section now that we have links within the image gallery&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The CPC's longest-running fanzine and user group, WACCI was based in Britain and it catered mostly for serious users.&lt;br /&gt;
&lt;br /&gt;
Its acronym has never been satisfactorily explained although the official WACCI explanation was that it stood for World Amstrad Computer Club International.&lt;br /&gt;
&lt;br /&gt;
However, [[Jeff Walker]], who was the original founder, said he always thought the name would be good for a magazine and that he used it without any intention of it being an acronym at all.&lt;br /&gt;
&lt;br /&gt;
As well as a (more or less) regular paper-based magazine, WACCI also provided a [[PD library]] (of mostly [[CP/M]] software) and it also had a 'homebrew' library.&lt;br /&gt;
&lt;br /&gt;
Some of the CPC's best writers, such as [[Auntie John]], were contributors to early WACCIs and one of Amstrad Action's finest journalists, [[ChaRleyTroniC|Richard Fairhurst]], was its final editor.&lt;br /&gt;
&lt;br /&gt;
The decline in serious use of the CPC inevitably led to a petering out of the publication and the last issue - number 140 - was published in the Summer of 2003.&lt;br /&gt;
&lt;br /&gt;
A spin-off disczine, [[EuroWACCI]], existed for six issues.&lt;br /&gt;
&lt;br /&gt;
== WACCI editors ==&lt;br /&gt;
&lt;br /&gt;
* [[Jeff Walker]]&lt;br /&gt;
* [[Steve Williams]]&lt;br /&gt;
* [[Clive Bellaby]]&lt;br /&gt;
* [[Paul Dwerryhouse]]&lt;br /&gt;
* [[Philip DiRichleau]]&lt;br /&gt;
* [[John Bowley]]&lt;br /&gt;
* [[Dave Stitson]]&lt;br /&gt;
* [[ChaRleyTroniC|Richard Fairhurst]]&lt;br /&gt;
&lt;br /&gt;
==Issues==&lt;br /&gt;
The first three issues are available in .DSK format. The final two issues are available in HTML format. Some others are available in PDF format, as set out below.&lt;br /&gt;
&amp;lt;gallery caption=&amp;quot;WACCI&amp;quot;&amp;gt;&lt;br /&gt;
Image:Wacci 001.jpg|[[WACCI issue 1 (October 1986)]] - disc image&lt;br /&gt;
Image:Wacci 002.jpg|[[WACCI issue 2 (November 1986)]] - disc image&lt;br /&gt;
Image:Wacci 003.jpg|[[WACCI issue 3 (December 1986)]] - disc image&lt;br /&gt;
-|WACCI issue 4&lt;br /&gt;
-|WACCI issue 5&lt;br /&gt;
-|WACCI issue 6&lt;br /&gt;
-|WACCI issue 7&lt;br /&gt;
-|WACCI issue 8&lt;br /&gt;
-|WACCI issue 9&lt;br /&gt;
Image:Wacci 010.jpg|[[WACCI issue 10 (July 1987)]]&lt;br /&gt;
-|WACCI issue 11&lt;br /&gt;
-|WACCI issue 12&lt;br /&gt;
-|WACCI issue 13&lt;br /&gt;
-|WACCI issue 14&lt;br /&gt;
-|WACCI issue 15&lt;br /&gt;
Image:Wacci 016.jpg|[[WACCI issue 16 (January 1988)]]&lt;br /&gt;
-|WACCI issue 17&lt;br /&gt;
-|WACCI issue 18&lt;br /&gt;
-|WACCI issue 19&lt;br /&gt;
Image:Wacci 020.jpg|[[WACCI issue 20 (May 1988)]]&lt;br /&gt;
-|WACCI issue 21&lt;br /&gt;
-|WACCI issue 22&lt;br /&gt;
-|WACCI issue 23&lt;br /&gt;
-|WACCI issue 24&lt;br /&gt;
-|WACCI issue 25&lt;br /&gt;
-|[[WACCI issue 26 (November 1988)]] - PDF&lt;br /&gt;
Image:Wacci 027.jpg|[[WACCI issue 27 (December 1988)]]&lt;br /&gt;
Image:Wacci 028.jpg|[[WACCI issue 28 (January 1989)]] - PDF&lt;br /&gt;
Image:Wacci 029.jpg|[[WACCI issue 29 (February 1989)]]&lt;br /&gt;
-|[[WACCI issue 30 (March 1989)]] - PDF&lt;br /&gt;
Image:Wacci 031.jpg|[[WACCI issue 31 (April 1989)]]&lt;br /&gt;
Image:Wacci 032.jpg|[[WACCI issue 32 (May 1989)]]&lt;br /&gt;
Image:Wacci 033.jpg|[[WACCI issue 33 (July 1989)]]&lt;br /&gt;
Image:Wacci 034.jpg|[[WACCI issue 34 (August 1989)]]&lt;br /&gt;
Image:Wacci 035.jpg|[[WACCI issue 35 (September 1989)]]&lt;br /&gt;
Image:Wacci 036.jpg|[[WACCI issue 36 (October 1989)]]&lt;br /&gt;
Image:Wacci 037.jpg|[[WACCI issue 37 (November 1989)]]&lt;br /&gt;
Image:Wacci 038.jpg|[[WACCI issue 38 (December 1989)]]&lt;br /&gt;
Image:Wacci 039.jpg|[[WACCI issue 39 (January 1990)]]&lt;br /&gt;
Image:Wacci 040.jpg|[[WACCI issue 40 (February 1990)]]&lt;br /&gt;
Image:Wacci 041.jpg|[[WACCI issue 41 (March 1990)]]&lt;br /&gt;
Image:Wacci 042.jpg|[[WACCI issue 42 (April 1990)]] - PDF&lt;br /&gt;
Image:Wacci 043.jpg|[[WACCI issue 43 (May 1990)]] - PDF&lt;br /&gt;
Image:Wacci 044.jpg|[[WACCI issue 44 (June 1990)]] - PDF&lt;br /&gt;
Image:Wacci 045.jpg|[[WACCI issue 45 (September 1990)]] - PDF&lt;br /&gt;
Image:Wacci 046.jpg|[[WACCI issue 46 (December 1990)]] - PDF&lt;br /&gt;
Image:Wacci 047.jpg|[[WACCI issue 47 (March 1990)]] - PDF&lt;br /&gt;
Image:Wacci 048.jpg|WACCI issue 48&lt;br /&gt;
Image:Wacci 049.jpg|WACCI issue 49&lt;br /&gt;
Image:Wacci 050.jpg|[[WACCI issue 50 (January 1992)]]&lt;br /&gt;
Image:Wacci 051.jpg|[[WACCI issue 51 (February 1992)]] - PDF&lt;br /&gt;
Image:Wacci 052.jpg|[[WACCI issue 52 (March 1992)]] - PDF&lt;br /&gt;
Image:Wacci 053.jpg|[[WACCI issue 53 (April 1992)]] - PDF&lt;br /&gt;
Image:Wacci 054.jpg|[[WACCI issue 54 (May 1992)]] - PDF&lt;br /&gt;
Image:Wacci 055.jpg|[[WACCI issue 55 (Jun 1992)]] - PDF&lt;br /&gt;
Image:Wacci 056.jpg|[[WACCI issue 56 (July 1992)]] - PDF&lt;br /&gt;
Image:Wacci 057.jpg|[[WACCI issue 57 (August 1992)]]&lt;br /&gt;
Image:Wacci 058.jpg|[[WACCI issue 58 (September 1992)]] - PDF&lt;br /&gt;
Image:Wacci 059.jpg|[[WACCI issue 59 (October 1992)]]&lt;br /&gt;
Image:Wacci 060.jpg|[[WACCI issue 60 (November 1992)]]&lt;br /&gt;
Image:Wacci 061.jpg|[[WACCI issue 61 (December 1992)]] - PDF&lt;br /&gt;
Image:Wacci 062.jpg|[[WACCI issue 62 (January 1993)]]&lt;br /&gt;
Image:Wacci 063.jpg|[[WACCI issue 63 (February 1993)]]&lt;br /&gt;
Image:Wacci 064.jpg|[[WACCI issue 64 (March 1993)]]&lt;br /&gt;
Image:Wacci 065.jpg|[[WACCI issue 65 (April 1993)]]&lt;br /&gt;
Image:Wacci 066.jpg|[[WACCI issue 66 (May 1993)]]&lt;br /&gt;
Image:Wacci 067.jpg|[[WACCI issue 67 (June 1993)]]&lt;br /&gt;
Image:Wacci 068.jpg|[[WACCI issue 68 (July 1993)]]&lt;br /&gt;
Image:Wacci 069.jpg|[[WACCI issue 69 (August 1993)]]&lt;br /&gt;
Image:Wacci 070.jpg|[[WACCI issue 70 (September 1993)]]&lt;br /&gt;
Image:Wacci 071.jpg|[[WACCI issue 71 (October 1993)]]&lt;br /&gt;
Image:Wacci 072.jpg|[[WACCI issue 72 (November 1993)]]&lt;br /&gt;
Image:Wacci 073.jpg|[[WACCI issue 73 (December 1993)]]&lt;br /&gt;
Image:Wacci 074.jpg|[[WACCI issue 74 (January 1994)]]&lt;br /&gt;
Image:Wacci 075.jpg|[[WACCI issue 75 (February 1994)]]&lt;br /&gt;
Image:Wacci 076.jpg|[[WACCI issue 76 (March 1994)]]&lt;br /&gt;
Image:Wacci 077.jpg|[[WACCI issue 77 (April 1994)]]&lt;br /&gt;
Image:Wacci 078.jpg|[[WACCI issue 78 (May 1994)]]&lt;br /&gt;
Image:Wacci 079.jpg|[[WACCI issue 79 (June 1994)]]&lt;br /&gt;
Image:Wacci 080.jpg|[[WACCI issue 80 (July 1994)]]&lt;br /&gt;
Image:Wacci 081.jpg|[[WACCI issue 81 (August 1994)]]&lt;br /&gt;
Image:Wacci 082.jpg|[[WACCI issue 82 (September/October 1994)]] - PDF&lt;br /&gt;
Image:Wacci 083.jpg|[[WACCI issue 83 (November 1994)]] - PDF&lt;br /&gt;
Image:Wacci 084.jpg|[[WACCI issue 84 (December 1994)]] - PDF&lt;br /&gt;
Image:Wacci 085.jpg|[[WACCI issue 85 (January 1995)]] - PDF&lt;br /&gt;
Image:Wacci 086.jpg|[[WACCI issue 86 (February 1995)]] - PDF&lt;br /&gt;
Image:Wacci 087.jpg|[[WACCI issue 87 (March 1995)]] - PDF&lt;br /&gt;
Image:Wacci 088.jpg|[[WACCI issue 88 (April 1995)]]&lt;br /&gt;
Image:Wacci 089.jpg|[[WACCI issue 89 (May 1995)]] - PDF&lt;br /&gt;
Image:Wacci 090.jpg|[[WACCI issue 90 (June 1995)]] - PDF&lt;br /&gt;
Image:Wacci 091.jpg|[[WACCI issue 91 (July 1995)]]&lt;br /&gt;
Image:Wacci 092.jpg|[[WACCI issue 92 (August/September 1995)]]&lt;br /&gt;
Image:Wacci 093.jpg|[[WACCI issue 93 (October 1995)]]&lt;br /&gt;
Image:Wacci 094.jpg|[[WACCI issue 94 (November 1995)]]&lt;br /&gt;
Image:Wacci 095.jpg|[[WACCI issue 95 (December 1995)]] - PDF&lt;br /&gt;
Image:Wacci 096.jpg|[[WACCI issue 96 (January 1996)]]&lt;br /&gt;
Image:Wacci 097.jpg|[[WACCI issue 97 (February 1996)]] - PDF&lt;br /&gt;
Image:Wacci 098.jpg|[[WACCI issue 98 (March 1996)]]&lt;br /&gt;
Image:Wacci 099.jpg|[[WACCI issue 99 (April 1996)]]&lt;br /&gt;
Image:Wacci 100.jpg|[[WACCI issue 100 (May 1996)]] - PDF&lt;br /&gt;
Image:Wacci 101.jpg|[[WACCI issue 101 (June 1996)]] - PDF&lt;br /&gt;
Image:Wacci 102.jpg|[[WACCI issue 102 (July 1996)]] - PDF&lt;br /&gt;
Image:Wacci 103.jpg|[[WACCI issue 103 (August 1996)]] - PDF&lt;br /&gt;
Image:Wacci 104.jpg|[[WACCI issue 104 (September 1996)]] - PDF&lt;br /&gt;
Image:Wacci 105.jpg|[[WACCI issue 105 (October 1996)]] - PDF&lt;br /&gt;
Image:Wacci 106.jpg|[[WACCI issue 106 (November 1996)]] - PDF&lt;br /&gt;
Image:Wacci 107.jpg|[[WACCI issue 107 (December 1996)]] - PDF&lt;br /&gt;
Image:Wacci 108.jpg|[[WACCI issue 108 (January 1996)]] - PDF&lt;br /&gt;
Image:Wacci 109.jpg|[[WACCI issue 109 (February 1996)]] - PDF&lt;br /&gt;
Image:Wacci 110.jpg|[[WACCI issue 110 (March 1997)]] - PDF&lt;br /&gt;
Image:Wacci 111.jpg|[[WACCI issue 111 (April 1997)]] - PDF&lt;br /&gt;
Image:Wacci 112.jpg|[[WACCI issue 112 (May 1997)]] - PDF&lt;br /&gt;
Image:Wacci 113.jpg|[[WACCI issue 113 (June 1997)]] - PDF&lt;br /&gt;
Image:Wacci 114.jpg|[[WACCI issue 114 (July 1997)]] - PDF&lt;br /&gt;
Image:Wacci 115.jpg|[[WACCI issue 115 (August/September 1997)]] - PDF&lt;br /&gt;
Image:Wacci 116.jpg|[[WACCI issue 116 (October 1997)]] - PDF&lt;br /&gt;
Image:Wacci 117.jpg|[[WACCI issue 117 (November/December 1998)]] - PDF&lt;br /&gt;
Image:Wacci 118.jpg|[[WACCI issue 118 (January 1998)]] - PDF&lt;br /&gt;
Image:Wacci 119.jpg|[[WACCI issue 119 (February 1998)]] - PDF&lt;br /&gt;
Image:Wacci 120.jpg|[[WACCI issue 120 (March/April 1998)]] - PDF&lt;br /&gt;
Image:Wacci 121.jpg|[[WACCI issue 121 (May 1998)]] - PDF&lt;br /&gt;
Image:Wacci 122.jpg|[[WACCI issue 122 (June 1998)]] - PDF&lt;br /&gt;
Image:Wacci 123.jpg|[[WACCI issue 123 (July/August 1998)]] - PDF&lt;br /&gt;
Image:Wacci 124.jpg|[[WACCI issue 124 (September 1998)]] - PDF&lt;br /&gt;
Image:Wacci 125.jpg|[[WACCI issue 125 (October 1998)]] - PDF&lt;br /&gt;
Image:Wacci 126.jpg|[[WACCI issue 126 (November/December 1998)]] - PDF&lt;br /&gt;
Image:Wacci 127.jpg|[[WACCI issue 127 (January 1999)]] - PDF&lt;br /&gt;
Image:Wacci 128.jpg|[[WACCI issue 128 (February/April 1999)]] - PDF&lt;br /&gt;
Image:Wacci 129.jpg|[[WACCI issue 129 (May 1999)]] - PDF&lt;br /&gt;
Image:Wacci 130.jpg|[[WACCI issue 130 (July 1999)]] - PDF&lt;br /&gt;
Image:Wacci 131.jpg|[[WACCI issue 131 (August/September 1999)]]&lt;br /&gt;
Image:Wacci 132.jpg|[[WACCI issue 132 (July 2000)]]&lt;br /&gt;
Image:Wacci 133.jpg|[[WACCI issue 133 (August 2000)]]&lt;br /&gt;
Image:Wacci 134.jpg|[[WACCI issue 134 (October 2000)]]&lt;br /&gt;
Image:Wacci 135.jpg|[[WACCI issue 135 (January 2001)]]&lt;br /&gt;
Image:Wacci 136.jpg|[[WACCI issue 136 (July/August 2001)]] - HTML&lt;br /&gt;
Image:Wacci 137.jpg|[[WACCI issue 137 (September/October 2001)]] - HTML&lt;br /&gt;
Image:Wacci 138.jpg|[[WACCI issue 138 (January/February 2002)]] - HTML&lt;br /&gt;
Image:Wacci 139.jpg|[[WACCI issue 139 (Spring 2003)]] - PDF&lt;br /&gt;
Image:Wacci 140.jpg|[[WACCI issue 140 (Summer 2003)]] - PDF&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[WACCI BBS]]&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [https://web.archive.org/web/20080124105649/http://www.wacci.org.uk:80/ WACCI homepage (wacci.org.uk via archive.org)]&lt;br /&gt;
&lt;br /&gt;
* [https://www.cpcwiki.eu/forum/general-discussion/wacci-issues/ CPCWiki forum: &amp;quot;WACCI issues&amp;quot; (thread started by Gryzor, 19 April 2016)]&lt;br /&gt;
&lt;br /&gt;
* [https://www.cpcwiki.eu/forum/applications/wacci-pd-library-list-of-software/ CPCWiki forum: &amp;quot;WACCI PD Software and Book Library - list of software discs and books&amp;quot; (thread started by ComSoft6128, 24 July 2018)]&lt;br /&gt;
&lt;br /&gt;
* [https://www.cpcwiki.eu/forum/general-discussion/wacci-issues-1-3-october-to-december-1986-on-disc/ CPCWiki forum: &amp;quot;WACCI issues 1-3 (October to December 1986) on disc&amp;quot; (thread started by Jonathan, 6 January 2025)]&lt;br /&gt;
&lt;br /&gt;
* [https://web.archive.org/web/20050212202852/http://www.wacci.demon.co.uk/ &amp;quot;WACCI The CPC User Group&amp;quot; website (wacci.demon.co.uk via archive.org)]&lt;br /&gt;
&lt;br /&gt;
* [https://web.archive.org/web/20000309134932/http://users.ox.ac.uk/~chri0264/wowww.html &amp;quot;WoWWW: WACCI on World Wide Web&amp;quot; (users.ox.ac.uk/~chri0264 via archive.org)]&lt;br /&gt;
&lt;br /&gt;
* [https://acpc.me/ACME/?FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D acpc.me: Various front covers and full magazine scans]&lt;br /&gt;
&lt;br /&gt;
[[Category:Fanzines]] [[Category:Papermag]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI&amp;diff=121510</id>
		<title>WACCI</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI&amp;diff=121510"/>
				<updated>2025-01-10T22:15:26Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: /* Covers */ Adding &amp;quot;PDF&amp;quot; for scans on acpc.me&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The CPC's longest-running fanzine and user group, WACCI was based in Britain and it catered mostly for serious users.&lt;br /&gt;
&lt;br /&gt;
Its acronym has never been satisfactorily explained although the official WACCI explanation was that it stood for World Amstrad Computer Club International.&lt;br /&gt;
&lt;br /&gt;
However, [[Jeff Walker]], who was the original founder, said he always thought the name would be good for a magazine and that he used it without any intention of it being an acronym at all.&lt;br /&gt;
&lt;br /&gt;
As well as a (more or less) regular paper-based magazine, WACCI also provided a [[PD library]] (of mostly [[CP/M]] software) and it also had a 'homebrew' library.&lt;br /&gt;
&lt;br /&gt;
Some of the CPC's best writers, such as [[Auntie John]], were contributors to early WACCIs and one of Amstrad Action's finest journalists, [[ChaRleyTroniC|Richard Fairhurst]], was its final editor.&lt;br /&gt;
&lt;br /&gt;
The decline in serious use of the CPC inevitably led to a petering out of the publication and the last issue - number 140 - was published in the Summer of 2003.&lt;br /&gt;
&lt;br /&gt;
A spin-off disczine, [[EuroWACCI]], existed for six issues.&lt;br /&gt;
&lt;br /&gt;
== WACCI editors ==&lt;br /&gt;
&lt;br /&gt;
* [[Jeff Walker]]&lt;br /&gt;
* [[Steve Williams]]&lt;br /&gt;
* [[Clive Bellaby]]&lt;br /&gt;
* [[Paul Dwerryhouse]]&lt;br /&gt;
* [[Philip DiRichleau]]&lt;br /&gt;
* [[John Bowley]]&lt;br /&gt;
* [[Dave Stitson]]&lt;br /&gt;
* [[ChaRleyTroniC|Richard Fairhurst]]&lt;br /&gt;
&lt;br /&gt;
==Issues==&lt;br /&gt;
(Maybe these links should just appear below the relevant cover below.)&lt;br /&gt;
&lt;br /&gt;
The first three issues had printed and disc/tape versions. Here are the disc images:&lt;br /&gt;
* [[Media:WACCI magazine disc 1 side A (issue 1).dsk|October 1986 (issue 1)]]&lt;br /&gt;
* [[Media:WACCI magazine disc 1 side B (issue 2).dsk|November 1986 (issue 2)]]&lt;br /&gt;
* [[Media:WACCI magazine disc 2 side A (issue 3).dsk|December 1986 (issue 3)]]&lt;br /&gt;
* [[Media:WACCI magazine disc 2 side B (images).dsk|Images]]. Side B of issue 3 (unsure whether it was originally supplied with the magazine)&lt;br /&gt;
&lt;br /&gt;
The following PDFs were scanned for CPWiki (only in 200x200 format, when file size seemed important):&lt;br /&gt;
*[[Media:Wacci 82 200x200.pdf|September/October 1994 (Issue 82)]] &lt;br /&gt;
*[[Media:Wacci 83 200x200.pdf|November 1994 (Issue 83)]]&lt;br /&gt;
*[[Media:Wacci 84 200x200.pdf|December 1994 (Issue 84)]]&lt;br /&gt;
*[[Media:Wacci 85 200x200.pdf|January 1995 (Issue 85)]]&lt;br /&gt;
*[[Media:Wacci 86 200x200.pdf|February 1995 (Issue 86)]]&lt;br /&gt;
*[[Media:Wacci 87 200 x 200.pdf|March 1995 (Issue 87)]]&lt;br /&gt;
*[[Media:Wacci 103 200x200.pdf|August 1996 (Issue 103)]]&lt;br /&gt;
*[[Media:Wacci 104 200x200.pdf|September 1996 (Issue 104)]]&lt;br /&gt;
*[[Media:Wacci 105 200x200.pdf|October 1996 (Issue 105)]]&lt;br /&gt;
*[[Media:Wacci 107 200x200.pdf|December 1996 (Issue 107)]]&lt;br /&gt;
&lt;br /&gt;
HTML versions on archive.org:&lt;br /&gt;
* [https://web.archive.org/web/20080119094206/http://www.wacci.org.uk/magazine/136/136_01.html July/August 2001 (issue 136)]&lt;br /&gt;
* [https://web.archive.org/web/20080119075753/http://www.wacci.org.uk/magazine/137/137_01.html September/October 2001 (issue 137)]&lt;br /&gt;
* [https://web.archive.org/web/20080119075758/http://www.wacci.org.uk/magazine/138/138_01.html January/February 2002 (issue 138)]&lt;br /&gt;
&lt;br /&gt;
PDFs on archive.org:&lt;br /&gt;
* [https://web.archive.org/web/20031002185723/http://www.wacci.org.uk/magazine/139/139.pdf Spring 2003 (issue 139)] &lt;br /&gt;
* [https://web.archive.org/web/20031004221857/http://www.wacci.org.uk/magazine/140/140.pdf Summer 2003 (issue 140)]&lt;br /&gt;
&lt;br /&gt;
The following issues are available in PDF format on the [https://acpc.me/ACME/?FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D#filter=pdf acpc.me website]:&lt;br /&gt;
&lt;br /&gt;
* 26, 28, 30, 42, 43, 44, 45, 46, 47, 51, 52, 53, 54, 55, 56, 58, 61, 89, 90, 95, 97, 100, 101, 102, 106, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117 (partial), 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 139, 140 (also the following as listed above: 82, 83, 84, 85, 86, 87, 103, 104, 105, 107)&lt;br /&gt;
&lt;br /&gt;
== Covers ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery caption=&amp;quot;WACCI&amp;quot;&amp;gt;&lt;br /&gt;
Image:Wacci 001.jpg|[[WACCI issue 1 (October 1986)]] - disc image&lt;br /&gt;
Image:Wacci 002.jpg|[[WACCI issue 2 (November 1986)]] - disc image&lt;br /&gt;
Image:Wacci 003.jpg|[[WACCI issue 3 (December 1986)]] - disc image&lt;br /&gt;
-|WACCI issue 4&lt;br /&gt;
-|WACCI issue 5&lt;br /&gt;
-|WACCI issue 6&lt;br /&gt;
-|WACCI issue 7&lt;br /&gt;
-|WACCI issue 8&lt;br /&gt;
-|WACCI issue 9&lt;br /&gt;
Image:Wacci 010.jpg|[[WACCI issue 10 (July 1987)]]&lt;br /&gt;
-|WACCI issue 11&lt;br /&gt;
-|WACCI issue 12&lt;br /&gt;
-|WACCI issue 13&lt;br /&gt;
-|WACCI issue 14&lt;br /&gt;
-|WACCI issue 15&lt;br /&gt;
Image:Wacci 016.jpg|[[WACCI issue 16 (January 1988)]]&lt;br /&gt;
-|WACCI issue 17&lt;br /&gt;
-|WACCI issue 18&lt;br /&gt;
-|WACCI issue 19&lt;br /&gt;
Image:Wacci 020.jpg|[[WACCI issue 20 (May 1988)]]&lt;br /&gt;
-|WACCI issue 21&lt;br /&gt;
-|WACCI issue 22&lt;br /&gt;
-|WACCI issue 23&lt;br /&gt;
-|WACCI issue 24&lt;br /&gt;
-|WACCI issue 25&lt;br /&gt;
-|[[WACCI issue 26 (November 1988)]] - PDF&lt;br /&gt;
Image:Wacci 027.jpg|[[WACCI issue 27 (December 1988)]]&lt;br /&gt;
Image:Wacci 028.jpg|[[WACCI issue 28 (January 1989)]] - PDF&lt;br /&gt;
Image:Wacci 029.jpg|[[WACCI issue 29 (February 1989)]]&lt;br /&gt;
-|[[WACCI issue 30 (March 1989)]] - PDF&lt;br /&gt;
Image:Wacci 031.jpg|[[WACCI issue 31 (April 1989)]]&lt;br /&gt;
Image:Wacci 032.jpg|[[WACCI issue 32 (May 1989)]]&lt;br /&gt;
Image:Wacci 033.jpg|[[WACCI issue 33 (July 1989)]]&lt;br /&gt;
Image:Wacci 034.jpg|[[WACCI issue 34 (August 1989)]]&lt;br /&gt;
Image:Wacci 035.jpg|[[WACCI issue 35 (September 1989)]]&lt;br /&gt;
Image:Wacci 036.jpg|[[WACCI issue 36 (October 1989)]]&lt;br /&gt;
Image:Wacci 037.jpg|[[WACCI issue 37 (November 1989)]]&lt;br /&gt;
Image:Wacci 038.jpg|[[WACCI issue 38 (December 1989)]]&lt;br /&gt;
Image:Wacci 039.jpg|[[WACCI issue 39 (January 1990)]]&lt;br /&gt;
Image:Wacci 040.jpg|[[WACCI issue 40 (February 1990)]]&lt;br /&gt;
Image:Wacci 041.jpg|[[WACCI issue 41 (March 1990)]]&lt;br /&gt;
Image:Wacci 042.jpg|[[WACCI issue 42 (April 1990)]] - PDF&lt;br /&gt;
Image:Wacci 043.jpg|[[WACCI issue 43 (May 1990)]] - PDF&lt;br /&gt;
Image:Wacci 044.jpg|[[WACCI issue 44 (June 1990)]] - PDF&lt;br /&gt;
Image:Wacci 045.jpg|[[WACCI issue 45 (September 1990)]] - PDF&lt;br /&gt;
Image:Wacci 046.jpg|[[WACCI issue 46 (December 1990)]] - PDF&lt;br /&gt;
Image:Wacci 047.jpg|[[WACCI issue 47 (March 1990)]] - PDF&lt;br /&gt;
Image:Wacci 048.jpg|WACCI issue 48&lt;br /&gt;
Image:Wacci 049.jpg|WACCI issue 49&lt;br /&gt;
Image:Wacci 050.jpg|[[WACCI issue 50 (January 1992)]]&lt;br /&gt;
Image:Wacci 051.jpg|[[WACCI issue 51 (February 1992)]] - PDF&lt;br /&gt;
Image:Wacci 052.jpg|[[WACCI issue 52 (March 1992)]] - PDF&lt;br /&gt;
Image:Wacci 053.jpg|[[WACCI issue 53 (April 1992)]] - PDF&lt;br /&gt;
Image:Wacci 054.jpg|[[WACCI issue 54 (May 1992)]] - PDF&lt;br /&gt;
Image:Wacci 055.jpg|[[WACCI issue 55 (Jun 1992)]] - PDF&lt;br /&gt;
Image:Wacci 056.jpg|[[WACCI issue 56 (July 1992)]] - PDF&lt;br /&gt;
Image:Wacci 057.jpg|[[WACCI issue 57 (August 1992)]]&lt;br /&gt;
Image:Wacci 058.jpg|[[WACCI issue 58 (September 1992)]] - PDF&lt;br /&gt;
Image:Wacci 059.jpg|[[WACCI issue 59 (October 1992)]]&lt;br /&gt;
Image:Wacci 060.jpg|[[WACCI issue 60 (November 1992)]]&lt;br /&gt;
Image:Wacci 061.jpg|[[WACCI issue 61 (December 1992)]] - PDF&lt;br /&gt;
Image:Wacci 062.jpg|[[WACCI issue 62 (January 1993)]]&lt;br /&gt;
Image:Wacci 063.jpg|[[WACCI issue 63 (February 1993)]]&lt;br /&gt;
Image:Wacci 064.jpg|[[WACCI issue 64 (March 1993)]]&lt;br /&gt;
Image:Wacci 065.jpg|[[WACCI issue 65 (April 1993)]]&lt;br /&gt;
Image:Wacci 066.jpg|[[WACCI issue 66 (May 1993)]]&lt;br /&gt;
Image:Wacci 067.jpg|[[WACCI issue 67 (June 1993)]]&lt;br /&gt;
Image:Wacci 068.jpg|[[WACCI issue 68 (July 1993)]]&lt;br /&gt;
Image:Wacci 069.jpg|[[WACCI issue 69 (August 1993)]]&lt;br /&gt;
Image:Wacci 070.jpg|[[WACCI issue 70 (September 1993)]]&lt;br /&gt;
Image:Wacci 071.jpg|[[WACCI issue 71 (October 1993)]]&lt;br /&gt;
Image:Wacci 072.jpg|[[WACCI issue 72 (November 1993)]]&lt;br /&gt;
Image:Wacci 073.jpg|[[WACCI issue 73 (December 1993)]]&lt;br /&gt;
Image:Wacci 074.jpg|[[WACCI issue 74 (January 1994)]]&lt;br /&gt;
Image:Wacci 075.jpg|[[WACCI issue 75 (February 1994)]]&lt;br /&gt;
Image:Wacci 076.jpg|[[WACCI issue 76 (March 1994)]]&lt;br /&gt;
Image:Wacci 077.jpg|[[WACCI issue 77 (April 1994)]]&lt;br /&gt;
Image:Wacci 078.jpg|[[WACCI issue 78 (May 1994)]]&lt;br /&gt;
Image:Wacci 079.jpg|[[WACCI issue 79 (June 1994)]]&lt;br /&gt;
Image:Wacci 080.jpg|[[WACCI issue 80 (July 1994)]]&lt;br /&gt;
Image:Wacci 081.jpg|[[WACCI issue 81 (August 1994)]]&lt;br /&gt;
Image:Wacci 082.jpg|[[WACCI issue 82 (September/October 1994)]] - PDF&lt;br /&gt;
Image:Wacci 083.jpg|[[WACCI issue 83 (November 1994)]] - PDF&lt;br /&gt;
Image:Wacci 084.jpg|[[WACCI issue 84 (December 1994)]] - PDF&lt;br /&gt;
Image:Wacci 085.jpg|[[WACCI issue 85 (January 1995)]] - PDF&lt;br /&gt;
Image:Wacci 086.jpg|[[WACCI issue 86 (February 1995)]] - PDF&lt;br /&gt;
Image:Wacci 087.jpg|[[WACCI issue 87 (March 1995)]] - PDF&lt;br /&gt;
Image:Wacci 088.jpg|[[WACCI issue 88 (April 1995)]]&lt;br /&gt;
Image:Wacci 089.jpg|[[WACCI issue 89 (May 1995)]] - PDF&lt;br /&gt;
Image:Wacci 090.jpg|[[WACCI issue 90 (June 1995)]] - PDF&lt;br /&gt;
Image:Wacci 091.jpg|[[WACCI issue 91 (July 1995)]]&lt;br /&gt;
Image:Wacci 092.jpg|[[WACCI issue 92 (August/September 1995)]]&lt;br /&gt;
Image:Wacci 093.jpg|[[WACCI issue 93 (October 1995)]]&lt;br /&gt;
Image:Wacci 094.jpg|[[WACCI issue 94 (November 1995)]]&lt;br /&gt;
Image:Wacci 095.jpg|[[WACCI issue 95 (December 1995)]] - PDF&lt;br /&gt;
Image:Wacci 096.jpg|[[WACCI issue 96 (January 1996)]]&lt;br /&gt;
Image:Wacci 097.jpg|[[WACCI issue 97 (February 1996)]] - PDF&lt;br /&gt;
Image:Wacci 098.jpg|[[WACCI issue 98 (March 1996)]]&lt;br /&gt;
Image:Wacci 099.jpg|[[WACCI issue 99 (April 1996)]]&lt;br /&gt;
Image:Wacci 100.jpg|[[WACCI issue 100 (May 1996)]] - PDF&lt;br /&gt;
Image:Wacci 101.jpg|[[WACCI issue 101 (June 1996)]] - PDF&lt;br /&gt;
Image:Wacci 102.jpg|[[WACCI issue 102 (July 1996)]] - PDF&lt;br /&gt;
Image:Wacci 103.jpg|[[WACCI issue 103 (August 1996)]] - PDF&lt;br /&gt;
Image:Wacci 104.jpg|[[WACCI issue 104 (September 1996)]] - PDF&lt;br /&gt;
Image:Wacci 105.jpg|[[WACCI issue 105 (October 1996)]] - PDF&lt;br /&gt;
Image:Wacci 106.jpg|[[WACCI issue 106 (November 1996)]] - PDF&lt;br /&gt;
Image:Wacci 107.jpg|[[WACCI issue 107 (December 1996)]] - PDF&lt;br /&gt;
Image:Wacci 108.jpg|[[WACCI issue 108 (January 1996)]] - PDF&lt;br /&gt;
Image:Wacci 109.jpg|[[WACCI issue 109 (February 1996)]] - PDF&lt;br /&gt;
Image:Wacci 110.jpg|[[WACCI issue 110 (March 1997)]] - PDF&lt;br /&gt;
Image:Wacci 111.jpg|[[WACCI issue 111 (April 1997)]] - PDF&lt;br /&gt;
Image:Wacci 112.jpg|[[WACCI issue 112 (May 1997)]] - PDF&lt;br /&gt;
Image:Wacci 113.jpg|[[WACCI issue 113 (June 1997)]] - PDF&lt;br /&gt;
Image:Wacci 114.jpg|[[WACCI issue 114 (July 1997)]] - PDF&lt;br /&gt;
Image:Wacci 115.jpg|[[WACCI issue 115 (August/September 1997)]] - PDF&lt;br /&gt;
Image:Wacci 116.jpg|[[WACCI issue 116 (October 1997)]] - PDF&lt;br /&gt;
Image:Wacci 117.jpg|[[WACCI issue 117 (November/December 1998)]] - PDF&lt;br /&gt;
Image:Wacci 118.jpg|[[WACCI issue 118 (January 1998)]] - PDF&lt;br /&gt;
Image:Wacci 119.jpg|[[WACCI issue 119 (February 1998)]] - PDF&lt;br /&gt;
Image:Wacci 120.jpg|[[WACCI issue 120 (March/April 1998)]] - PDF&lt;br /&gt;
Image:Wacci 121.jpg|[[WACCI issue 121 (May 1998)]] - PDF&lt;br /&gt;
Image:Wacci 122.jpg|[[WACCI issue 122 (June 1998)]] - PDF&lt;br /&gt;
Image:Wacci 123.jpg|[[WACCI issue 123 (July/August 1998)]] - PDF&lt;br /&gt;
Image:Wacci 124.jpg|[[WACCI issue 124 (September 1998)]] - PDF&lt;br /&gt;
Image:Wacci 125.jpg|[[WACCI issue 125 (October 1998)]] - PDF&lt;br /&gt;
Image:Wacci 126.jpg|[[WACCI issue 126 (November/December 1998)]] - PDF&lt;br /&gt;
Image:Wacci 127.jpg|[[WACCI issue 127 (January 1999)]] - PDF&lt;br /&gt;
Image:Wacci 128.jpg|[[WACCI issue 128 (February/April 1999)]] - PDF&lt;br /&gt;
Image:Wacci 129.jpg|[[WACCI issue 129 (May 1999)]] - PDF&lt;br /&gt;
Image:Wacci 130.jpg|[[WACCI issue 130 (July 1999)]] - PDF&lt;br /&gt;
Image:Wacci 131.jpg|[[WACCI issue 131 (August/September 1999)]]&lt;br /&gt;
Image:Wacci 132.jpg|[[WACCI issue 132 (July 2000)]]&lt;br /&gt;
Image:Wacci 133.jpg|[[WACCI issue 133 (August 2000)]]&lt;br /&gt;
Image:Wacci 134.jpg|[[WACCI issue 134 (October 2000)]]&lt;br /&gt;
Image:Wacci 135.jpg|[[WACCI issue 135 (January 2001)]]&lt;br /&gt;
Image:Wacci 136.jpg|[[WACCI issue 136 (July/August 2001)]] - HTML&lt;br /&gt;
Image:Wacci 137.jpg|[[WACCI issue 137 (September/October 2001)]] - HTML&lt;br /&gt;
Image:Wacci 138.jpg|[[WACCI issue 138 (January/February 2002)]] - HTML&lt;br /&gt;
Image:Wacci 139.jpg|[[WACCI issue 139 (Spring 2003)]] - PDF&lt;br /&gt;
Image:Wacci 140.jpg|[[WACCI issue 140 (Summer 2003)]] - PDF&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[WACCI BBS]]&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [https://web.archive.org/web/20080124105649/http://www.wacci.org.uk:80/ WACCI homepage (wacci.org.uk via archive.org)]&lt;br /&gt;
&lt;br /&gt;
* [https://www.cpcwiki.eu/forum/general-discussion/wacci-issues/ CPCWiki forum: &amp;quot;WACCI issues&amp;quot; (thread started by Gryzor, 19 April 2016)]&lt;br /&gt;
&lt;br /&gt;
* [https://www.cpcwiki.eu/forum/applications/wacci-pd-library-list-of-software/ CPCWiki forum: &amp;quot;WACCI PD Software and Book Library - list of software discs and books&amp;quot; (thread started by ComSoft6128, 24 July 2018)]&lt;br /&gt;
&lt;br /&gt;
* [https://www.cpcwiki.eu/forum/general-discussion/wacci-issues-1-3-october-to-december-1986-on-disc/ CPCWiki forum: &amp;quot;WACCI issues 1-3 (October to December 1986) on disc&amp;quot; (thread started by Jonathan, 6 January 2025)]&lt;br /&gt;
&lt;br /&gt;
* [https://web.archive.org/web/20050212202852/http://www.wacci.demon.co.uk/ &amp;quot;WACCI The CPC User Group&amp;quot; website (wacci.demon.co.uk via archive.org)]&lt;br /&gt;
&lt;br /&gt;
* [https://web.archive.org/web/20000309134932/http://users.ox.ac.uk/~chri0264/wowww.html &amp;quot;WoWWW: WACCI on World Wide Web&amp;quot; (users.ox.ac.uk/~chri0264 via archive.org)]&lt;br /&gt;
&lt;br /&gt;
* [https://acpc.me/ACME/?FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D acpc.me: Various front covers and full magazine scans]&lt;br /&gt;
&lt;br /&gt;
[[Category:Fanzines]] [[Category:Papermag]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_138_(January/February_2002)&amp;diff=121509</id>
		<title>WACCI issue 138 (January/February 2002)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_138_(January/February_2002)&amp;diff=121509"/>
				<updated>2025-01-10T22:12:08Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Created page with &amp;quot;WACCI  ==Link== * [https://web.archive.org/web/20080119075758/http://www.wacci.org.uk/magazine/138/138_01.html HTML version from wacci.org.uk via archive.org]  Category:...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[WACCI]]&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
* [https://web.archive.org/web/20080119075758/http://www.wacci.org.uk/magazine/138/138_01.html HTML version from wacci.org.uk via archive.org]&lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_137_(September/October_2001)&amp;diff=121508</id>
		<title>WACCI issue 137 (September/October 2001)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_137_(September/October_2001)&amp;diff=121508"/>
				<updated>2025-01-10T22:11:44Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Created page with &amp;quot;WACCI  ==Link== * [https://web.archive.org/web/20080119075753/http://www.wacci.org.uk/magazine/137/137_01.html HTML version from wacci.org.uk via archive.org]  Category:...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[WACCI]]&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
* [https://web.archive.org/web/20080119075753/http://www.wacci.org.uk/magazine/137/137_01.html HTML version from wacci.org.uk via archive.org]&lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_136_(July/August_2001)&amp;diff=121507</id>
		<title>WACCI issue 136 (July/August 2001)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_136_(July/August_2001)&amp;diff=121507"/>
				<updated>2025-01-10T22:11:03Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Created page with &amp;quot;WACCI  ==Link== * [https://web.archive.org/web/20080119094206/http://www.wacci.org.uk/magazine/136/136_01.html HTML version on wacci.org.uk via archive.org]  Category:Pa...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[WACCI]]&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
* [https://web.archive.org/web/20080119094206/http://www.wacci.org.uk/magazine/136/136_01.html HTML version on wacci.org.uk via archive.org]&lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_140_(Summer_2003)&amp;diff=121506</id>
		<title>WACCI issue 140 (Summer 2003)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_140_(Summer_2003)&amp;diff=121506"/>
				<updated>2025-01-10T22:10:04Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Created page with &amp;quot;WACCI  ==Link== * [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_140(2003)%5BOCR%5D.pdf PDF at acpc.me] * [https://we...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[WACCI]]&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
* [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_140(2003)%5BOCR%5D.pdf PDF at acpc.me]&lt;br /&gt;
* [https://web.archive.org/web/20031004221857/http://www.wacci.org.uk/magazine/140/140.pdf PDF at archive.org]&lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_139_(Spring_2003)&amp;diff=121505</id>
		<title>WACCI issue 139 (Spring 2003)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_139_(Spring_2003)&amp;diff=121505"/>
				<updated>2025-01-10T22:09:05Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Created page with &amp;quot;WACCI  ==Link== * [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_139%5BOCR%5D.pdf PDF at acpc.me] * [https://web.arch...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[WACCI]]&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
* [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_139%5BOCR%5D.pdf PDF at acpc.me]&lt;br /&gt;
* [https://web.archive.org/web/20031002185723/http://www.wacci.org.uk/magazine/139/139.pdf PDF at archive.org] &lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_130_(July_1999)&amp;diff=121504</id>
		<title>WACCI issue 130 (July 1999)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_130_(July_1999)&amp;diff=121504"/>
				<updated>2025-01-10T22:06:43Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Created page with &amp;quot;WACCI  ==Link== * [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_130%5BOCR%5D.pdf Scan at acpc.me]  Category:Paperm...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[WACCI]]&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
* [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_130%5BOCR%5D.pdf Scan at acpc.me]&lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_129_(May_1999)&amp;diff=121503</id>
		<title>WACCI issue 129 (May 1999)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_129_(May_1999)&amp;diff=121503"/>
				<updated>2025-01-10T22:06:17Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Created page with &amp;quot;WACCI  ==Link== * [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_129%5BOCR%5D.pdf Scan at acpc.me]  Category:Paperm...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[WACCI]]&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
* [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_129%5BOCR%5D.pdf Scan at acpc.me]&lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_128_(February/April_1999)&amp;diff=121502</id>
		<title>WACCI issue 128 (February/April 1999)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_128_(February/April_1999)&amp;diff=121502"/>
				<updated>2025-01-10T22:05:48Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Created page with &amp;quot;WACCI  ==Link== * [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_128.pdf Scan at acpc.me]  Category:Papermag&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[WACCI]]&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
* [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_128.pdf Scan at acpc.me]&lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_127_(January_1999)&amp;diff=121501</id>
		<title>WACCI issue 127 (January 1999)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_127_(January_1999)&amp;diff=121501"/>
				<updated>2025-01-10T22:05:22Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Created page with &amp;quot;WACCI  ==Link== * [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_127%5BOCR%5D.pdf Scan at acpc.me]  Category:Paperm...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[WACCI]]&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
* [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_127%5BOCR%5D.pdf Scan at acpc.me]&lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_126_(November/December_1998)&amp;diff=121500</id>
		<title>WACCI issue 126 (November/December 1998)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_126_(November/December_1998)&amp;diff=121500"/>
				<updated>2025-01-10T22:05:06Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Created page with &amp;quot;WACCI  ==Link== * [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_126%5BOCR%5D.pdf Scan at acpc.me]  Category:Paperm...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[WACCI]]&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
* [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_126%5BOCR%5D.pdf Scan at acpc.me]&lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_125_(October_1998)&amp;diff=121499</id>
		<title>WACCI issue 125 (October 1998)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_125_(October_1998)&amp;diff=121499"/>
				<updated>2025-01-10T22:04:50Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Created page with &amp;quot;WACCI  ==Link== * [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_125%5BOCR%5D.pdf Scan at acpc.me]  Category:Paperm...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[WACCI]]&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
* [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_125%5BOCR%5D.pdf Scan at acpc.me]&lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_124_(September_1998)&amp;diff=121498</id>
		<title>WACCI issue 124 (September 1998)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_124_(September_1998)&amp;diff=121498"/>
				<updated>2025-01-10T22:04:29Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Created page with &amp;quot;WACCI  ==Link== * [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_124%5BOCR%5D.pdf Scan at acpc.me]  Category:Paperm...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[WACCI]]&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
* [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_124%5BOCR%5D.pdf Scan at acpc.me]&lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_123_(July/August_1998)&amp;diff=121497</id>
		<title>WACCI issue 123 (July/August 1998)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_123_(July/August_1998)&amp;diff=121497"/>
				<updated>2025-01-10T22:04:06Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Created page with &amp;quot;WACCI  ==Link== * [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_123%5BOCR%5D.pdf Scan at acpc.me]  Category:Paperm...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[WACCI]]&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
* [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_123%5BOCR%5D.pdf Scan at acpc.me]&lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_122_(June_1998)&amp;diff=121496</id>
		<title>WACCI issue 122 (June 1998)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_122_(June_1998)&amp;diff=121496"/>
				<updated>2025-01-10T22:03:42Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Created page with &amp;quot;WACCI  ==Link== * [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_122%5BOCR%5D.pdf Scan at acpc.me]  Category:Paperm...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[WACCI]]&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
* [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_122%5BOCR%5D.pdf Scan at acpc.me]&lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_121_(May_1998)&amp;diff=121495</id>
		<title>WACCI issue 121 (May 1998)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_121_(May_1998)&amp;diff=121495"/>
				<updated>2025-01-10T22:03:24Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Created page with &amp;quot;WACCI  ==Link== * [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_121%5BOCR%5D.pdf Scan at acpc.me]  Category:Paperm...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[WACCI]]&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
* [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_121%5BOCR%5D.pdf Scan at acpc.me]&lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_120_(March/April_1998)&amp;diff=121494</id>
		<title>WACCI issue 120 (March/April 1998)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_120_(March/April_1998)&amp;diff=121494"/>
				<updated>2025-01-10T22:03:03Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Created page with &amp;quot;WACCI  ==Link== * [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_120%5BOCR%5D.pdf Scan at acpc.me]  Category:Paperm...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[WACCI]]&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
* [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_120%5BOCR%5D.pdf Scan at acpc.me]&lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_119_(February_1998)&amp;diff=121493</id>
		<title>WACCI issue 119 (February 1998)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_119_(February_1998)&amp;diff=121493"/>
				<updated>2025-01-10T22:02:45Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Created page with &amp;quot;WACCI  ==Link== * [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_119%5BOCR%5D.pdf Scan at acpc.me]  Category:Paperm...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[WACCI]]&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
* [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_119%5BOCR%5D.pdf Scan at acpc.me]&lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_118_(January_1998)&amp;diff=121492</id>
		<title>WACCI issue 118 (January 1998)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_118_(January_1998)&amp;diff=121492"/>
				<updated>2025-01-10T22:02:30Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Created page with &amp;quot;WACCI  ==Link== * [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_118%5BOCR%5D.pdf Scan at acpc.me]  Category:Paperm...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[WACCI]]&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
* [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_118%5BOCR%5D.pdf Scan at acpc.me]&lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_117_(November/December_1998)&amp;diff=121491</id>
		<title>WACCI issue 117 (November/December 1998)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_117_(November/December_1998)&amp;diff=121491"/>
				<updated>2025-01-10T22:02:08Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Created page with &amp;quot;WACCI  ==Link== * [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_117(missing_pages_9-10-23-24)%5BOCR%5D.pdf Scan at a...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[WACCI]]&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
* [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_117(missing_pages_9-10-23-24)%5BOCR%5D.pdf Scan at acpc.me] (missing pages 9-10-23-24)&lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_116_(October_1997)&amp;diff=121490</id>
		<title>WACCI issue 116 (October 1997)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_116_(October_1997)&amp;diff=121490"/>
				<updated>2025-01-10T22:01:35Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Created page with &amp;quot;WACCI  ==Link== * [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_116%5BOCR%5D.pdf Scan at acpc.me]  Category:Paperm...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[WACCI]]&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
* [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_116%5BOCR%5D.pdf Scan at acpc.me]&lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_115_(August/September_1997)&amp;diff=121489</id>
		<title>WACCI issue 115 (August/September 1997)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_115_(August/September_1997)&amp;diff=121489"/>
				<updated>2025-01-10T22:01:17Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Created page with &amp;quot;WACCI  ==Link== * [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_115%5BOCR%5D.pdf Scan at acpc.me]  Category:Paperm...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[WACCI]]&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
* [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_115%5BOCR%5D.pdf Scan at acpc.me]&lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_114_(July_1997)&amp;diff=121488</id>
		<title>WACCI issue 114 (July 1997)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_114_(July_1997)&amp;diff=121488"/>
				<updated>2025-01-10T22:00:51Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Created page with &amp;quot;WACCI  ==Link== * [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_114.pdf Scan at acpc.me]  Category:Papermag&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[WACCI]]&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
* [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_114.pdf Scan at acpc.me]&lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_113_(June_1997)&amp;diff=121487</id>
		<title>WACCI issue 113 (June 1997)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_113_(June_1997)&amp;diff=121487"/>
				<updated>2025-01-10T22:00:26Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Created page with &amp;quot;WACCI  ==Link== * [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_113%5BOCR%5D.pdf Scan at acpc.me]  Category:Paperm...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[WACCI]]&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
* [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_113%5BOCR%5D.pdf Scan at acpc.me]&lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_112_(May_1997)&amp;diff=121486</id>
		<title>WACCI issue 112 (May 1997)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_112_(May_1997)&amp;diff=121486"/>
				<updated>2025-01-10T21:59:35Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Created page with &amp;quot;WACCI  ==Link== * [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_112%5BOCR%5D.pdf Scan at acpc.me]  Category:Paperm...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[WACCI]]&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
* [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_112%5BOCR%5D.pdf Scan at acpc.me]&lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_111_(April_1997)&amp;diff=121485</id>
		<title>WACCI issue 111 (April 1997)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_111_(April_1997)&amp;diff=121485"/>
				<updated>2025-01-10T21:59:17Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Created page with &amp;quot;WACCI  ==Link== * [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_111%5BOCR%5D.pdf Scan at acpc.me]  Category:Paperm...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[WACCI]]&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
* [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_111%5BOCR%5D.pdf Scan at acpc.me]&lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_110_(March_1997)&amp;diff=121484</id>
		<title>WACCI issue 110 (March 1997)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_110_(March_1997)&amp;diff=121484"/>
				<updated>2025-01-10T21:59:01Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Created page with &amp;quot;WACCI  ==Link== * [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_110%5BOCR%5D.pdf Scan at acpc.me]  Category:Paperm...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[WACCI]]&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
* [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_110%5BOCR%5D.pdf Scan at acpc.me]&lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	<entry>
		<id>https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_109_(February_1996)&amp;diff=121483</id>
		<title>WACCI issue 109 (February 1996)</title>
		<link rel="alternate" type="text/html" href="https://oldwiki.cpcwiki.eu/index.php?title=WACCI_issue_109_(February_1996)&amp;diff=121483"/>
				<updated>2025-01-10T21:58:46Z</updated>
		
		<summary type="html">&lt;p&gt;Jonathan: Created page with &amp;quot;WACCI  ==Link== * [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_109%5BOCR%5D.pdf Scan at acpc.me]  Category:Paperm...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[WACCI]]&lt;br /&gt;
&lt;br /&gt;
==Link==&lt;br /&gt;
* [https://acpc.me/ACME/FANZINES/FANZINES_PAPIER/%5BENG%5DENGLISH/WACCI(001-140)%5BINCOMPLETE%5D/WACCI_109%5BOCR%5D.pdf Scan at acpc.me]&lt;br /&gt;
&lt;br /&gt;
[[Category:Papermag]]&lt;/div&gt;</summary>
		<author><name>Jonathan</name></author>	</entry>

	</feed>