-
Posts
17.954 -
Joined
-
Last visited
-
Days Won
578
Everything posted by Stan`
-
Here are the list of all the Config values I could find in the C++; Note tinygettext.debug is in that list https://trac.wildfiregames.com/ticket/6333#ticket but not in default.cfg Don't think you can. Copy pasting from a text editor will work though. In general you should use user.cfg /** * Namespace priorities: * - Command line args override everything * - User supersedes HWDetect (let the user try crashing his system). * - HWDetect supersedes mods & default -> mods can mod hwdetect itself. * - SYSTEM is used for local.cfg and is basically for setting custom defaults. */ enum EConfigNamespace { CFG_DEFAULT, CFG_MOD, CFG_SYSTEM, CFG_HWDETECT, CFG_USER, CFG_COMMAND, CFG_LAST }; void CONFIG_Init(const CmdLineArgs& args) { TIMER(L"CONFIG_Init"); CConfigDB::Initialise(); // Load the global, default config file g_ConfigDB.SetConfigFile(CFG_DEFAULT, L"config/default.cfg"); g_ConfigDB.Reload(CFG_DEFAULT); // 216ms // Try loading the local system config file (which doesn't exist by // default) - this is designed as a way of letting developers edit the // system config without accidentally committing their changes back to SVN. g_ConfigDB.SetConfigFile(CFG_SYSTEM, L"config/local.cfg"); g_ConfigDB.Reload(CFG_SYSTEM); g_ConfigDB.SetConfigFile(CFG_USER, L"config/user.cfg"); g_ConfigDB.Reload(CFG_USER); g_ConfigDB.SetConfigFile(CFG_MOD, L"config/mod.cfg"); // No point in reloading mod.cfg here - we haven't mounted mods yet ProcessCommandLineArgs(args); // Collect information from system.cfg, the profile file, // and any command-line overrides to fill in the globals. LoadGlobals(); // 64ms } As you can see, user.cfg is loaded after local.cfg overwriting all the changes. The dev.cfg file is used to detect a development copy. From a quick glance it has two usages 1) Allow developpers to save maps in the current mod rather than in the user mod 2) Allow to use the long string locale in the game to test if the text fits everywhere.
-
Oh nice I hadn't heard of Catilini
-
Game fails to launch - Assertion failed: "!m_Worker"
Stan` replied to MrBrightSide's topic in Help & Feedback
Hey there do you have any mods installed? Does it work if you use the PPA instead ? -
@wraitii, @Freagarach any ideas ?
-
Petra having problems with fishing on maps with water available
Stan` replied to Purgator_'s topic in Bug reports
Nah it's not linked to seagulls but with @Freagarach and @Angen' changes -
Perhaps. I don't really have a good way to put it forward though.
-
I believe that's what loot was designed for.
-
Hey there you need to disable all mods.
-
You use classes to define how B and A differ. The Tree C has an aura
-
Not really. The only part that can be is the stuff on docs.wildfiregames.com
-
Addition of Han Chinese to 0AD
Stan` replied to Yekaterina's topic in Game Development & Technical Discussion
Currently it isn't. What you see there are a bunch of planes with a texture. -
Yeah I might open the forum to everyone. It was an experiment to make balancing more open than doing it in a forum PM but still keep control on the spam and the dicussions. But it seems that it didn't have the results we hoped as we didn't merge much of the test mods...
-
It's possible in theory to reduce vision range using an aura Here are a list of things than can be affected by techs aura. It's missing the Damage tags in some places and needs to be updated. https://trac.wildfiregames.com/wiki/TechModifications
-
The problem is not really the origin IP. Sure if you could find the DDOSer's IP address you could try to block him, but he might change his IP and start again. As long as he has your new IP, which he can now only get if he joins a match with you, he can DDOS you.
-
I've asked @user1. I sadly don't have much visibility over the lobby so I might not have much information to give you.
-
Sometimes I feel like calling it free to play seems to imply there is something to pay anyway :P, maybe the lag is the price.
-
zoom.min = 50.0 Is what you are interested in. Zoom max is dezooming not zooming in. https://github.com/0ad/0ad/blob/master/binaries/data/config/default.cfg#L565
-
Yeah https://www.moddb.com/mods/hyrule-conquest is a mod with a lot of fancy features: - Knockback - Stun - Amphibious units - Civ Specific UI - Batalions - Stealth And a few other features. Sadly we still haven't been able to port it to A24, and it's still not working for A25.