TUXDB - LINUX GAMING AGGREGATE
by NuSuey
NEWSFEED
▪️ GAMES
▪️ STEAM DECK ▪️ DEALS ▪️ CROWDFUNDING ▪️ COMMUNITY
tuxdb.com logo
Support tuxDB on Patreon
Currently supported by 9 awesome people!

🌟 Special thanks to our amazing supporters:


✨ $10 Tier: [Geeks Love Detail]
🌈 $5 Tier: [Arch Toasty][Benedikt][David Martínez Martí]

Steam ImageSteam ImageSteam ImageSteam ImageSteam ImageSteam Image
Update v13.1 Native File Browser, Cloud Manager, Rewind Time & More!

Update v13.1 Native File Browser, Cloud Manager & Rewind Time Improvements, Optimizations, and much more!


This patch we wanted to focus on bug fixing, optimizations, and working through the feedback the community has provided for us on our new feedback website: https://tabletopsimulator.nolt.io/roadmap We have found the feedback website to be instrumental in helping us work on the most important features and the fixes you guys would like to see, and we will continue to use this for our future updates. Since going live we have implemented 96 suggestions left by the community on nolt! If you have any feedback of suggestions of your own you can head on over to https://tabletopsimulator.nolt.io/

Native File Browser



  • Added a native file browser as an alternative to the built-in one. (your OS file browser)
  • The native file browser supports selecting multiple files where applicable.
  • VR still uses the built-in file browser to ensure interaction still works.
  • Added console command `file_browser_native` and also added it to the misc settings menu.

Cloud Manager Improvements


  • Cloud Management should overall work much better and be less frustrating to use. https://tabletopsimulator.nolt.io/52
  • Cloud manager can now upload multiple files at once using the new native file browser.
  • Fixed cloud manager reseting to the root path every time you upload or delete something.
  • Fixed cloud manager folders not showing up until you open the cloud manager one more time. https://tabletopsimulator.nolt.io/310

Rewind Time Improvements



  • Rewind and fast-forward has been revamped with better controls and more information. https://tabletopsimulator.nolt.io/393
  • Can now rewind time in multiple steps with the new time slider.
  • Can now see the number of time steps in each direction.
  • Rewind states now are only being created if something has changed since the last rewind state.
  • Rewind now works for promoted players instead of just the host.

General


  • Updated Unity to 2019.4.23 for bug and stability improvements.
  • Added support for multiple auto save files. The default is now 3 and can be changed in the console and misc settings. https://tabletopsimulator.nolt.io/582
  • Broadcast message now appear at the top to better match up with the sliding out animation and fades out smoother. https://tabletopsimulator.nolt.io/448
  • Renamed save file "Expand" to "Search" to better reflect what it does.
  • Added Custom Music to the save file "Search" to make it easier to bring over music from one save to another.
  • Added Music to Workshop asset tags.
  • Added "chat_input_clear_on_dismiss" console property. May be set to OFF to allow clicking away from the chat input field without losing partially written chat messages.
  • Rotation values now store their data as strings instead of objects in the save file.
  • Added EpochTime to save files.
  • Changed misc option / console command "keyboard_single_digit_draw" to "keyboard_single_digit_by_default" - it is now used whenever you type on any component (e.g. when changing component states). If enabled you can still type higher numbers by starting with a `0`. https://tabletopsimulator.nolt.io/187
  • Added "end_turn" command. https://tabletopsimulator.nolt.io/130
  • Grouping individual cards will now give the formed deck any tags which *all* the cards share. https://tabletopsimulator.nolt.io/657

Optimizations


  • Greatly reduced the lock up when spawning lots of objects, such as when loading a save file.
  • Reduced ram usage by about ~100 MB thanks to shader stripping.
  • Save/Workshop file "Search" is now much faster with less chance of a hard lock up.
  • Optimized network serialization to generate less garbage and cause less stutters.
  • Optimized under the hood cloning code.
  • Save file info now caches significantly faster (Less waiting when opening the Games menu).
  • Reduced network bandwidth for impact sounds.

Lua


  • Added previous turn color player as second param for onPlayerTurn event.
  • Added Object.getZones() that returns all the zones that the object is interacting with. https://tabletopsimulator.nolt.io/219
  • Added onObject(Enter/Leave)Zone that works on all zones instead of just scripting zones. https://tabletopsimulator.nolt.io/85
  • Added support for all zones with getObjects(). https://tabletopsimulator.nolt.io/613
  • Added UI.loading bool to see if the UI is still loading on this Object.
  • Added lua object.getJson(bool indented) to disable indenting.
  • Added (Global) tryObjectRotate(object, spin, flip, player_color, old_spin, old_flip). spin & flip values [0, 360] degrees.
  • Added (Object) tryRotate(spin, flip, player_color, old_spin, old_flip).
  • Added (Universal) onObjectRotate(object, spin, flip, player_color, old_spin, old_flip).
  • Added (Object) onRotate(spin, flip, player_color, old_spin, old_flip).
  • Added (Universal) onPlayerPing(player, position). https://tabletopsimulator.nolt.io/28
  • Added (LayoutZone) `object.LayoutZone.getOptions()`, `.setOptions({options table})`, `.layout()`
  • Added (LayoutZone) `onGroupSort(table group, bool reversed)` and `onZoneGroupSort(object zone, table group, bool reversed)` lua events: return table in desired sorted order, or false to allow default zone behaviour. If present they take precedence over the selected sort in the zone options.
  • Ensured LuaWebRequest's text no longer raises a null reference exception when no downloadHandler is set.
  • Object.getData() now correctly omits null value keys.
  • Fixed being able to addAttachment with the Table bricking the game. https://tabletopsimulator.nolt.io/413
  • Fixed being unable to lua object.deal() to index hands greater than 1. https://tabletopsimulator.nolt.io/400
  • Fixed issue with on[Enter/Leave]ScriptingZone was firing multiple times in a row. https://tabletopsimulator.nolt.io/176
  • Fixed Book setHighlight()/clearHighlight() bug. https://tabletopsimulator.nolt.io/270
  • Fixed minor bug whereby RPCLookAt was using the yaw after validating the pitch (instead of validating the yaw).
  • Fixed lua Player.getAvailableColors() can have repeats. https://tabletopsimulator.nolt.io/536
  • Fixed issue with tryObjectEnter/tryObjectEnterContainer only firing for the first object dropped in a bag. https://tabletopsimulator.nolt.io/150
  • Fixed tryObjectEnter/tryObjectEnterContainer not being passed the object entering when the container was a stack. https://tabletopsimulator.nolt.io/477
  • Fixed data/JSON round-tripping i.e. spawnObjectData({data=JSON.decode(JSON.encode(container.getData()))}).
  • Fixed Lua core mishandling of nil table inserts i.e. table.insert(tab, 1, nil).

Lua Player Action APIs


An API that fires when a user performs an action. You may return false to prevent the action. As opposed to onObject* events, actions are fired once per user action, rather than once per object affected. Added (Universal) onPlayerAction(player, action, targets). targets is a list of Objects and action will be one of:
  • Player.Action.Select
  • Player.Action.PickUp
  • Player.Action.RotateIncrementalLeft (Q)
  • Player.Action.RotateIncrementalRight (E)
  • Player.Action.RotateOver (Alt + F, whilst held)
  • Player.Action.FlipIncrementalLeft (Alt + Q, whilst held)
  • Player.Action.FlipIncrementalRight (Alt + E, whilst held)
  • Player.Action.FlipOver (F)
Player.Action is not a table, but you may still do:
  • for name, value in pairs(Player.Action) do
  • log(Player.Action)
Nolt Links:

Lua Value and Value Flags


  • Value now persisted in ObjectState.
  • Summing of Value now takes into consideration stacks. https://tabletopsimulator.nolt.io/12
  • Objects with differing Value or ValueFlags are no longer stackable.
  • Selected objects will now have their `value` summed according to their tags.
  • value_flags will continue to work like before, but are now deprecated in favor of object tags.

Fixes



[ 2021-04-08 21:07:28 CET ] [ Original post ]

Tabletop Simulator
Berserk Games Developer
Berserk Games Publisher
2015-06-05 Release
Game News Posts: 110
🎹🖱️Keyboard + Mouse
🎮 Full Controller Support
Overwhelmingly Positive (40214 reviews)
The Game includes VR Support
Oculus: 1
SteamVR: 1
Room width requirement: 2
Room depth requirement: 1.5
Standing: 1
Seated: 1
Public Linux Depots:
  • Tabletop Simulator Linux [3.6 G]
Available DLCs:
  • Tabletop Simulator - Superfight
  • Tabletop Simulator - Cosmic Encounter Connector
  • Tabletop Simulator - Euphoria
  • Tabletop Simulator - Mistfall
  • Tabletop Simulator - Darkest Night
  • Tabletop Simulator - Tiny Epic Galaxies
  • Tabletop Simulator - Battle For Souls
  • Tabletop Simulator - Scythe
  • Tabletop Simulator - RARRR!!
  • Tabletop Simulator - Tiny Epic Kingdoms
  • Tabletop Simulator - In the Name of Odin
  • Tabletop Simulator - Indonesia
  • Tabletop Simulator - Scuttle!
  • Tabletop Simulator - Warfighter
  • Tabletop Simulator - Spirits of the Rice Paddy
  • Tabletop Simulator - The Captain Is Dead
  • Tabletop Simulator - Zombicide
  • Tabletop Simulator - Mr. Game!
  • Tabletop Simulator - Simurgh
  • Tabletop Simulator - Wizard's Academy
  • Tabletop Simulator - Three Cheers For Master
  • Tabletop Simulator - Viticulture
  • Tabletop Simulator - Tiny Epic Defenders
  • Tabletop Simulator - Darkrock Ventures
  • Tabletop Simulator - Tiny Epic Western
  • Tabletop Simulator - Xia: Legends of a Drift System
  • Tabletop Simulator - Abraca...What?
  • Tabletop Simulator - Khronos Hunter
  • Tabletop Simulator - Cavern Tavern
  • Tabletop Simulator - Three Kingdoms Redux
  • Tabletop Simulator - The Red Dragon Inn: Battle For Greyport
  • Tabletop Simulator - The Great Dinosaur Rush
  • Tabletop Simulator - Pillars of Eternity: Lords of the Eastern Reach
  • Tabletop Simulator - Draco Magi
  • Tabletop Simulator - Tortuga 1667
  • Tabletop Simulator - Tiny Epic Quest
  • Tabletop Simulator - Deck Quest
  • Tabletop Simulator - Blood Rage
  • Tabletop Simulator - Boss Monster
  • Tabletop Simulator - Unearth
  • Tabletop Simulator - Wingspan
  • Tabletop Simulator - Dungeon Drop
  • Tabletop Simulator - Dawn of the Zeds
  • Tabletop Simulator - Down in Flames: Locked-On
  • Tabletop Simulator - Mistborn: House War
  • Tabletop Simulator - One Night Ultimate Werewolf
  • Tabletop Simulator - Bristol 1350
Create your own original games, import custom assets, automate games with scripting, set up complete RPG dungeons, manipulate the physics, create hinges & joints, and of course flip the table when you are losing the game. All with an easy to use system integrated with Steam Workshop. You can do anything you want in Tabletop Simulator. The possibilities are endless!

Endless Games


Tabletop Simulator has it all. The base game includes 15 classics like Chess, Poker, Jigsaw Puzzles, Dominoes, and Mahjong. Additionally, there are thousands of community created content on the Workshop. If you’re the tabletop gaming type, we include an RPG Kit which has tilesets & furniture, as well as animated figurines that you can set up and battle with your friends, with even more options in the Chest. There’s even an option for Game Masters so they can control the table!

Create Games


If you’re into creativity and prototyping, you can easily create your own games by importing images onto custom boards & tables, create custom decks, import 3D models, create scripts, and much more. You can choose to upload your creations on the Steam Workshop or share them privately with your friends.

Fun For All Ages


Everyone can play Tabletop Simulator! Play a classic board game with grandma, have poker night with the guys, or start your epic RPG adventure with your crew. Play almost any tabletop game you can think of! Being a multiplayer-focused game, up to 10 players can play at any given time.

DLCs


Our downloadable content (DLCs) are different from other games, as we partner with developers and publishers to bring their games into Tabletop Simulator. Each DLC is custom created with high quality assets and special themes that match their games. And best of all, only the host needs to own the DLC for everyone at the table to play.



Key Features:

  • Online sandbox with unlimited games to play how you want.
  • Multiplayer physics with objects that collide and interact just how you would expect.
  • Create your own mods easily with full Steam Workshop support and 3D model importing.
  • Take games to the next level with Lua scripting support.
  • Play just like you do in real life; pick up, rotate, shake, and throw any object.
  • Up to 10 people can play together on the same table.
  • Team system with voice and text chat.
  • Save & load individual objects and complete games.
  • Hotseat allows you to play locally on the same computer with your friends.
  • Browse the internet, listen to music, and watch videos in multiplayer, in-game on a tablet.
  • Perfect for RPGs - build your very own roleplaying dungeons with our modular tileset, RPG Kit, Multiple States and Tablet (useful for character sheets).
  • Great admin tools to enable or disable player permissions and to eliminate griefing in public games.
  • 360° panoramic backgrounds that change the lighting and atmosphere.
  • Included games: Backgammon, Cards, Chess, Checkers, Chinese Checkers, Custom Board, Dice, Dominoes, Go, Jigsaw Puzzles, Mahjong, Pachisi, Piecepack, Poker, Reversi, RPG Kit, Sandbox, Solitaire, and Tablet.

MINIMAL SETUP
  • OS: Ubuntu 16.04+
  • Processor: SSE2 instruction set support.Memory: 4 GB RAM
  • Memory: 4 GB RAM
  • Graphics: Graphics card with shader model 4.0 capabilities.Network: Broadband Internet connection
  • Storage: 3 GB available space
GAMEBILLET

[ 6089 ]

1.24$ (79%)
2.47$ (17%)
0.90$ (82%)
4.24$ (15%)
16.79$ (16%)
17.59$ (12%)
24.74$ (1%)
2.48$ (81%)
21.19$ (15%)
26.67$ (56%)
2.30$ (92%)
12.13$ (80%)
16.99$ (15%)
15.19$ (62%)
13.19$ (12%)
8.25$ (17%)
12.89$ (14%)
5.21$ (13%)
13.39$ (67%)
31.59$ (21%)
9.59$ (52%)
25.49$ (15%)
4.15$ (79%)
24.00$ (60%)
21.03$ (65%)
0.85$ (83%)
24.59$ (18%)
2.00$ (90%)
7.50$ (50%)
5.77$ (17%)
GAMERSGATE

[ 3241 ]

3.0$ (80%)
6.0$ (60%)
2.0$ (80%)
5.28$ (74%)
4.25$ (79%)
0.85$ (83%)
0.88$ (82%)
4.65$ (53%)
5.22$ (65%)
5.0$ (90%)
7.49$ (63%)
9.99$ (50%)
0.75$ (85%)
10.03$ (67%)
3.83$ (74%)
3.83$ (74%)
1.72$ (89%)
4.95$ (67%)
5.0$ (50%)
5.1$ (66%)
7.5$ (50%)
0.87$ (56%)
15.99$ (20%)
0.68$ (77%)
2.0$ (90%)
11.99$ (40%)
4.5$ (85%)
18.89$ (37%)
3.0$ (90%)
12.0$ (70%)

FANATICAL BUNDLES

Time left:

7 days, 12 hours, 12 minutes


Time left:

13 days, 12 hours, 12 minutes


Time left:

10 days, 12 hours, 12 minutes


Time left:

10 days, 12 hours, 12 minutes


Time left:

10 days, 12 hours, 12 minutes


Time left:

10 days, 12 hours, 12 minutes


Time left:

10 days, 12 hours, 12 minutes


Time left:

10 days, 12 hours, 12 minutes


Time left:

10 days, 12 hours, 12 minutes


Time left:

10 days, 12 hours, 12 minutes


Time left:

10 days, 12 hours, 12 minutes


Time left:

10 days, 12 hours, 12 minutes


Time left:

10 days, 12 hours, 12 minutes


Time left:

10 days, 12 hours, 12 minutes


Time left:

10 days, 12 hours, 12 minutes


Time left:

35 days, 12 hours, 12 minutes


Time left:

15 days, 12 hours, 12 minutes


Time left:

7 days, 12 hours, 12 minutes


Time left:

42 days, 12 hours, 12 minutes


Time left:

31 days, 12 hours, 12 minutes


Time left:

28 days, 12 hours, 12 minutes


Time left:

36 days, 12 hours, 12 minutes


Time left:

38 days, 12 hours, 12 minutes


HUMBLE BUNDLES

Time left:

2 days, 6 hours, 12 minutes


Time left:

16 days, 6 hours, 12 minutes

by buying games/dlcs from affiliate links you are supporting tuxDB
🔴 LIVE