-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
df405e3
commit 44945b3
Showing
1 changed file
with
10 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'); | ||
}, | ||
}; |