Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- displays in chat the number of items and percentage of applied use. Tweaked CC for chatBox
- local bridge = peripheral.find("meBridge")
- local chatBox = peripheral.find("chatBox")
- local chatBot = "§2Jarvis"
- -- Boucle infinie
- while true do
- -- Récupère les valeurs
- local max = bridge.getTotalItemStorage()
- local count = bridge.getUsedItemStorage()
- -- Calcul du pourcentage
- local percentage = (count / max) * 100
- -- Arrondit le pourcentage à deux chiffres après la virgule
- local roundedPercentage = string.format("%.2f", percentage)
- -- Envoie le message
- chatBox.sendMessage("Stockage applied : " .. count .. " / " .. max .. " (" .. roundedPercentage .. "%)", chatBot)
- -- Attente de 10 minutes
- os.sleep(600)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement