Minecraft - Swap.Steem - Hive Engine - LogosteemCreated with Sketch.

in #minecraft4 hours ago

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.


Sort:  

Coin Marketplace

STEEM 0.06
TRX 0.31
JST 0.058
BTC 70698.87
ETH 2155.31
USDT 1.00
SBD 0.51