Advertisement
Alexr360

Main Controller

Apr 3rd, 2025 (edited)
390
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 7.72 KB | None | 0 0
  1. -- Combined Teleport and Artillery Control System
  2. local modem = peripheral.find("modem") or error("No modem attached", 0)
  3. local CHANNEL = 15
  4. modem.open(CHANNEL)
  5.  
  6. -- Function to wait for a modem message on a specific channel
  7. local function receiveMessage()
  8.     local event, _, channel, _, message = os.pullEvent("modem_message")
  9.     if channel == CHANNEL then
  10.         return message
  11.     else
  12.         return receiveMessage()
  13.     end
  14. end
  15.  
  16. local function teleportPlayer(player, x, y, z, dimension)
  17.     if dimension then
  18.         commands.exec(("execute in %s run tp %s %d %d %d"):format(dimension, player, x, y, z))
  19.     else
  20.         commands.exec(("tp %s %d %d %d"):format(player, x, y, z))
  21.     end
  22. end
  23.  
  24. -- Function to summon particles at a given position
  25. local function summonParticles(x, y, z, dimension)
  26.     for _ = 1, 10 do
  27.         if dimension then
  28.             commands.exec(("execute in %s run particle minecraft:portal %d %d %d 1 1 1 0.1 50"):format(dimension, x, y, z))
  29.         else
  30.             commands.exec(("particle minecraft:portal %d %d %d 1 1 1 0.1 50"):format(x, y, z))
  31.         end
  32.         sleep(0.1) -- Creates a brief delay between particle bursts
  33.     end
  34. end
  35.  
  36. -- Function to add slight randomness to coordinates
  37. local function addRandomness(coordinate)
  38.     -- Generate random number between -2 and 2
  39.     local randomOffset = math.random(-2, 2)
  40.    
  41.     -- 60% chance to apply randomness (accuracy simulation)
  42.     if math.random(1, 10) <= 6 then
  43.         return coordinate + randomOffset
  44.     end
  45.    
  46.     return coordinate
  47. end
  48.  
  49. -- Function to summon TNT in a grid with offset for alternating patterns
  50. local function summonGrid(size, spacing, targetX, targetY, targetZ, projectileType, iteration)
  51.     local offset = math.floor(size / 2) * spacing
  52.     local patternOffset = (iteration % 2) * (spacing / 2) -- Alternate pattern offset
  53.    
  54.     for dx = -offset, offset, spacing do
  55.         for dz = -offset, offset, spacing do
  56.             -- Apply alternating offset to create staggered pattern
  57.             local x = targetX + dx + patternOffset
  58.             local z = targetZ + dz + patternOffset
  59.            
  60.             -- Add randomness to each explosion
  61.             local randomX = addRandomness(x)
  62.             local randomY = addRandomness(targetY)
  63.             local randomZ = addRandomness(z)
  64.            
  65.             commands.exec(("summon %s %d %d %d {Fuse:100}"):format(projectileType, randomX, randomY, randomZ))
  66.         end
  67.     end
  68. end
  69.  
  70. -- Seed the random number generator
  71. math.randomseed(os.time())
  72.  
  73. term.clear()
  74. term.setCursorPos(1, 1)
  75. print("Bastion Network Online!")
  76. print("Waiting for command...")
  77.  
  78. -- Main program loop
  79. while true do
  80.     local command = receiveMessage()
  81.    
  82.     if command == "Recall" then
  83.         print("Recalling Player...")
  84.         modem.transmit(43, CHANNEL, "Recalling Player...")
  85.  
  86.         print("Starting Teleporter")
  87.         os.sleep(2)
  88.  
  89.         for i = 1, 100 do
  90.             local chargePercent = i
  91.             print("Charging " .. chargePercent .. "%")
  92.             modem.transmit(43, CHANNEL, "Charging " .. chargePercent .. "%")
  93.             sleep(0.05) -- 100 updates over 5 seconds
  94.         end
  95.  
  96.         -- Teleport the player
  97.         local targetX, targetY, targetZ = 293, 95, 750, "minecraft:overworld"
  98.         teleportPlayer("Alexr036", targetX, targetY, targetZ, dimension)
  99.  
  100.         -- Summon teleport particles
  101.         summonParticles(targetX, targetY, targetZ, dimension)
  102.        
  103.     elseif command == "Teleport" then
  104.         print("Programming Started")
  105.  
  106.         local positionX = receiveMessage()
  107.         print("Position X: " .. positionX)
  108.  
  109.         local positionY = receiveMessage()
  110.         print("Position Y: " .. positionY)
  111.  
  112.         local positionZ = receiveMessage()
  113.         print("Position Z: " .. positionZ)
  114.  
  115.         local dimension = receiveMessage()
  116.         print("Target Dimension: " .. dimension)
  117.  
  118.         print("Starting Teleporter")
  119.         os.sleep(2)
  120.  
  121.         for i = 1, 100 do
  122.             print("Charging " .. i .. "%")
  123.             modem.transmit(43, CHANNEL, "Charging " .. i .. "%")
  124.             sleep(0.05)
  125.         end
  126.  
  127.         -- Teleport the player across dimensions
  128.         teleportPlayer("Alexr036", positionX, positionY, positionZ, dimension)
  129.  
  130.         -- Summon teleport particles
  131.         summonParticles(positionX, positionY, positionZ, dimension)
  132.        
  133.     elseif command == "TNT" or command == "Nuke" then
  134.         print("Artillery System Online")
  135.         modem.transmit(43, CHANNEL, "Artillery System Online")
  136.        
  137.         -- Store the projectile type from the command
  138.         local projectileType = command
  139.         print("Projectile Type: " .. projectileType)
  140.            
  141.         local projectilePattern = receiveMessage()
  142.         print("Projectile Pattern: " .. projectilePattern)
  143.  
  144.         local iterations = receiveMessage() + 0
  145.         print("Iterations: " .. iterations)
  146.  
  147.         local targetX = receiveMessage()
  148.         print("Target X: " .. targetX)
  149.  
  150.         local targetY = receiveMessage() + 40
  151.         print("Target Y: " .. targetY)
  152.  
  153.         local targetZ = receiveMessage()
  154.         print("Target Z: " .. targetZ)
  155.  
  156.         -- Item Based on Type
  157.         local spread = 0
  158.         if projectileType == "TNT" then
  159.             projectileType = "minecraft:tnt"
  160.             spread = 7
  161.         elseif projectileType == "Nuke" then
  162.             projectileType = "alexscaves:nuclear_bomb"
  163.             spread = 80
  164.         end
  165.  
  166.         modem.transmit(43, CHANNEL, "Bombardment Started")
  167.  
  168.         -- Pattern Based on input with alternating offsets and randomness
  169.         for i = 1, tonumber(iterations) do
  170.             print("Firing iteration " .. i)
  171.             modem.transmit(43, CHANNEL, "Firing iteration " .. i)
  172.  
  173.             -- Add slight variation to Y position for each iteration
  174.             local variationY = (i % 3) * 2 -- Varies height by 0, 2, 4 blocks
  175.             local iterationY = targetY + variationY
  176.            
  177.             if projectilePattern == "Single" then
  178.                 -- For single pattern, create slight x/z offsets for each iteration
  179.                 local offsetX = (i % 3 - 1) * (spread / 3)
  180.                 local offsetZ = ((i + 1) % 3 - 1) * (spread / 3)
  181.                
  182.                 -- Add randomness to coordinates
  183.                 local randomX = addRandomness(targetX + offsetX)
  184.                 local randomY = addRandomness(iterationY)
  185.                 local randomZ = addRandomness(targetZ + offsetZ)
  186.                
  187.                 commands.exec(("summon %s %d %d %d {Fuse:100}"):format(
  188.                     projectileType,
  189.                     randomX,
  190.                     randomY,
  191.                     randomZ
  192.                 ))
  193.             elseif projectilePattern == "2x2" then
  194.                 summonGrid(2, spread, targetX, iterationY, targetZ, projectileType, i)
  195.             elseif projectilePattern == "3x3" then
  196.                 summonGrid(3, spread, targetX, iterationY, targetZ, projectileType, i)
  197.             elseif projectilePattern == "4x4" then
  198.                 summonGrid(4, spread, targetX, iterationY, targetZ, projectileType, i)
  199.             elseif projectilePattern == "5x5" then
  200.                 summonGrid(5, spread, targetX, iterationY, targetZ, projectileType, i)
  201.             end
  202.            
  203.             os.sleep(5)
  204.         end
  205.  
  206.         -- Acknowledge firing
  207.         modem.transmit(43, CHANNEL, "Bombardment Complete")
  208.        
  209.     elseif command == "Remote Connected" then
  210.         print("Connected to System")
  211.         modem.transmit(43, CHANNEL, "Connected to System")
  212.     else
  213.         print("Unknown command: " .. command)
  214.         modem.transmit(43, CHANNEL, "Unknown command")
  215.     end
  216.    
  217.     print("Waiting for next command...")
  218. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement