Main public logs
Appearance
Combined display of all available logs of Advanced Computers Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 03:07, 2 August 2026 GHXX talk contribs created page TextBuffer (Created page with "From https://ac.ghxx.dev/apidocs.txt, {{Todo|format this into a nice table with descriptions}}<syntaxhighlight lang="java" line="1"> @LuaExposed(LuaExposed.Policy.READ): public int width; @LuaExposed(LuaExposed.Policy.READ): public int height; @LuaCallable: public void free() @LuaCallable: public byte getFg(int x, int y) @LuaCallable: public byte getBg(int x, int y) @LuaCallable: public char getText(int x, int y) @LuaCallable: public void set(int x, int y,...") Tag: Visual edit
- 01:36, 2 August 2026 GHXX talk contribs created page Gpu (Created page with "The GpuUD component is what allows for rendering to screens. It offers the following functionality: {| class="wikitable" |+ GpuUD component properties |- ! Name !! Type !! Read/Write !! Description |- | <code>remainingVideoRam</code> || <code>integer</code> || READ || The amount of video ram remaining. Every alive buffer requires a certain amount of video memory. |} {| class="wikitable" |+ GpuUD component methods |- ! Name !! Returns !! Description |- |<code>:newBuffer...") Tag: Visual edit
- 01:04, 2 August 2026 GHXX talk contribs created page ManagedMassStorage (Created page with "The ManagedMassStorageUD component is what backs Hard Disk Drives and Floppy Disks. This virtual component offers the following properties: {| class="wikitable" |+ PunchcardReaderUD component properties |- ! Name !! Type !! Read/Write !! Description |- | <code>totalCapacityBytes</code> || <code>integer</code> || READ || Total capacity of this drive (capacity is currently not limited, so this is not meaningful currently) |} {| class="w...") Tag: Visual edit: Switched
- 00:07, 2 August 2026 GHXX talk contribs created page API:Sides (Created page with "Several components refer to sides in method calls via an integer. Valid values are in the range 0 to 5, where each integer maps to the following absolute direction listed below: {| class="wikitable" |+ Side mapping |- ! Numerical side value !! Coordinate direction !! Minecraft direction |- | 0 || +y || Up |- | 1 || -y || Down |- | 2 || +z || South |- | 3 || -z || North |- | 4 || +x || East |- | 5 || -x || West |}")
- 23:42, 1 August 2026 GHXX talk contribs created page Component Registry (Created page with "The Component Registry allows accessing all currently available Components and is the most convenient way of accessing components. {| class="wikitable" |+ ComponentRegistryUD methods |- ! Name !! Type !! Description |- | style="white-space: nowrap;" | <code>:list()</code> || <code>function -> (string, userdata)</code> || Returns an iterator function that, in each invocation returns a string representing the type of the current component along with the actu...") Tag: Visual edit
- 22:49, 1 August 2026 GHXX talk contribs created page UEFI (Created page with "The ''UEFI'' is accessible is accessible via the Computer component's <code>uefi</code> property, provided by all Mainboard tiers. == Provided API == This virtual component offers the following properties: {| class="wikitable" |+ UEFI properties |- ! Name !! Type !! Read/Write !! Description |- | <code>data</code> || string || READ WRITE || Represents the data (=code) that is stored on the UEFI. To change the contents, simply write to this property. |} Keep in mi...") Tag: Visual edit
- 22:33, 1 August 2026 GHXX talk contribs created page NVRAM (Created page with " The ''Non-volatile RAM'' is accessible is accessible via the Computer component's <code>nvram</code> property, though this is only available on Mainboard tiers 2 and higher. The Nvram effectively acts as a Lua table that is automatically saved, but keys are limited to strings, and values may only be set to primitives being (''number'', ''string'', ''boolean'' and ''nil''). Nil is not technically storable in this object as that is used to delete the key from th...") Tag: Visual edit
- 22:13, 1 August 2026 GHXX talk contribs created page Device Cable (Created page with "alt=Device cables ingame|thumb|Device cables ingame Device cables are used to connect peripheral device blocks, such as Item Interface or Redstone IO to computers. A device cable network is only valid if it contains exactly one computer. If there is more than one Computer in such a network, all participating computers are instantly and forcefully shut down and put into the ''crashed'' state. If such a cable is connected t...") Tag: Visual edit
- 22:06, 1 August 2026 GHXX talk contribs created page File:DeviceCable thumbnail.png
- 22:06, 1 August 2026 GHXX talk contribs uploaded File:DeviceCable thumbnail.png
- 21:56, 1 August 2026 GHXX talk contribs created page Mainboard (Created page with "alt=Mainboard|thumb|Mainboard The Mainboard acts as a container for 1 to 3 Virtual Components. By default all mainboards contain the UEFI component. The second tier also comes with an NVRAM (Non-volatile RAM) equipped, and the final tier also includes a TPM (Trusted Platform Module), but this final component is not implemented yet. Therefore the tier 3 mainboard acts like a tier 2. There is...") Tag: Visual edit
- 21:44, 1 August 2026 GHXX talk contribs created page Module:Navbox/doc (Created page with "Creates a navbox used as the bottom of most pages")
- 21:38, 1 August 2026 GHXX talk contribs created page Advanced OS (Created page with "Advanced OS is the built-in operating system provided by us. It provides a number of different helper scripts (or binaries if you want to call it that) in <code>/bin/</code>, as well as a text editor called nano, inspired by the real nano text editor, though our feature set is significantly smaller. If you wish, you can write your own operating system. In that case, you may find the [https://github.com/MidnightMages/AcLuaDev/ AcLuaDev] project qu...") Tag: Visual edit
- 21:27, 1 August 2026 GHXX talk contribs created page Floppy Disk (Created page with "alt=Hard disk drive|thumb|Hard disk drive Floppy disks are very similar to HDDs both in the sense that they store data, are currently managed-only and have no size quota just yet. A big difference is that you can craft an Advanced OS installation floppy which allows you to install our built-in operating system. Though you can also write your own if you wish to. You may want to look at the AcLuaDev...") Tag: Visual edit
- 21:15, 1 August 2026 GHXX talk contribs created page Hard Disk Drive (Created page with "alt=Hard disk drive|thumb|Hard disk drive Hard disk drives (HDDs) are one of the items providing functionality for storing data that persists across computer reboots. They come in many different tiers, though currently the only difference is visually. In the future, different drives will offer a different amount of storage space, perhaps also different access timings and maybe more. == Provided component == This item provi...") Tag: Visual edit
- 18:42, 1 August 2026 GHXX talk contribs created page Redstone IO (Created page with "alt=Redstone IO block|thumb|Redstone IO block The Redstone IO block provides support for reading and setting redstone signals. It even supports specifying signal levels. == Provided component == This block provides the <code>itemInterface</code> component, offering methods shown below. For information on the side argument, see API:Sides. {| class="wikitable" |+ ItemInterfaceUD component methods |- ! Name !! Type !! Description |- | style=...") Tag: Visual edit: Switched
- 18:31, 1 August 2026 GHXX talk contribs created page File:RedstoneIoBlock.png
- 18:31, 1 August 2026 GHXX talk contribs uploaded File:RedstoneIoBlock.png
- 18:29, 1 August 2026 GHXX talk contribs deleted page File:RedstoneIo.png (content was: "Redstone IO block", and the only contributor was "GHXX" (talk))
- 18:21, 1 August 2026 GHXX talk contribs undeleted page File:RedstoneIo.png (1 file)
- 18:21, 1 August 2026 GHXX talk contribs undeleted page File:RedstoneIo.png (1 revision)
- 18:16, 1 August 2026 GHXX talk contribs deleted page File:RedstoneIo.png (content was: "Redstone IO block", and the only contributor was "GHXX" (talk))
- 18:14, 1 August 2026 GHXX talk contribs created page File:RedstoneIo.png
- 18:14, 1 August 2026 GHXX talk contribs uploaded File:RedstoneIo.png
- 18:06, 1 August 2026 GHXX talk contribs created page Item Interface (Created page with "alt=Item interface block|thumb|Item interface block The Item Interface allows interacting with in-world inventories and moving items between inventories of blocks that are adjacent to the item interface. A basic example would be reading inventory contents, or making a sorting system that automatically voids certain items by dropping them into lava. File:ItemInterfaceExampleSetup.png|alt=Example setup utilizing the item interface to trans...") Tag: Visual edit
- 17:45, 1 August 2026 GHXX talk contribs created page File:ItemInterfaceExampleSetup.png
- 17:45, 1 August 2026 GHXX talk contribs uploaded File:ItemInterfaceExampleSetup.png
- 17:44, 1 August 2026 GHXX talk contribs created page File:ItemInterfaceThumb.png
- 17:44, 1 August 2026 GHXX talk contribs uploaded File:ItemInterfaceThumb.png
- 04:50, 1 August 2026 GHXX talk contribs created page Punchcard Machine (Created page with "alt=Punchcard Machine block|thumb|Punchcard Machine block Sometimes you may wish to modify a Mainboard that is not located in the current Computer. This is precisely the purpose of the Mainboard Programmer block. To modify a mainboard, simply put it into the block's GUI and run any of the component API methods below. Some players may want an extra challenge, or some nostalgia, and thus can start from just Punchcard instea...") Tag: Visual edit
- 04:40, 1 August 2026 GHXX talk contribs created page File:Punchcard Machine block.png
- 04:40, 1 August 2026 GHXX talk contribs uploaded File:Punchcard Machine block.png
- 04:38, 1 August 2026 GHXX talk contribs created page File:PunchcardMachineGui.png
- 04:38, 1 August 2026 GHXX talk contribs uploaded File:PunchcardMachineGui.png
- 23:07, 31 July 2026 GHXX talk contribs created page Punchcard Reader (Created page with "alt=Punchcard Reader block|thumb|Punchcard Reader block alt=Punchcard Reader GUI|frame|Punchcard Reader GUI Besides the Punchcard Machine, this is the second block needed for using punch cards. It is capable of reading the Punchcard that is currently in the reader-slot (see the image below). It is also capable of shifting items from right-to-left in the 'Input slots' row, then into the 'Reader slot'...") Tag: Visual edit
- 22:51, 31 July 2026 GHXX talk contribs created page File:Punchcard Reader GUI.png
- 22:51, 31 July 2026 GHXX talk contribs uploaded File:Punchcard Reader GUI.png
- 22:41, 31 July 2026 GHXX talk contribs created page File:Punchcard Reader.png
- 22:41, 31 July 2026 GHXX talk contribs uploaded File:Punchcard Reader.png
- 22:31, 31 July 2026 GHXX talk contribs created page Mainboard Programmer (Created page with "alt=Mainboard Programmer block|thumb|Mainboard Programmer block Sometimes you may wish to modify a Mainboard that is not located in the current Computer. This is precisely the purpose of the Mainboard Programmer block. To modify a mainbord, simply put it into the block's GUI and run any of the component API methods below. == Provided component == This block provides the <code>mainboardProgrammer</code> component, offering...") Tag: Visual edit
- 22:25, 31 July 2026 GHXX talk contribs created page File:Mainboard programmer block.png
- 22:25, 31 July 2026 GHXX talk contribs uploaded File:Mainboard programmer block.png
- 22:04, 31 July 2026 GHXX talk contribs created page Screen (Created page with "alt=Screens in Minecraft|thumb|Screens in Minecraft Similar to Computers, Screens are offered in different tiers. For now, there is no technical difference between the screens. In the future they will differ by their feature set. Particularly, the iron tier will add support for color rendering and diamond will add touch-support on top of that. Screens add several events that are listed in the Computer#Machine events|Machine eve...") Tag: Visual edit
- 21:36, 31 July 2026 GHXX talk contribs created page File:Ingame screens.png
- 21:36, 31 July 2026 GHXX talk contribs uploaded File:Ingame screens.png
- 19:31, 31 July 2026 GHXX talk contribs created page Template:Caution (Created page with "<div class="cdx-message--error cdx-message cdx-message--block"><span class="cdx-message__icon"></span><div class="cdx-message__content">{{{1|CAUTION MESSAGE}}}</span></div></div>")
- 19:30, 31 July 2026 GHXX talk contribs created page Template:Warning (Created page with "<div class="cdx-message--warning cdx-message cdx-message--block"><span class="cdx-message__icon"></span><div class="cdx-message__content">{{{1|WARNING MESSAGE}}}</span></div></div>")
- 19:30, 31 July 2026 GHXX talk contribs created page Template:Note (Created page with "<div class="cdx-message cdx-message--block" style="background-color: #2778bb;border-color: #58b4ff;"><span style='background-color:#ffffff' class="cdx-message__icon"></span><div class="cdx-message__content" style="color: white;">{{{1|NOTE MESSAGE}}}</span></div></div>")
- 19:30, 31 July 2026 GHXX talk contribs created page Template:Todo (Created page with "<noinclude><templatedata> { "description": "Places a TODO box, indicating something that needs to be done still", "params": { "1": { "label": "TODO message", "description": "Message describing what is left to be done", "type": "string" } } } </templatedata></noinclude> <noinclude>prefix text</noinclude><span class="cdx-message2 cdx-message--block" style="background-color: var(--background-color-base);border-...")
- 19:21, 31 July 2026 GHXX talk contribs created page Computer (Created page with "thumb|All computer tiers ingame Computers come in 5 different tiers, namely Wood, Iron, Diamond, Netherite and finally Creative, though that tier is not available in survival. These tiers only differ in the amount of inventory slots and computer speed. In the future, tiers will also impact the amount of usable memory. thumb|alt=Netherite computer gui|Netherite computer gui The computer is what provid...")