Available for projects

Building Digital
Experiences
That Matter

ERLC Alter • Server Manager • Full Stack Developer — I bot servers to max capacity, manage thriving communities, and build powerful tools that elevate everything.

50+Projects Built
10K+Players Served
3+Years Exp.
Qxis - Profile
ERLC
Dev
Mgr
About Me

Crafting Digital Worlds
From Vision to Reality

I'm passionate about blending creativity with technology. Whether it's transforming an ERLC server into an immersive experience, managing a thriving community, or engineering full-stack solutions — I bring dedication and expertise to every project.

ERLC Alter

Specialist in ERLC server alting — botting in-game servers to fill them to max capacity. Driving player counts up and keeping servers packed with active users around the clock.

Server Manager

Skilled in managing large-scale Roblox and Discord communities — building staff teams, moderation systems, and engaging player experiences.

Full Stack Developer

Building modern web and bot applications with Next.js, React, Node.js, Python, and MongoDB — from frontend polish to backend power.

Skills & Expertise

My Tech Stack
& Capabilities

PythonJavaScriptReact / Next.jsNode.jsMongoDBDiscord.pyLuaGitPythonJavaScriptReact / Next.jsNode.jsMongoDBDiscord.pyLuaGit
Economy SystemPython
1import discord
2from discord import app_commands
3from motor.motor_asyncio import AsyncIOMotorClient
4
5class Economy(commands.Cog):
6 class="str">"""Full economy system with banking,
7 gambling, shop, and daily rewards.class="str">"""
8
9 def __init__(self, bot):
10 self.bot = bot
11 self.db = bot.mongo[class="str">"utah"]
12 self.economy = self.db[class="str">"economy"]
13
14 class=class="str">"dec">@app_commands.command(name=class="str">"balance")
15 async def balance(self, interaction):
16 class="str">""class="str">"Check your current balance."class="str">""
17 data = await self.economy.find_one(
18 {class="str">"user_id": interaction.user.id}
19 )
20 wallet = data.get(class="str">"wallet", 0)
21 bank = data.get(class="str">"bank", 0)
22
23 embed = discord.Embed(
24 title=class="str">"💰 Your Balance",
25 color=0xD97228
26 )
27 embed.add_field(
28 name=class="str">"Wallet", value=class="str">f"${wallet:,}"
29 )
30 embed.add_field(
31 name=class="str">"Bank", value=class="str">f"${bank:,}"
32 )
33 await interaction.response.send_message(
34 embed=embed
35 )