Jump to content

Recommended Posts

Hi, I create these 2 mods but it's not appear withCharacter tag, so it can't be searched when user tick "Character" and search

https://steamcommunity.com/sharedfiles/filedetails/?id=2173076879
https://steamcommunity.com/sharedfiles/filedetails/?id=2167941553

I thought that putting these lines in modinfo.lua will do, but it doesn't..

server_filter_tags = {
"character",
}

Anything I missed? My modinfo.lua is

name = "Akechi Goro"
description = ""
author = "Satana Charuwichitratana"
version = "1.0.0"
forumthread = ""
api_version = 10
dst_compatible = true
dont_starve_compatible = false
reign_of_giants_compatible = false
shipwrecked_compatible = false
all_clients_require_mod = true 
icon_atlas = "modicon.xml"
icon = "modicon.tex"
server_filter_tags = {
"character",
}
configuration_options =
{
    {
        name = "reloadkey",
        label = "Reload Key",
        hover = "Reload the SIG-Sauer P230",
        options =
        {
            {description="C", data = 99},
            {description="R", data = 114},
            {description="X", data = 120},
            {description="Z", data = 122},
        },
        default = 114,
    },
}

 

My stupid mistake.. It's not in modinfo.lua. Just in case someone miss it like me. The tag can be added using ModUploader in the Mod Detail section. 

Edited by Mick Satana
8 hours ago, Mick Satana said:

I thought that putting these lines in modinfo.lua will do, but it doesn't..


server_filter_tags = {
"character",
}

 

My stupid mistake.. It's not in modinfo.lua. Just in case someone miss it like me. The tag can be added using ModUploader in the Mod Detail section. 

Yup, the mod uploader tool handles the workshop tags, these tags you put in modinfo will show up on the in-game server browser to let you find servers with specific tags.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • Create New...