Minecraft - Hive Engine - Beta - Hive Emblem
Hopefully this has updated within the game... if you find the Hive Emblem in the game and post it in the comments I'll give you a PeakeCoin reward.
This is part of main.lua I'm learning and its a process to hardcode these things in.
-- Hive logo block-art based on the provided mark:
-- left diamond plus two right chevrons.
-- Rendered in the XY plane as a floating sign above the bank.
local redWool = 35
local redMeta = 14
local airBlock = 0
local width = 21
local height = 11
local halfCols = math.floor(width / 2)
local pixels = {}
for row = 1, height do
pixels[row] = {}
for col = 1, width do
pixels[row][col] = 0
end
end
local function FillSegment(a_Row, a_StartCol, a_EndCol)
if ((a_Row < 1) or (a_Row > height)) then
return
end
for col = a_StartCol, a_EndCol do
if ((col >= 1) and (col <= width)) then
pixels[a_Row][col] = 1
end
end
end
-- Left red diamond.
FillSegment(2, 5, 5)
FillSegment(3, 4, 6)
FillSegment(4, 3, 7)
FillSegment(5, 2, 8)
FillSegment(6, 1, 9)
FillSegment(7, 2, 8)
FillSegment(8, 3, 7)
FillSegment(9, 4, 6)
FillSegment(10, 5, 5)
-- First chevron.
FillSegment(2, 10, 12)
FillSegment(3, 11, 13)
FillSegment(4, 12, 14)
FillSegment(5, 13, 15)
FillSegment(7, 13, 15)
FillSegment(8, 12, 14)
FillSegment(9, 11, 13)
FillSegment(10, 10, 12)
-- Second chevron.
FillSegment(2, 15, 17)
FillSegment(3, 16, 18)
FillSegment(4, 17, 19)
FillSegment(5, 18, 20)
FillSegment(6, 19, 21)
FillSegment(7, 18, 20)
FillSegment(8, 17, 19)
FillSegment(9, 16, 18)
FillSegment(10, 15, 17)
for row = 1, height do
for col = 1, width do
local bx = a_CenterX + (col - 1) - halfCols
local by = a_BaseY + (height - row)
if (pixels[row][col] == 1) then
SetBlockAt(a_World, bx, by, a_CenterZ, redWool, redMeta)
else
SetBlockAt(a_World, bx, by, a_CenterZ, airBlock, 0)
end
end
end
g_Bank.LogoMinX = a_CenterX - halfCols
g_Bank.LogoMaxX = a_CenterX + halfCols
g_Bank.LogoMinY = a_BaseY
g_Bank.LogoMaxY = a_BaseY + height - 1
g_Bank.LogoZ = a_CenterZ
g_Bank.LogoPlaced = true
end
πͺ PeakeCoin Ecosystem
π± PeakeCoin USDT Bridge (Hive β Polygon/MATIC)
Bridge SWAP.USDT from Hive Engine to USDT on Polygon (MATIC).
Whitelist access, documentation, and bridge status updates:
π https://geocities.ws/peakecoin
βοΈ HiveP.I.M.P. β PeakeCoin Intelligent Market Protector
Operated by @hivepimp, P.I.M.P. focuses on stabilizing PEK markets and strengthening liquidity on Hive Engine.
Community participation supports long-term ecosystem health.
π€ PeakeBot β Autonomous Trading System
Independent multi-token trading bot with RC-awareness, adaptive delay logic, and smart cycle control.
π Trading bot documentation:
π https://geocities.ws/p/e/peakecoin/trading-bot/peakebot_v0_01.html
π» Open-source repositories:
π https://github.com/paulmoon410
π° PeakeSino β The PeakeCoin Casino (Beta)
Blockchain-powered games using PEK as the native in-game currency.
Built on Hive with a focus on provable fairness and community-driven growth.
π Play the beta games here:
π https://geocities.ws/peakecoin/pek_casino/beta_games/index.html
π Acknowledgements
Thanks to and please follow:
@enginewitty
@ecoinstant
@neoxian
@txracer
@thecrazygm
@holdonia
@aggroed
For their continued support, guidance, and help expanding the PeakeCoin ecosystem.
Leave Minecraft - Hive Engine - Beta - Hive Emblem to:
Read more #hive-140217 posts
Best Posts From Peake_Dad
We have not curated any of strangedad's posts yet. But you can encourage our curation team to review posts by visiting them regularly and by referring other readers. Because we give priority to frequently read content.
More Posts From Peake_Dad
- Stolen Funds
- PeakeCoin Bots: Automated Trading Dashboard
- Peake RPG - MMO - Beta Version
- Peake RPG β Current Project Rundown
- Poor Manβs AI β Building While the Servers Are Down
- Hive Trading Bot - strategy.py - Part 4
- Hive Engine Trading Bot - Part 3 - rc_intelligence.py
- Hive Engine Trading Bot - Cycle Control - Part 2
- Hive Engine Trading Bot - Unified Logic - Part 1
- Arbiter Bot - Part 4 - place_order.py