Skip to content

Commit

Permalink
Add new how to play solo command
Browse files Browse the repository at this point in the history
  • Loading branch information
TanyaPegasus committed Jan 14, 2024
1 parent df405e3 commit 44945b3
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions commands/solo.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
const { SlashCommandBuilder } = require('@discordjs/builders');

module.exports = {
data: new SlashCommandBuilder()
.setName('solo')
.setDescription('How to play 2HOL solo'),
async execute(interaction) {
return interaction.reply('How to play solo or as a single player\n\nUsing a spawn code is the easiest way to play alone. While you will be on the same map as other players, a spawn code allows you to find an isolated space to play.\n\nSay \"no bb\" in game each life to become infertile. If you decide you\'d like to have children later \"yes bb\" will make you fertile again.\n\nUse /spawncodes to find out more.\n\nIf you want a completely isolated experience you will need to set up your own server, this is a technically advanced process https://github.com/risvh/miniOneLifeCompile');
},
};

0 comments on commit 44945b3

Please sign in to comment.