Search the Community
Showing results for tags 'publish'.
Found 5 results
-
Whenever I attempt to login to the workbench I get "Identity Authentication Failed - Error Code=404" With an error response which appears to have a "token" property? Not sure if this is a separate token pertaining to BI itself, or if this is "my" token. Could be a problem where property name "accessToken" != "token"... IDK I validated the email / password were correct. Attempted login multiple times. Even restarted the workbench a few times to see if the classic restart would fix it. Anyone else run into this problem? Any fixes?
- 2 replies
-
- login
- access token
-
(and 2 more)
Tagged with:
-
Hi, Yesterday I tried to publish my mission to workshop but I couldn't do that because my space "bar" was red. It says that I need more space, but even if I delete 10 old missions and gain more MB free, space requirement gets higher so bar is still red.. I'm playing arma for a while now (1500 hours +) and I never saw anything like that anywhere.. if you know solution, please help me
-
Sync - Discover, Publish and Synchronize Mods - Public Beta release
sickboy posted a topic in ARMA 3 - GENERAL
Welcome to Sync withSIX. The new Discovery, Publish and Synchronize Mods platform by withSIX. After a long and hard time with SIX Updater and Play withSIX, we decided to take a new approach to the problem, leading to a much more streamlined, stable and well performing result. Posts Introduction Focus on our core features, going open source and becoming 'lean' Find & Follow Us Changelog withSIX Community Forums | | | | Background Vision Simple Small Fast Reliable (as in stable and predictable results) Flexible (as in easily support new use cases, and games) Open (as in OpenSource and Public APIs) Built with web-technologies (so we can be fast and simplify and unify our architecture across devices/clients) Features Download, Install and Updates Mods and Collections [uses Delta patching to keep updates small] - Directly from the website! Simple playlist design to quickly and easily manage the content you wish to play Launch your game vanilla, or with mods or collections. Publish Collections with optional Custom Repository content and Servers to have your users directly join Projects Sync BETA (Source) - Background software to facilitate the functionality that a browser can't. Also includes a small UI to give you access to your recent and installed content, and settings. In case you are offline. SyncUI ALPHA - (Source) - Don't like to use your browser or the mini-UI that Sync provides? Use this all-in-one solution. SyncAPI.JS - (Source) - Want to build your own frontend with e.g NodeJS, Electron, or even a website? You can! withSIX.com Frontend - (Source) - The withSIX.com web experience SyncAPI.C# - (Source: TBA) - Want to build your own frontend with e.g Microsoft .NET, Mono, WPF/WinForms/WinRT? You can! withSIX-docs - (Source) Roadmap Sync STABLE releaseStabilize Finalize functionality Finalize and optimize the design/styling Evaluate the desire for an integrated Server Browser (knowing that we are currently limited to auto-provide the list of required mods due to limitations in the Steam Query protocol) Improved support for Mod Authors Improved support for Custom Repository hosters. Publish the rest of our source code. Evaluate SyncUI and the unification with Sync itself.- 42 replies
-
- 3
-
Need help on publishing campaign to steam workshop
panicsferd posted a topic in ARMA 3 - QUESTIONS & ANSWERS
I could really use some help on how to upload my campaign to the steam workshop and I am kind of new to having it work as an addon, before I would just upload the campaign pbo to armaholic/dropbox and then just extract it to the arma 3 campaigns folder. My Mod folders structure is below: Main Mod Folder: @Revenge Inside @Revenge: Addons mod.cpp Inside Addons: Revenge.pbo Inside Revenge.pbo: Images Missions description.ext Mod.cpp FIle: picture = "Revenge\Images\overview_ca.paa"; logo = "Revenge\Images\overview_ca.paa"; logoOver = Revenge\Images\overview_ca.paa"; tooltipOwned = "Revenge"; overview = "Follow the story of Lt. Sanders, who is as an ION contractor is hired to stop the insurgency in the Mediterranean."; hideName = 1; hidePicture = 0; name = "Revenge"; dir = "Revenge"; Description.ext class Campaign { name = "Revenge"; disableMP = 1; briefingName = "Revenge v0.1"; author="Panicsferd"; overviewText ="Follow the story of Lt. Sanders, who as an ION contractor is hired to stop the insurgency in the Mediterranean."; overviewPicture ="\Campaigns\Revenge\images\overview_ca.paa"; firstBattle = Beginning; class MissionDefault { lives = -1; lost = ; end1 = ; end2 = ; end3 = ; end4 = ; end5 = ; end6 = ; }; class Beginning { name = "The Beginning" cutscene =; firstMission = R01; end1 = ; end2 = ; end3 = ; end4 = ; end5 = ; end6 = ; lost = ; class R01: MissionDefault { briefingName = "Opening"; author = "Panicsferd"; overviewText = "a group of ION contractors have been sent to Stratis, on a mission to aid their new employers."; overviewPicture = "\Campaigns\Revenge\images\R01_ca.paa"; end1 = R02; lost = R01; template = R01.Stratis; }; class R02: MissionDefault { briefingName = "Leaving"; author = "Panicsferd"; overviewText = "After being briefed on the mission, the ION group is now leaving Stratis for Altis."; overviewPicture = "\Campaigns\Revenge\images\R02_ca.paa"; end1 = R03; lost = R02; template = R02.Stratis; }; class R03: MissionDefault { briefingName = "Contact"; author = "Panicsferd"; overviewText = "An AAF convoy has been attacked; the ION group is tasked mid-flight to aid them."; overviewPicture = "\Campaigns\Revenge\images\R03_ca.paa"; end1 = ; lost = R03; template = R03.Altis; }; }; }; Thanks again and I would really appreciate the help. -
Publishing campaign on steam workshop
panicsferd posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
I am trying to figure out how to upload a campaign to the steam workshop, so far I think I got the structure setup to be like the following: I have the main mod folder @Revenge and inside that folder I have the Addons folder along with the mod.cpp file. Inside the Addons folder is my campaigns PBO which has the missions/images and the description.ext, and the config.cpp. With this setup, it does seem like it is loading correctly because I can see it in the addon list. But for some reason, it does not show at all in the campaigns menu. Mod.cpp FIle: picture = "Revenge\Images\overview_ca.paa"; logo = "Revenge\Images\overview_ca.paa"; logoOver = Revenge\Images\overview_ca.paa"; tooltipOwned = "Revenge"; overview = "Follow the story of Lt. Sanders, who is as an ION contractor is hired to stop the insurgency in the Mediterranean."; hideName = 1; hidePicture = 0; name = "Revenge"; dir = "Revenge"; Description.ext class Campaign { name = "Revenge"; disableMP = 1; briefingName = "Revenge v0.1"; author="Panicsferd"; overviewText ="Follow the story of Lt. Sanders, who as an ION contractor is hired to stop the insurgency in the Mediterranean."; overviewPicture ="\Campaigns\Revenge\images\overview_ca.paa"; firstBattle = Beginning; class MissionDefault { lives = -1; lost = ; end1 = ; end2 = ; end3 = ; end4 = ; end5 = ; end6 = ; }; class Beginning { name = "The Beginning" cutscene =; firstMission = R01; end1 = ; end2 = ; end3 = ; end4 = ; end5 = ; end6 = ; lost = ; class R01: MissionDefault { briefingName = "Opening"; author = "Panicsferd"; overviewText = "a group of ION contractors have been sent to Stratis, on a mission to aid their new employers."; overviewPicture = "\Campaigns\Revenge\images\R01_ca.paa"; end1 = R02; lost = R01; template = R01.Stratis; }; class R02: MissionDefault { briefingName = "Leaving"; author = "Panicsferd"; overviewText = "After being briefed on the mission, the ION group is now leaving Stratis for Altis."; overviewPicture = "\Campaigns\Revenge\images\R02_ca.paa"; end1 = R03; lost = R02; template = R02.Stratis; }; class R03: MissionDefault { briefingName = "Contact"; author = "Panicsferd"; overviewText = "An AAF convoy has been attacked; the ION group is tasked mid-flight to aid them."; overviewPicture = "\Campaigns\Revenge\images\R03_ca.paa"; end1 = ; lost = R03; template = R03.Altis; }; }; }; Config.cpp class CfgMissions { class Campaigns { class Revenge { directory = "Revenge"; }; }; }; I would really appreciate the help, I am kind of new to this since before with my campaigns I would normally just upload the file to dropbox/armaholic where all you would need was to extract/place the campaigns pbo file in the arma 3 "Campaigns" folder.