Jump to content

Near finished mod wants to be on the workshop.


Recommended Posts

So i've got a booster pack of only the finest (and simplest) cards coming down the pipe, but it says to upload it to the workshop I need to add a title. I don't know how to add a title to it other than the mod's folder name.

Also fair warning. If it's a long explanation, tell me it as if i had NEVER learned about this apart from the fact i need it. trust me, it'll save us both time in one long post instead of spastic back and forth's.

Link to comment
Share on other sites

I trust you, because we had that conversation before.

Anyway, at the bottom, usually you have something like this:

return {
	alias = "MODALIAS",
	OnLoad = OnLoad,
	-- ...
}

you add a title and a description, like this:

return {
	alias = "MODALIAS",
	OnLoad = OnLoad,
	title = "Sample Mod",
	description = "Look at me, i'm description.",
	-- ...
}

 

Link to comment
Share on other sites

11 minutes ago, RageLeague said:

I trust you, because we had that conversation before.

Anyway, at the bottom, usually you have something like this:


return {
	alias = "MODALIAS",
	OnLoad = OnLoad,
	-- ...
}

you add a title and a description, like this:


return {
	alias = "MODALIAS",
	OnLoad = OnLoad,
	title = "Sample Mod",
	description = "Look at me, i'm description.",
	-- ...
}

 

thank you. and also very sorry if my inability to remember legitimately bothers you.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

Please be aware that the content of this thread may be outdated and no longer applicable.

×
  • Create New...