SimpleJobs-1.0.0.jar
24 Jan 2026
CurseForge · Hytale mod
A comprehensive jobis plugin for Hytale servers, providing different jobs types for players. It also integrates using Cassaforte Interface to others economy plugins.
Quick answer
Simple Jobs SimpleJobs-1.0.0.jar targets Hytale. Do not install it as a separate client mod. Enable it on the world host—the local server in singleplayer or the dedicated server in multiplayer. No required dependencies listed for this file.
Where it goes
Do not install it as a separate client mod. Enable it on the world host—the local server in singleplayer or the dedicated server in multiplayer.
Put Hytale mods on the world host or dedicated server. Singleplayer runs a local server too; Hytale does not use separate client mods.
SimpleJobs-1.0.0.jar. Change the file and its required mods may change too.
This file does not list any required mods. Do not add a library just because a different file uses it.
This file does not list any required or optional project dependencies. Check the creator notes before changing an existing world.
Before you install it
Built for Simple Jobs SimpleJobs-1.0.0.jar. Pick another file and the loader, install side or required mods may change.
Use SimpleJobs-1.0.0.jar. It targets Hytale; another release may target a different game build or dependency set.
This file does not list any required mods. Do not add a library just because a different file uses it.
Do not install it as a separate client mod. Enable it on the world host—the local server in singleplayer or the dedicated server in multiplayer.
Use the “Get this file” button beside SimpleJobs-1.0.0.jar. It opens that exact file at the source.
About this project
A comprehensive jobs and economy plugin for Hytale servers
SimpleJobs is a feature-rich job system plugin designed specifically for Hytale servers. Players can join various professions, earn experience, level up their skills, and make money through activities like hunting monsters, mining ores, chopping trees, and farming crops. Perfect for RPG servers, economy-focused communities, or any server looking to add progression systems.
| Command | Description | Permission |
|---|---|---|
/jobs help |
Show jobs help message and available jobs | jobs.user |
/jobs join <job> |
Join a job (hunter, miner, woodcutter, farmer) | jobs.join |
/jobs leave <job> |
Leave your current job | jobs.leave |
/jobs info |
View all your jobs and progress | jobs.info |
/jobs info <job> |
View detailed info about a specific job | jobs.info |
SimpleJobs creates configuration files on first launch:
jobs_config.json)SQLite (Default) - Perfect for most servers
{
"database": {
"type": "SQLITE",
"sqlite": {
"path": "jobs_data/jobs.db"
}
}
}
jobs_data/jobs.dbPostgreSQL - For high-performance networks
{
"database": {
"type": "POSTGRESQL",
"postgresql": {
"host": "localhost",
"port": 5432,
"database": "jobs",
"username": "jobs_user",
"password": "your_password",
"poolSize": 10
}
}
}
jobs_config.json){
"jobs": {
"enableLeveling": true,
"maxLevel": 100,
"baseExperienceMultiplier": 1.0
}
}
SimpleJobs uses a straightforward permission system:
Player Permissions (granted to all players by default)
jobs.user - Base user permissionjobs.join - Join jobsjobs.leave - Leave jobsjobs.info - View job informationAdmin Permissions (automatically given to server operators)
jobs.admin - Full administrative accessExperience required for next level: 100 × level^1.5
Examples:
All rewards scale with player level: baseReward × (1 + level × 0.05)
Example: At level 10, a 10 coin base reward becomes: 10 × (1 + 10 × 0.05) = 15 coins
SimpleJobs implements the Cassaforte Economy API, ensuring:
val jobs = SimpleJobs.instance
// Get player job data
val jobPlayer = jobs.getJobPlayer(playerUuid, JobType.HUNTER)
// Check player level
println("Player is Hunter level ${jobPlayer.level}")
println("Progress: ${jobPlayer.getLevelProgress()}%")
SimpleJobs.jar in your server's plugins/ folderjobs_config.json to customize settings/jobs join <job> to start earning!New Player Experience:
Player: /jobs help
Server: === SimpleJobs ===
Server: Earn money and XP through various jobs!
Server:
Server: Available Jobs:
Server: hunter: Earn money by killing monsters
Server: miner: Earn money by mining ores
Server: woodcutter: Earn money by chopping trees
Server: farmer: Earn money by farming crops
Player: /jobs join hunter
Server: You joined the Hunter job!
Server: Description: Earn money by killing monsters
Player: /jobs info hunter
Server: === Hunter Job ===
Server: Description: Earn money by killing monsters
Server: Your Progress:
Server: Level: 1
Server: Experience: 0.0 / 100.0
Server: Progress: 0.0%
Server: Total Earnings: 0.00
After Killing a Mob:
Console: [Hunter] Player killed Mob - +10 XP, +5 coins
Player: +10 XP (Hunter)
Player: +5 coins added to your balance
Planned features for future releases:
Built for the Hytale modding community.
Integrates with Cassaforte's Economy API for seamless economy management.
Project description from CurseForge.
Recent files
24 Jan 2026
Looking for an older file? The official CurseForge project page is in Resources.