Advertisement
ReverendV92

SteamCMD Workshop Upload Template

Dec 5th, 2019
719
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.12 KB | None | 0 0
  1. // The SteamCMD download & information can be found on the Valve Developer Community article
  2. // https://developer.valvesoftware.com/wiki/SteamCMD
  3.  
  4. // Remember to save it with the .VDF file extension
  5. "workshopitem"
  6. {
  7.     // App-ID of the game (i.e. 4000 for Garry's Mod)
  8.     "appid" "4000"
  9.     // Workshop ID of the file (i.e. 1234 for an existing file, or 0 for a new one)
  10.     "publishedfileid" "0"
  11.     // File to send. GMod uses .GMA files, but you'd need to change it for your specific game.
  12.     "contentfolder" "C:\workshop\addon-name.gma"
  13.     // Preview icon. Best when a 512x512 .JPG
  14.     "previewfile" "C:\workshop\addon-icon.jpg"
  15.     // Privacy setting; 0 is public, 1 is friends only, 2 is private.
  16.     "visibility" "2"
  17.     // Name that will appear in the default name on the web UI
  18.     "title" "My Add-On Name"
  19.     // Description that will appear in the default name on the web UI
  20.     "description" "My Add-On Description"
  21.     // Change notes that will appear in the default name on the web UI
  22.     "changenote" "Initial Version"
  23. }
  24.  
  25. // SteamCMD string:
  26. // c:\steamCMD\steamcmd.exe +login my-login-name my-password +workshop_build_item C:\workshop\addon-name.vdf +quit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement