88 comments
Avatar Placeholder
Dethroner
Got version 13.2.2 and the mods I like, works perfectly but can't figure out how to play online though
Avatar Placeholder
AceShadow8
I really wanted to play multiplayer with my dad. We both have the games downloaded from this website. But i cant setup up the multiplayer for the life of me. I tried many setups (Hamachi, Goldberg LAN, online fix), but i couldnt get any of them to work. It never finds any servers... If anyone can give me detailed instructions that works, I would apreciate greatly. Thanks in advance!
Hide Replies 1
Avatar Placeholder
LOADOUTA
Hey< sorry for the delayed answer. Maybe try to use online-fix.me and download the online crack, it should work, hope you can enjoy it <3
Avatar Placeholder
ChirpyMothh
Does this have the Kickstarter hand?
Avatar Placeholder
Gamer1234
No multiplayer
Avatar
Anuar Kamar
I got a Question how too change the user name (this Download).
Its Says Doge
Avatar
Shinobi gak punya jalan
is this include all the dlcs?
Avatar
Fengren
For those who ask for multiplayer, just use Goldberg Emulator. Figure it out yourself via its readme file.
Hide Replies 4
Avatar
AG Milan
hold up, isnt goldberg only for lan? you need friends for that shit
Hide Replies 3
Avatar
Fengren
Using a tunnel network like Hamachi or RadminVPN will work
Hide Replies 2
Avatar Placeholder
Genji Shimada
Could you help me? I tried to run it using Goldberg but my friend cant find me using lobbyconnect
Hide Replies 1
Avatar
Fengren
it can take from 5 seconds to 15 minutes to find each other in the Join screen. It tends to depend on the ISP of the both of you. Worst case, you will never be able to play
1
Avatar
Ruben Dawagne
Update please!
Avatar
fogs extreme
How to play multiplayer?
Hide Replies 1
Avatar
DubstepLover7000 Gamer
can you play multiplayer?
Avatar
Nikita Höfer
is it playable with friends over Hamachi?? thx
Hide Replies 1
Avatar
DubstepLover7000 Gamer
can you play multiplayer??
Avatar
Someonenameguy
A simple question:
Does this work with multiplayer?(ie. Connecting to someone else with the real version.)
If it works is there any need steps to do it?
Hide Replies 2
Avatar
kami sama
nah u cant mate, u cant play with those who has bought the game, all i know is u just can only play crack with crack, same as phasmophobia
Hide Replies 1
Avatar
Someonenameguy
thanks for to reply.
I just give up and got the game on steam. [very long ago]
Avatar Placeholder
ManMo
I got the script from this page https://github.com/xonrsoftware/SteamBrowserModDownloader
just follow the instructions ;-)
Hide Replies 4
Avatar Placeholder
Wolfman
I did what you said but it doesn't work like where should the download button appear and if it has to replace the subscribe button then it doesn't. :T
Hide Replies 3
Avatar Placeholder
ManMo
The download button should appear below the subscribe button, it doesn't replace it, you have to refresh the page for it to appear, sometimes 2 to 3 times, hope it works for you.
Hide Replies 2
Avatar Placeholder
Wolfman
Yup it does. Thanks.
Hide Replies 1
Avatar Placeholder
ManMo
you're welcome
Avatar Placeholder
ManMo
First, you have to enable the script in Tampermonkey, then refresh the Steam webpage, thus the download button will appear.
Avatar Placeholder
ManMo
Please update, and thank you in advance!
Avatar
sosio 57
where is the direct connection mode in the game
Avatar
Amadeo Martínez Sánchez
There is no way of playing with friends with this version? I tried SmartSteamEmu and Hamachi, neither works.
Hide Replies 1
Avatar Placeholder
donald trump
same here, i tried to change its steam appid to run it as spacewar on steam, but did not work at all. really dont know how to play this crack with friends
Avatar
FoxWarIce
how to play in vr?
Hide Replies 1
Avatar
Amadeo Martínez Sánchez
create a shortcut for the executable, go to properties, add -vr to the end of the target line.
Avatar Placeholder
brenden
update please 12.3.5 current version download 12.3.3
Avatar Placeholder
Momo
Wanna play table games multiplayer with a bunch of people? Encountering
any issues during the installation. Wanna any mods? Join this discord server: http://discord.gg/seKcAfp
Avatar Placeholder
CoolHunter
How do I add a mod from downloaded from http://SteamWorkshop.download it was downloaded as a file
Hide Replies 5
Avatar Placeholder
ManMo
Install Tampermonkey add-on on your internet browser, copy this script into it:

// ==UserScript==
// @name Download Mod From Its Steam Page
// @version 1.1.2
// @author НИНРИ (https://discord.gg/PSTM5gh)
// @match https://steamcommunity.com/sharedfiles/filedetails/*
// @updateURL https://github.com/xonrsoftware/SteamBrowserModDownloader/raw/master/script.user.js
// @downloadURL https://github.com/xonrsoftware/SteamBrowserModDownloader/raw/master/script.user.js
// @grant GM.xmlHttpRequest
// @grant GM_addStyle
// @require https://github.com/xonrsoftware/SteamBrowserModDownloader/raw/master/libs/bson.bundle.js
// @require https://github.com/xonrsoftware/SteamBrowserModDownloader/raw/master/libs/buffer.js
// ==/UserScript==
let modDownloaderLinkObject = undefined;
let modDownloaderLinkUrl = undefined;
const preventRepeatOfRequests = false;
function downloadObjectAsJson(data, filename) {
if (typeof data === "object") {
data = JSON.stringify(data, null, 2)
}
var blob = new Blob([data], {
encoding: "UTF-8",
type: 'text/json;charset=UTF-8'
});
if (modDownloaderLinkObject === undefined)
modDownloaderLinkObject = document.createElement('a');
http://modDownloaderLinkObject.download = filename;
modDownloaderLinkObject.href = window.URL.createObjectURL(blob);
modDownloaderLinkObject.dataset.downloadurl = ['text/json', http://modDownloaderLinkObject.download, modDownloaderLinkObject.href].join(':');
modDownloaderLinkObject.dispatchEvent(new MouseEvent("click", {
bubbles: true,
cancelable: false
}));
}
function getCookie(name) {
let matches = document.cookie.match(new RegExp(
"(?:^|; )" + name.replace(/([.$?|{}()[]\/+^])/g, '\$1') + "=([^;])"
));
return matches ? decodeURIComponent(matches[1]) : undefined;
}
function downloadMod(appid, workshopid) {
document.getElementById('downloadModButton').style.display = "none";
if (preventRepeatOfRequests) {
if (modDownloaderLinkObject !== undefined) {
modDownloaderLinkObject.dispatchEvent(new MouseEvent("click", {
bubbles: true,
cancelable: false
}));
document.getElementById('downloadModButton').style.display = "";
return;
} else if (modDownloaderLinkUrl !== undefined) {
window.location.href = steamObject["response"]["publishedfiledetails"][0]["file_url"];
document.getElementById('downloadModButton').style.display = "";
return;
}
}
GM.xmlHttpRequest({
method: "POST",
url: "https://api.steampowered.com/ISteamRemoteStorage/GetPublishedFileDetails/v1/",
data: "itemcount=1&publishedfileids[0]=" + workshopid,
headers: {
"Content-Type": "application/x-www-form-urlencoded"
},
onload: function (response) {
let steamObject = JSON.parse(response.responseText);
modDownloaderLinkUrl = steamObject["response"]["publishedfiledetails"][0]["file_url"];
if (appid == "286160") {
GM.xmlHttpRequest({
method: "GET",
responseType: "arraybuffer",
url: steamObject["response"]["publishedfiledetails"][0]["file_url"],
onload: function (response) {
let BufferVar = new buffer.Buffer(this.response);
downloadObjectAsJson(JSON.parse(JSON.stringify(BSON.deserialize(BufferVar)), (k, v) => {
return (v === null) ? undefined : v
}), workshopid + ".json");
document.getElementById('downloadModButton').style.display = "";
}
});
} else {
window.location.href = steamObject["response"]["publishedfiledetails"][0]["file_url"];
document.getElementById('downloadModButton').style.display = "";
}
}
});
}
let modDownloaderAppId = undefined;
let modDownloaderWorkshopId = (new URLSearchParams((new URL(window.location.href)).search)).get("id");
window.addEventListener('load', function () {
modDownloaderAppId = document.getElementsByClassName('apphub_OtherSiteInfo')[0].getElementsByTagName('a')[0].dataset.appid;
let lang = "en";
let flashvars;
if (rgCommonFlashVars) {
if (rgCommonFlashVars["clientLanguage"] !== undefined && rgCommonFlashVars["clientLanguage"] == "russian") lang = "ru";
} else {
let steamCountry;
if (steamCountry = getCookie("steamCountry")) {
if (steamCountry.substring(0, 2) == "RU") lang = "ru";
}
}
let zNode = document.createElement('div');
zNode.innerHTML = ${((lang == "ru") ? "Скачать" : "Download")};
zNode.setAttribute('id', 'downloadModButtonContainer');
document.getElementsByClassName('game_area_purchase_game')[0].appendChild(zNode);
document.getElementById("downloadModButton").addEventListener(
"click", ButtonClickAction, false
);
function ButtonClickAction(zEvent) {
downloadMod(modDownloaderAppId, modDownloaderWorkshopId);
}
}, false);
GM_addStyle(#downloadModButtonContainer { width: 100%; height: 36px; display: inline-block; } #downloadModButton { position: absolute; right: 0; bottom: 0; margin-right: 16px; margin-bottom: 16px; });
-------------------------------------------------------------------------------------------------------------You should be able to download mods directly from steam, copy your downloaded mod to Tabletop.Simulator.v12.3\Tabletop Simulator_Data\Mods\Workshop
Hide Replies 4
Avatar Placeholder
Eddie
Instead of copy and pasting this, go to https://raw.githubusercontent.com/xonrsoftware/SteamBrowserModDownloader/master/script.user.js and copy that script into tamper monkey.
What does it mean when it says A userscript wants to access a cross-origin resource.?
When I click download, it doesn't prompt download. It tells me Uncaught Error: buffer length 155409 must === bson size 256
Avatar
Neil Wieczoreck
I've had tamper monkey for a long time i use it to watch youtube without any ad's and it works great i had no idea you can do this with tamper monkey this is awesome!!! Thank you so much! Now does it work just with this game or any game in steam???
Hide Replies 1
Avatar Placeholder
ManMo
This script works only on TTS, maybe there are other scripts for other games.
Avatar Placeholder
CoolHunter
Aight thanks. Will try it
Avatar
RAVUS eSports
How to play this game online and with steam workshop things?
Hide Replies 2
Avatar
Mana Flare
With Hamachi, Direct Connection
Hide Replies 1
Avatar
Amadeo Martínez Sánchez
Can you elaborate that? I'm trying to connect with Hamachi but it doesn't work
Avatar
Sir Dshimshi
I understand playing multiplayer is problematic with the current uploaded version (12.2) using hamachi, is that true?
If so, anyone has suggestions on how to play cracked with friends?
(plz)
Avatar
Random Nerd
How to use steamwork fix for multiplayer?
Avatar Placeholder
Luub
Please update to 1.13.1
Avatar
tiziano broeckaert
how do i start it up in vr?
Hide Replies 1
Avatar
Robin588
create a shortcut for the executable, go to properties, add -vr to the end of the target line.
Avatar
samuel jesensky
where to change name ?
Hide Replies 1
Avatar
Robin588
Tabletop Simulator_Data\Plugins\valve.ini
Avatar Placeholder
Muto
You need help setting up the game, want to play it multiplayer?(It's an online only game ofc you wanna play multiplayer) want mods?
Join this Discord:https://discord.gg/seKcAfp
Hide Replies 1
Avatar
Sir Dshimshi
link has expired :(
Avatar Placeholder
ツByakugan
how i crack?
Hide Replies 3
Avatar
xan8
its already cracked, use hamachi and direct conection on the game to be able to play it multiplayer online
Hide Replies 2
Avatar
ShadowExtreme
is it possible to play online in this new versions? they removed direct connect
Hide Replies 1
Avatar
xan8
i was only able to play using direct connect
Avatar Placeholder
ツByakugan
can i play online with my friends?
Hide Replies 1
Avatar
xan8
yes, via hamachi with direct conection
Avatar
Josuke Higashikata
is there a torrent available?
Hide Replies 1
Avatar
ITN “IN THE NEWS WWE” ITN
How you put the mod in the game,please ?
Avatar Placeholder
Under Gamer
i can't play anything because of the 12.0.3 update, which is the latest one, is there a way that i can update my game for free?
Hide Replies 1
Avatar
xan8
you can still play, just create a server and your friends will be able to connect via hamachi with direct conection through the game
Avatar
Anhony Vasquez
Update
Avatar Placeholder
Victor Ramos
Can i play online?If yes how?
Hide Replies 4
Avatar
xan8
open the game
create a server
connect with your friends via hamachi
your friends can use direct connect on the game, they just have to put your hamachi ip
i dont remember if it work just with your hamachi ipv4, but if dont.. then they can put ipv4:ipv6 ex: 127.0.0.1:12345 (as an ip on direct connect in the game)

Hide Replies 3
Avatar
hehahaha888
but 12.2 dont have direct connect how to play with firend
Hide Replies 2
Avatar
xan8
ooh sorry, yeah this one is the version 12
search for the release version 4.0.2 or something (around 2015-2016)
past versions do have the direct connect and it works via hamachi
Hide Replies 1
Avatar
Dyson Smith
Do you have that version? If so, could you upload it to mega or gdrive and share it?
Avatar
Feden Mordor
Can i download DLC only, because i bought the game?
Hide Replies 1
Avatar
GameEater
if you could just download dlc why would there be dlc in store in the first place.
Avatar
Emanuel Rigão
Where is the torrent?
Avatar
Anon
Well we can't downlaod workshop items even from workshopdownloader websites .. so this is pretty much useless for lots of people :(
Avatar Placeholder
Red
how to download workshop items?
Avatar
Nate Cotton
does not work anymore because requires steam. if there is a solution to this please help me.
Hide Replies 1
Avatar
sharkers 21
You need to apply the crack
Avatar
Ubick
Question, just in case: Genre tags puts it in VR - is that optional, or required? Don't see it in the system Req's, but it wouldn't be the first time something busted the ol' razzle-dazzle out on me via laziness/ignorance.
Hide Replies 1
Avatar Placeholder
Under Gamer
optional, you can play with your mouse if you want to
Avatar
Luc Depraeter
i started with a cracked version but later i bought tabletop simulator. Definately worth it. Wait for the sales, it's on sale very often.
Hide Replies 1
Avatar
Cpl2Bi MM
no LAN anymore = no buy
Avatar Placeholder
panda
torrent link pls
Avatar
Mighty~0~Thanos
to Moderators:
Take this one down since the Pillars of Eternity LotER 10.3 version has all the DLC
included with this one. See my comment in that game about a fix for a missing DLC
Avatar
Titousky Walker
I was able to lauch it one time, but now it keep crashing on startup, I tried reinstalling, and with no internet connection, but not working, any idea?
Avatar
rakokarp
How can i play with my friend using hamachi (or tunngle) ? Edit: Ok i know now u must get SmartSteamEmu.
Avatar
bird191
how do i make this work with my steam account so i can access workshop on steam and play with other people? as if i actually bought it?
Avatar
Nicolas le Vannais
Tabletop simulator is a sandbox with more 12.000 free games in the steam workshop - boardgames, cardgames, wargames,.. and more (miniatures games, rpg maps,....). Kronos hunter is the last dlc (a official boardgame but not free)
Avatar
xEppyx
Definitely not a tabletop game based off of Chrono Cross / Chrono Trigger. Only similar art.. similar plot... similar name..
Ah nevermind.. I can't keep this up. (this isn't a bad thing though..)