Login with Hive Keychain
Enter your Hive username to sign in securely.
Welcome to HiveComb
HiveComb runs on Hive — an open, decentralized blockchain where your posts, votes, and communities belong to you, not a company. To get started, follow these steps:
Create a Hive account
Set up your free account — it only takes a minute.
Install Hive Keychain
A browser extension that securely signs your transactions — your keys never leave your device.
Refresh & log in
Once Keychain is installed, refresh this page and click Login again.
Need help? Join our Discord and we'll help you get set up.
No account? Create one
Having trouble creating your account? Come to our Discord and we'll get you set up.
No posts found
Try adjusting your filters or wait for the worker to classify more posts.
No posts found
Try adjusting your filters or wait for the worker to classify more posts.
No posts found
Try adjusting your filters or wait for the worker to classify more posts.
Welcome to HiveComb!
Choose your default filters to see the content you care about most.
Languages
Categories
Sentiment
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.
Report Misclassification
Why is this post incorrectly classified?
Comments
1 commentCongratulations @strangedad! You have completed the following achievement on the Hive blockchain And have been rewarded with New badge(s)
Your next target is to reach 7000 upvotes.
You can view your badges on your board and compare yourself to others in the Ranking
If you no longer want to receive notifications, reply to this comment with the word
STOP