Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lullaby6/mcalclib
MC Datapack - Library
https://github.com/lullaby6/mcalclib
datapack datapacks mc mcfunction mcfunctions miencraft-datapacks minecraft minecraft-datapack
Last synced: 14 days ago
JSON representation
MC Datapack - Library
- Host: GitHub
- URL: https://github.com/lullaby6/mcalclib
- Owner: lullaby6
- Created: 2023-02-01T13:29:27.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-24T06:15:37.000Z (almost 2 years ago)
- Last Synced: 2024-11-25T18:20:03.528Z (2 months ago)
- Topics: datapack, datapacks, mc, mcfunction, mcfunctions, miencraft-datapacks, minecraft, minecraft-datapack
- Language: mcfunction
- Homepage:
- Size: 23.4 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MCalcLib
Library to help you!
---
## Feactures
- Choice a random number between two numbers (scoreboard)
- Motion in direction
- Despawn an entity (without dead animation)
- Reset XP Player (levels and points)
- Make unfire entities with a tag
- More entities tags: #animals, #breedable, #tameable and #undead
- Get player head
- A lot of predicates, like: "has/passenger", "is/riding", "in/dimension/the_end", "is/sneaking"
- Player unique ID score---
## Usage
### Get a random number between a minimum and a maximum:
(including minimum and maximum)```
scoreboard players set mcalc.min 1
scoreboard players set mcalc.max 10
execute as run function mcalc:calc/random
```the random number will be stored in "mcalc.random" score
```
tellraw @a {"score":{"name":"","objective":"mcalc.random"}}
```### Motion in direction
throw_fireball.mcfunction:
```
function mcalc:calc/motionsummon minecraft:fireball ^ ^1.5 ^.5 {Tags:["test.fireball"]}
data modify entity @e[tag=test.fireball,limit=1,sort=nearest] Owner set from entity @s UUID
execute store result entity @e[tag=test.fireball,limit=1,sort=nearest] power[0] double -0.00025 run scoreboard players get @s mcalc.mx
execute store result entity @e[tag=test.fireball,limit=1,sort=nearest] power[1] double -0.00025 run scoreboard players get @s mcalc.my
execute store result entity @e[tag=test.fireball,limit=1,sort=nearest] power[2] double -0.00025 run scoreboard players get @s mcalc.mztag @e[tag=test.fireball,limit=1,sort=nearest] remove test.fireball
``````
execute as at @s run function :throw_fireball
```### Despawn entity
```
execute as at @s run function mcalc:entity/despawn
```### Reset XP
```
execute as run function mcalc:player/reset_xp
```### Unfire entity
```
summon zombie ~ ~ ~ {Tags:["mcalc.unfire"]}
```### New entities Tags
- animal
- boss
- breedable
- hostile
- passive
- rideable
- tameable
- undeadExample:
```
kill @e[type=#mcalc:undead]
```### Clear chat
For specific player:
```
execute as run function mcalc:player/clear_chat
```For all players
```
function mcalc:global/clear_chat
```### Get player head
```
execute at @s as run loot spawn ~ ~ ~ loot mcalc:player_head
```### All new predicates
- has/passenger
- has/effect/ (example effects name: "regeneration", "fire_resistance", "glowing)
- in/biome/ (example biomes name: "forest", "badlands", "jungle)
- in/dimension/ (example dimensions name: "overworld", "the_end", "the_nether")
- is/baby
- is/on_fire
- is/riding
- is/sneaking
- is/sprinting
- is/swimming
- random/ (example: "0_1" = 10% of chance, "0.5" = 50% of chance, "0.75" = 75% of chance)### Player unique ID score
```
scoreboard players get @s mcalc.player_id
```---