Coming Soon

 

 1. Guidebooks - Legacy Equipment for the Forged and Commissioned.

Workbooks help you reflect on what you are learning. 

Vision is caught more than taught— legacy is lived, not just learned.

Guidebooks help you move in the Vision.

Guidebooks are the equipment that help you walk out Revive → Forge → Multiply—whether you carry one Mantle or multiple.

Faith empowers. Hope sustains. Vision guides.

As you mature, you'll realize God’s Vision is eternal. Your version of the Vision must die.

Then, as His Vision resurrects in you, it becomes more than instruction— it becomes inheritance.

For Vision that is eternal becomes Legacy that lives beyond you.

Guidebooks are the tools that ensure what God forges in you does not fade—they translate eternal Vision into lived Legacy.
 

 

2. Forged in Fire: The Rise of a NextGen Revivalist TheGame

The game is a map of discipleship, guiding you through Revive → Forge → Multiply.

An interactive role-playing journey where young Revivalists won’t just read the book—they’ll live it.

It’s a commissioning journey that multiplies Jesus in the earth.

 

3. Legacy Living Coaching – Legacy Activation for the Few Who Multiply

Are you like Most, Some, or Few? 

  • Most live a life shaped by culture.

  • Some live a life that shapes culture.

  • Few live a life that shapes culture and multiplies legacy.

Legacy Living Coaching is for the few.

Legacy is forged in surrender, refined by fire, and multiplied through obedience.

Legacy Living is altar‑based activation—discipleship for those who hear and answer the Master's call to multiply His legacy. For it truly is His. That's why He died on the Cross— so His fire, His inheritance, and His glory would multiply through you.

The life you build in secret becomes the legacy others walk in. Build wisely.

What are you building today?

 

document.addEventListener("DOMContentLoaded", function () { const form = document.getElementById("mantleQuiz"); if (!form) return; form.addEventListener("submit", function (e) { e.preventDefault(); let revivalistScore = 0; let movementBuilderScore = 0; let nextGenScore = 0; const answers = [ form.q1.value, form.q2.value, form.q3.value, form.q4.value, form.q5.value ]; answers.forEach(function (value) { value = value.toLowerCase(); if (value.includes("revivalist") && !value.includes("nextgen")) { revivalistScore++; } else if (value.includes("movement")) { movementBuilderScore++; } else if (value.includes("nextgen")) { nextGenScore++; } }); document.getElementById("revivalistResult")?.classList.add("hidden"); document.getElementById("movementBuilderResult")?.classList.add("hidden"); document.getElementById("nextGenResult")?.classList.add("hidden"); const max = Math.max(revivalistScore, movementBuilderScore, nextGenScore); let resultBlock = null; if (max === revivalistScore) { resultBlock = document.getElementById("revivalistResult"); } else if (max === movementBuilderScore) { resultBlock = document.getElementById("movementBuilderResult"); } else if (max === nextGenScore) { resultBlock = document.getElementById("nextGenResult"); } if (resultBlock) { resultBlock.classList.remove("hidden"); resultBlock.scrollIntoView({ behavior: "smooth" }); } }); });