Skip to content

For Contributors

DaFuqs edited this page Feb 22, 2026 · 5 revisions

Way too lazy to do "/advancement grant @s everything" every time the instance is starting? Add this to your program arguments to always play as the same player, keeping your inventory, progress and all:

Fabric

--username <username> --uuid "<some_uuid>"

Example:

--username TestUser --uuid "231f7b27-c222-4173-8292-402173627382"

NeoForge

Neo already logs you on with a User called 'Dev'. If you want to specify your own anyways add a new run config in your gradle project like this:

client_dafuqs {
	client()
	programArgument '--username=TestUser'
	programArgument '--uuid=231f7b27-c222-4173-8292-402173627382'
}

Clone this wiki locally