In Testing ยท Closed Access

Multiplayer

An open framework for coordinated multi-account agent flows on . Co-pilot flows, shared contexts, collaborative agent actions across accounts. Download the local extension โ€” no subscription, no server.

This is part of the 1Seven62 multi-tool ecosystem โ€” currently in closed testing. The local extension runs alongside your browser and requires no cloud account.

$24
3 months ยท gifted premium
Multiplayer Premium Gift
3 months of gifted premium access to your account โ€” includes priority support, early feature access, and direct onboarding with @jimsbr.
  • Everything in the $2 tier
  • 3 months gifted premium on your account
  • Priority support + direct DM onboarding
  • Early access to new agent flows as they ship
  • Credited as an early supporter

Card via Stripe ยท DM @jimsbr after payment to activate

โšก Also available via Lightning

Pay via Lightning for the $2 X Multiplayer access tier. After payment DM @jimsbr on with proof of payment to receive your download link.

[ โšก open in wallet ] [ DM @jimsbr on ]
LIGHTNING ADDRESS
pay@highermark.xyz
// Stripe Payment Intent โ€” Scaffolding

Wire up real payments

The buttons above are wired to open Stripe checkout. To run real Payment Intents from your own Stripe account, replace the Stripe Payment Links with a backend that creates Payment Intents and returns client secrets.

โš  Never put sk_live_ keys in frontend HTML. Use serverless functions (Vercel/Railway) and pk_live_ on the client only. See staff dashboard โ†’ Stripe Payments for full setup guide.
Backend: api/create-payment-intent.js
// api/create-payment-intent.js (Vercel serverless) import Stripe from 'stripe'; const stripe = new Stripe(process.env.STRIPE_SECRET_KEY); export default async function handler(req, res) { const { tier } = req.body; // 'xmp-2' or 'xmp-24' const amounts = { 'xmp-2': 200, 'xmp-24': 2400 }; // cents const descs = { 'xmp-2': 'X Multiplayer access', 'xmp-24': '3mo gifted premium' }; const intent = await stripe.paymentIntents.create({ amount: amounts[tier] ?? 200, currency: 'usd', description: descs[tier] ?? 'highermark access', automatic_payment_methods: { enabled: true }, metadata: { tier, source: 'xmultiplayer' }, }); res.json({ clientSecret: intent.client_secret }); }
Frontend: Stripe.js confirmation
// On button click โ€” calls your backend, confirms with Stripe.js const stripe = Stripe('pk_live_YOUR_PUBLISHABLE_KEY'); async function triggerStripe(tier) { const { clientSecret } = await fetch('/api/create-payment-intent', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ tier }), }).then(r => r.json()); const { error } = await stripe.confirmPayment({ elements, // your Stripe Elements instance clientSecret, confirmParams: { return_url: 'https://highermark.xyz/xmultiplayer?success=1' }, }); if (error) console.error(error.message); }
Current setup uses Stripe Payment Links (no backend needed) โ€” swap to Payment Intents when ready to handle fulfillment server-side. See the staff dashboard for Stripe webhook setup to auto-deliver download links on payment_intent.succeeded.
[ staff dashboard โ†’ Stripe setup ] [ stripe dashboard โ†— ]