Mods are now organized as resources. Use the Mods link above to browse for or submit a mod, tool, or prefab.
The TFP Official Modding Forum Policy establishes the rules and guidelines for mod creators and mod users.
thank you very muchHaven't had much time to update my mods yet so made sure they just work for now. APIs will be extended later on to return both IDs where applicable.
Same here but I really don't use it, I just happened to notice it yesterday when I was goofing around.Just started renting my server again and setup Alloc's fixes and noticed that I cannot view player inventories on the webmap. Curious if anyone else is experienced this. The most current version is being used also.
Are you getting any errors? Mine seemed to run up fine, but Haven't had a chance to actually connect to server as a player.when update for A20 B231 ?
site have problem with claims and inventory to show up properly only this. i hope you fix it as fast as possibleAre you getting any errors? Mine seemed to run up fine, but Haven't had a chance to actually connect to server as a player.
It may not need an update for this version jump.
Hello Sir. Been using you fixes for years. On 20 any link I find to the 20 version the links seem to be dead. where may I find the best link to it if it's available. . I still have your POWERSHELL installer some where.Of course it will be at least maintained (hopefully extended somewhat). At some point most of it will probably move to the core game, with just minor parts staying as a mod to show how to do some stuff in mods.
function TimeTitle (gametime) {
var daynames = ["", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Bloodday"];
var dayOfWeek = DayOfWeek (gametime.days);
var result = "";
// Show days til blood moon:
result += (10 - dayOfWeek) + " days til blood moon\n";
// Show day of week (number):
result += "Day of week: " + dayOfWeek + "\n";
// Show day of week (name):
//result += daynames[dayOfWeek];
return result;
}