This Mod expend [THIS ONE] so all you need to do is using the function to add your mods into the list.
Here is a sample:
if UpdateThisMod then
UpdateThisMod:Add({
mod_id = 'Update This Mod',
data = {
modworkshop_id = 19117
}
})
end
and add your modworkshop_id into mod.txt
"updates" :
[
{
"identifier" : 19117
}
]
or you can define where to get those info
if UpdateThisMod then
UpdateThisMod:Add({
mod_id = 'Spawn More and Faster',
data = {
modworkshop_id = 20649,
dl_url = 'https://drnewbie.github.io/BigParty/Spawn%20More%20and%20Faster.zip',
info_url = 'https://drnewbie.github.io/BigParty/Spawn%20More%20and%20Faster/mod.txt'
}
})
end