Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
8fba504
add portal methods
zyxkad May 20, 2025
d2d4e8b
add vs2 automata methods
zyxkad May 20, 2025
11c7084
add changelog
zyxkad May 20, 2025
6610044
add vs2 integration on env detector
zyxkad May 20, 2025
fdd699c
add cable p2p tunnel
zyxkad May 20, 2025
25e06ba
add missing colon
zyxkad May 22, 2025
eab54e2
remove ar_controller.md
zyxkad Jun 2, 2025
f1c114b
remove ar goggles and add smartglasses
zyxkad Jun 2, 2025
47db259
add smartglasses modules
zyxkad Jun 2, 2025
74c1e67
update mkdocs.yml
zyxkad Jun 2, 2025
a37beed
update smart glasses docs
zyxkad Apr 9, 2026
c5d57b5
add base peripheral
zyxkad Apr 9, 2026
3ab1908
update inventory manager document
zyxkad Apr 9, 2026
e18fa7c
update geo scanner document
zyxkad Apr 9, 2026
6dd4e15
update energy detector document
zyxkad Apr 9, 2026
ae8aa75
update block reader document
zyxkad Apr 9, 2026
15cd922
update chat box document
zyxkad Apr 9, 2026
e1cdc33
update nbt storage document
zyxkad Apr 9, 2026
4a7c3b8
update player detector document
zyxkad Apr 9, 2026
d35ccf1
update environment detector document
zyxkad Apr 9, 2026
7e63a01
fix styles
zyxkad Apr 9, 2026
839f8e7
add distance_detector.md
zyxkad Apr 10, 2026
2725f57
update overlay doc
zyxkad Apr 13, 2026
39e3557
tune overlay doc
zyxkad Apr 13, 2026
e913c81
manually merge from 0.7
zyxkad Apr 13, 2026
f3ef64c
fix #107
zyxkad Apr 13, 2026
0f994e3
Merge branch '0.8' of https://github.com/IntelligenceModding/Advanced…
zyxkad Apr 13, 2026
fbe153a
add curios mod requirement to inv manager methods
zyxkad Apr 13, 2026
f41a56c
add saddle turtle documentation
zyxkad Apr 13, 2026
5e3ebf5
update lua_objects.md
zyxkad Apr 13, 2026
dc35f12
update overlay autoUpdate method
zyxkad Apr 15, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
blank_issues_enabled: false
blank_issues_enabled: true
contact_links:
- name: Mod issues
url: https://github.com/Seniorendi/AdvancedPeripherals/issues
url: https://github.com/IntelligenceModding/AdvancedPeripherals/issues
about: Please report bugs at the advanced peripherals repository. This repository is for documentation only.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
site/
.idea
.idea
.cache/
.DS_Store
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<center>

[![Project](https://img.shields.io/badge/Project-2E9CFF?style=for-the-badge&logoColor=white&logo=Github)](https://github.com/SirEndii/AdvancedPeripherals)
[![Project](https://img.shields.io/badge/Project-2E9CFF?style=for-the-badge&logoColor=white&logo=Github)](https://github.com/IntelligenceModding/AdvancedPeripherals)
![Netlify Status](https://img.shields.io/website?down_color=red&down_message=offline&label=Netlify%28Host%29&style=for-the-badge&up_color=green&up_message=online&url=https%3A%2F%2Fadvancedperipherals.netlify.app&logoColor=white&logo=Netlify)
[![Discord](https://img.shields.io/discord/734726882058174486?label=Discord&style=for-the-badge&color=7289da&logoColor=white&logo=Discord)](https://discord.intelligence-modding.de/)

Expand Down
93 changes: 0 additions & 93 deletions docs/changelogs/0.7.24r.md

This file was deleted.

135 changes: 0 additions & 135 deletions docs/changelogs/0.7r.md

This file was deleted.

21 changes: 21 additions & 0 deletions docs/guides/disabled_peripherals.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
comments: true
---

# Disabled Peripherals

Peripherals can be disabled in the configuration file of AP in `{minecraft_folder}/config/Advancedperipherals/peripherals.toml`.

When disabled, these peripherals can still be wrapped but all the functions throw a LuaException. Besides that, you can now find a new function called `peripheralDisabled`.
You can simply check in your script if a connected peripheral is disabled via the following example.

```lua
box = peripheral.find("chat_box") -- (1)
if box.peripheralDisabled then -- (2)
error("Peripheral is Disabled", 0)
end
print("Peripheral is not Disabled")
```

1. Can be any peripheral, as long as it is from AP.
2. We just check if the function exists, we don't run it since the function does not exist when the peripheral is not disabled.
2 changes: 1 addition & 1 deletion docs/guides/filters.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ This can be a tag or a name. To filter for tags, place a `#` in front of the nam

```lua
{
name = "#forge:ores/gold" -- Will search for the gold ore tag, nbt values are ignored
name = "#c:ores/gold" -- Will search for the gold ore tag, nbt values are ignored
}
```

Expand Down
2 changes: 1 addition & 1 deletion docs/guides/how_to_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ We appreciate your dedication to making the project better by helping us squash
<hr/>
Remember, our modding community is built on collaboration and a love for Minecraft. Be friendly and respectful in your reports and requests.

To report a bug or request a feature, head over to our [github repository](https://github.com/SirEndii/AdvancedPeripherals/issues). Your feedback is important to us, and it makes the project what it is today!
To report a bug or request a feature, head over to our [github repository](https://github.com/IntelligenceModding/AdvancedPeripherals/issues). Your feedback is important to us, and it makes the project what it is today!

If you need assistance or want to discuss a feature or something else, head out to our [discord](https://discord.intelligence-modding.de/)
Loading