Roleplay Project runs on a custom-built TypeScript framework, a MySQL backbone, and a Vue 3 in-game overlay. This page is for anyone who wants to know what's powering the city. Stack, roadmap, and how to contribute.
// every in-game window extends PanelShell. // the website is built to feel like one more panel. <PanelShell title="MDC, Mobile Data Computer" subtitle="Unit 8-A-12 · Ofc. Park" icon="display" accent="lspd" :tabs="tabs" :max-width=880 @close="$emit('close')" > <template #body> <StatGrid :cards="stats" /> <ActivityList :rows="recent" /> </template> </PanelShell>