Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement collection category for skins #209

Open
crashzk opened this issue Dec 10, 2020 · 1 comment
Open

Implement collection category for skins #209

crashzk opened this issue Dec 10, 2020 · 1 comment

Comments

@crashzk
Copy link
Contributor

crashzk commented Dec 10, 2020

Simple, it would be to implement category option for skins, currently the configurations of skins are like this:

	"Ancient Ritual"
	{
		"index"		"1034"
		"classes"	"weapon_g3sg1;"
	}
	"Carved Jade"
	{
		"index"		"1033"
		"classes"	"weapon_aug;"
	}
	"Dusk Ruins"
	{
		"index"		"1032"
		"classes"	"weapon_galilar;"
	}

With the collection system it would look like this:

	"Ancient Ritual"
	{
		"index"		"1034"
		"classes"	"weapon_g3sg1;"
		"collection"	"Case Broken Frag"
	}
	"Carved Jade"
	{
		"index"		"1033"
		"classes"	"weapon_aug;"
		"collection"	"Case Broken Frag"
	}
	"Dusk Ruins"
	{
		"index"		"1032"
		"classes"	"weapon_galilar;"
		"collection"	"Case Broken Frag"
	}

Or something like this:

"Case Broken Frag"
{
	"Ancient Ritual"
	{
		"index"		"1034"
		"classes"	"weapon_g3sg1;"
	}
	"Carved Jade"
	{
		"index"		"1033"
		"classes"	"weapon_aug;"
	}
	"Dusk Ruins"
	{
		"index"		"1032"
		"classes"	"weapon_galilar;"
	}
}

When the player opened the skin menu, he would have the option to choose skins by collection, then there would be the names of the collections.

It would also be interesting if this collection option could create custom collections, with custom collections names.

I believe something similar to the gloves plugin, which has the gloves separated by a collection of gloves.

@kgns
Copy link
Owner

kgns commented Oct 3, 2021

This sounds like a nice improvement. If anyone wants to implement this for this plugin, I can modify the config generator repository to match the format required.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants