Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- while true do
- local event, attachmentName, cartType, cartName, colorPrimary, colorSecondary, destination, owner =
- os.pullEvent("minecart")
- print("Détection d'un minecart !")
- print("Périphérique: "..attachmentName)
- print("Type: "..cartType)
- print("Nom: "..(cartName or "Inconnu"))
- if colorPrimary then
- print("Couleurs: "..colorPrimary..", "..colorSecondary)
- end
- if destination and destination ~= "" then
- print("Destination: "..destination)
- end
- if owner and owner ~= "" then
- print("Propriétaire: "..owner)
- end
- print("-------------")
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement