Using client values in commands

This one is easy. If you want any value from the client object, normally, you'd do this:

client.guilds.cache.size;
1

However, in Commando, you have to use this to get these values.

this.client.guilds.cache.size;
1

It's that simple!