
RetroCommands
Retro Commands built on Fabric for b1.7.3, but it also works in Multiplayer and has an API.
Обновлён 10 июня 2026 г. · опубликован 23 марта 2024 г.
Retro Commands for b1.7.3
- it works on servers
- it has an extensible API.
- No dependencies required
Optional Dependencies
- To access /tp with dimensions, install STAPI
- To access /gamemode, install BHCreative
Help
- Use
/helpin-game
API
Note: Please make Retro Commands optional!!
build.gradle
repositories {
maven {
name = "Jitpack"
url "https://jitpack.io/"
}
}
dependencies {
modImplementation('com.github.matthewperiut:retrocommands:0.5.2') {
transitive false
}
}
fabric.mod.json
"suggests": {
"retrocommands": "*"
},
in your mods initialization
public static void init_of_some_sort()
{
if (FabricLoader.getInstance().isModLoaded("retrocommands")){
MyModsCommands.add();
}
}
implement com.matthewperiut.retrocommands.api.Command
register with com.matthewperiut.retrocommands.api.CommandRegistryCommandRegistry.add(new Command())
new Command() replaced with your custom command.
Add your own summon command for your entities
Use com.matthewperiut.retrocommands.api.SummonRegistry
SummonRegistry.add(...)
Examples from com.matthewperiut.retrocommands.util.VanillaMobs
SummonRegistry.add(Creeper.class, (level, pos, param) -> {
Creeper creeper = new Creeper(level);
if (param.length > 5)
if (!param[5].isEmpty())
if (param[5].charAt(0) != '0')
((EntityAccessor) creeper).getDataTracker().setInt(17, (byte) 1);
return creeper;
}, "{charged (0 or 1)}");
SummonRegistry.add(Sheep.class, (level, pos, param) -> {
int color = Integer.parseInt(param[5]);
int has_wool = 1;
if (param.length > 6)
has_wool = Integer.parseInt(param[6]);
Sheep sheep = new Sheep(level);
sheep.setSheared(has_wool == 0);
sheep.setColour(color);
return sheep;
}, "{wool color meta} {has wool (0/1)} ");
Версии
| Версия | Канал | Игра | Загрузчики | Дата | Скачать |
|---|---|---|---|---|---|
| 0.7.4+babric | Релиз | b1.7.3 | babric | 10 июня 2026 г. | .jar (1.1 МБ) |
| 0.7.4 | Релиз | b1.7.3 | ornithe | 10 июня 2026 г. | .jar (964 КБ) |
| 0.5.10 | Релиз | b1.7.3 | babric, fabric | 13 июля 2025 г. | .jar (142 КБ) |
| 0.5.9 | Релиз | b1.7.3 | babric, fabric | 13 июля 2025 г. | .jar (142 КБ) |
| 0.5.8 | Релиз | b1.7.3 | babric | 9 июля 2025 г. | .jar (141 КБ) |
| 0.5.7 | Релиз | b1.7.3 | babric | 6 мая 2025 г. | .jar (141 КБ) |
| 0.5.6 | Релиз | b1.7.3 | babric | 15 апреля 2025 г. | .jar (139 КБ) |
| 0.5.5 | Релиз | b1.7.3 | babric | 13 апреля 2025 г. | .jar (537 КБ) |
| 0.5.4 | Релиз | b1.7.3 | babric | 31 октября 2024 г. | .jar (536 КБ) |
| 0.5.3 | Релиз | b1.7.3 | babric | 31 октября 2024 г. | .jar (536 КБ) |
| 0.5.2 | Релиз | b1.7.3 | babric | 14 октября 2024 г. | .jar (109 КБ) |
| 0.5.0 | Релиз | b1.7.3 | babric | 30 сентября 2024 г. | .jar (107 КБ) |
| 0.4.5 | Релиз | b1.7.3 | babric | 3 мая 2024 г. | .jar (95 КБ) |
| 0.4.4 | Релиз | b1.7.3 | babric | 7 апреля 2024 г. | .jar (94 КБ) |
| 0.4.3+mojangfix-fix | Релиз | b1.7.3 | babric | 23 марта 2024 г. | .jar (93 КБ) |
Ченджлог
0.7.4+babricРелизb1.7.3 · 10 июня 2026 г.
Babric and Ornithe release Lots of things... that i can't be bothered to name. look at github.
0.7.4Релизb1.7.3 · 10 июня 2026 г.
Babric and Ornithe release Lots of things... that i can't be bothered to name. look at github.
0.5.10Релизb1.7.3 · 13 июля 2025 г.
What's Changed
Other
- Fix spawn radius for summon command by @telvarost in https://github.com/matthewperiut/retrocommands/pull/9
Full Changelog: https://github.com/matthewperiut/retrocommands/compare/0.5.9...0.5.10
0.5.7Релизb1.7.3 · 6 мая 2025 г.
Fix compatibility with anti-cheat servers
0.5.6Релизb1.7.3 · 15 апреля 2025 г.
Move from internal logic networking to Glass Networking
0.5.5Релизb1.7.3 · 13 апреля 2025 г.
Add disabling commands and add mojangfix stuff
What's Changed
Other
- Fix cursor position by using MojangFixStationAPI v2.3.0 by @telvarost in https://github.com/matthewperiut/retrocommands/pull/3
Full Changelog: https://github.com/matthewperiut/retrocommands/compare/0.5.4...0.5.5
0.5.4Релизb1.7.3 · 31 октября 2024 г.
Minor bug fixes
0.5.3Релизb1.7.3 · 31 октября 2024 г.
Improve commands
Full Changelog: https://github.com/matthewperiut/retrocommands/compare/0.5.2...0.5.3
Полная история изменений — на Modrinth.
Комментарии
Загружаем…

