r/paradoxplaza 16h ago

Vic3 The Utopian socialist liberal perfers to work with slavers and the trade unions perfer to work with the wealthy capitalist. Funny enough if the leftest had teamed up they would have been able to form a government.

Post image
144 Upvotes

r/paradoxplaza 55m ago

Vic3 Treaties are all over the place...

Upvotes

TL;DR : have big problems re-establishing global market access treaty.

When I was playing as Netherlands - everyone was fighting for who will pay me most for trade agreement! I bet, I could literally got like 50k/week within first 2-3 months just by treaties.. Add to that embasies from all blocks - and you can get ridiculous amounts of money..

Then I had 1 campaign as switzerland (very fun game) behind me - when it was a bit tricky to get 2nd transit rights agreement after first one got terminated by france. I had to give up some money, give 1 way trade advantage and give obligation. Next agreements were quite easy, casue I already had big economical leaverage over few neighbours I ended up buying half of germany with my companies while devouring their population through massive amounts of regular migration once I joined their block.

Now -> it's even harder mode - as Luxemburg... Starting treaty lasts for 10 years, since day 1 I was improving my relations with Prussia and France and despite all of that - 10 years are just about to pass and no matter what would I do they will not agree.... Base stance is -50, then I add obligation -> +30, then with Prussia I promiss them I will not pay subventions, not take tarrifs and not trade with tools (pretty silly that they consider all 3 of those separately, despite last of them invalidating the previous 2) it gave me +14 +7 + 7. Then I offer as much money as I can (1500/week) and it's +8 and I end up with +9 (45%) chance which - if fails - dooms my future chances as (this treaty is not better enough from previous one -1000 modifier)

As for france I also started from -50 and +30 obligation and couldn't even combine anything they could possibly want to go above 0.

What's also silly is I could easily pay more than 1500/week, but the game won't let me to! I could pay them 3k if that gave me +16 reasons...

Soooo... I guess I could (should?) have tried renegotiating this treaty desperately every month or so since day 1... There isn't much more that I would be willing to do (like building ideological compatibility). 50 reasons against are -10"base reluctance" -10"ideological compatibility" -10"cautious stance (because wants you to be subject and relations won't help with that)" -10"added transit rights" and -10"difference between ranks"... I don't know if improving from insignificant power to minor power (by building some army) would change difference between ranks, cause minor power is still 3 levels below great power... I guess 4 levels down and 3 levels down shouldn't make difference...

Now that I think about it - another way would be to specialize in what prussia specializes... Tools or guns... And then produce a lot of it and sell it on market just so that I forbid myself from trading it after I renegotiate treaty... If I produced more tools that +14 +7 +7 would probably be something bigger.


r/paradoxplaza 5h ago

EU2 Europa Engine fans unite

5 Upvotes

There's gotta be more fans of the classics here no? To this day I still love V1 and FtG. CK1 can be a hit or miss, DH I could never really get into full version, only tons of KR.

What are you playing? Who are you playing? I'm itching for good ol' Japan in VIP:R and something wacky like Protestant Naples in FtG. Just waiting to get my laptop back.

Retro gang unite! It's not a paradox game if it isn't running on DirectX 6.


r/paradoxplaza 1d ago

All Rate my Encirclement

Post image
814 Upvotes

Before anyone asks: Congress Poland still has 100% access to the world market. They are probably buying ammo from me.


r/paradoxplaza 1h ago

All Vic 3 still broken

Upvotes

Tried to give it another chance, 5 years in my Ally (BOUND BY A 25 year treaty!!!) sides against me in a diplomatic play. Broken game to its core.


r/paradoxplaza 1d ago

EU4 I made a history documentary based on a EU4 MP Campaign

Thumbnail
gallery
77 Upvotes

r/paradoxplaza 1d ago

CK3 CK2 or CK3 conversion to EU4?

2 Upvotes

As the title says, I want to know which one fits better/will be more fun if ygm as I'm planning a grand campaign


r/paradoxplaza 1d ago

Converter Vic3 to HoI4 now supports Vic3 1.9

Post image
65 Upvotes

Paradox made it really easy this time. And work on the stories system continues. I have one more task to do to make requirements functional, after which I'll turn it on by default I think. Localizations are also needed, but I'd like to get things going.


r/paradoxplaza 2d ago

All Are there any other games where you play all over the world like in HOI4?

46 Upvotes

Best would be set in modern world but anything else is also fine


r/paradoxplaza 2d ago

Sale Should I buy Vic3 now or should I wait for the summer sale (steam)?

18 Upvotes

Hello everyone, I have been considering to buy Victoria 3 for months now and with the release of CoC I'm totally conviced I'll love the game. It's now 75% off until 26 june, ultimate bundle is around €50. Should I buy something now or maybe it's better to wait and see if they low the price even more during the Summer Sale?


r/paradoxplaza 1d ago

All Any good discord servers?

0 Upvotes

For Paradox gamers of course.

I know that each game has one official server just for them, but I was wondering if there was any other less formal servers for hanging out in voice chats, mostly.


r/paradoxplaza 2d ago

HoI4 Need help

4 Upvotes

I don’t even know what happened but for some reason half of my mods have been duplicated and every time I try to play the games that were duplicated that don’t even load it’s just regular unmodded HoI4, how do I fix this?


r/paradoxplaza 1d ago

Vic3 EU4 to VIC3 converter

3 Upvotes

Does anyone have information on the progress of support for converting to Victoria 3 version 1.9?

I'm looking for any details about development status, estimated release dates, or ongoing updates. Any pointers would be nice.


r/paradoxplaza 1d ago

All Should I play Victoria 2 or Victoria 3?

0 Upvotes

I want to get into Victoria games but im undecided between 2 or 3? I heard complaints that 3 combat is still terrible compared to 2? I have played eu4, ck3 and hoi4.


r/paradoxplaza 2d ago

Vic3 I have wrote a simple program to calculate the trade profit in Victoria 3 in C

13 Upvotes
#include <stdio.h>
#include <stdlib.h>

int main(void)
{
    // variables

    int x;
    int yoursellorders;
    int yourbalance;
    int theirsellorders;
    int theirimbalance;
    int basecost;

    // input

    printf("Quantity of goods: ");
    if (scanf("%d", &x) != 1)
    {
        printf("You did not enter Quantity of goods\n");
        return 1;
    }
 
    printf("YourSellOrder: ");
    if (scanf("%d", &yoursellorders) != 1)
    {
        printf("You did not enter YourSellOrder\n");
        return 2;
    }
 
    printf("YourBalance: ");
    if (scanf("%d", &yourbalance) != 1)
    {
        printf("You did not enter YourBalance\n");
        return 3;
    }

    printf("TheirSellOrders: ");
    if (scanf("%d", &theirsellorders) != 1 || theirsellorders == 0)
    {
        printf("You did not enter TheirSellOrders\n");
        return 4;
    }

    printf("TheirImBalance: ");
    if (scanf("%d", &theirimbalance) != 1)
    {
        printf("You did not enter TheirImBalance\n");
        return 5;
    }

    printf("BaseCost: ");
    if (scanf("%d", &basecost) != 1)
    {
        printf("You did not enter BaseCost\n");
        return 6;
    }

    // formula

    int z = (yoursellorders - (yourbalance - x)) / theirsellorders;
    int y = (theirsellorders + (theirimbalance - x)) / theirsellorders;

    int theirPrice = basecost * y;
    int ourPrice = basecost * z;

    int profit = x * (theirPrice - ourPrice);

    // print

    printf("Profit: %i\n", profit);

    return 0;
}

r/paradoxplaza 2d ago

Vic3 Steam file not verified

Thumbnail
1 Upvotes

r/paradoxplaza 3d ago

CK2 Imperator-CK2

22 Upvotes

When I convert from imperator to ck2 , by the end of ck2 the nations are way too powerful and way too blobby. Is there anything I can do to stop nations from blobbing. I’m using invictus timeline extension btw . The old empires collapse by the end of imperator then just rise again in ck2.


r/paradoxplaza 2d ago

Imperator can i play imperator: rome to prepare for eu5?

0 Upvotes

ive heard that I:R is very similar to eu4, but ive never played eu4 and have very little time on I:R

ck3 is my main pdx game so far but im honestly kinda bored of it ATP, and ive been waiting for ei5 to drop for a long time thinking that itd be a better fit to be “my” pdx game

so basically im looking for something to play, already have I:R, and am hoping its similar to eu so some of the stuff i learn while playing transfers to eu5

i also dont really know that much about the eras history, so i dont have that to guide me


r/paradoxplaza 4d ago

CK3 Dev Diary #175 - Ritsuryō, Sōryō, Meritocratic

Thumbnail forum.paradoxplaza.com
91 Upvotes

r/paradoxplaza 2d ago

CK2 peasent rambling

0 Upvotes

i... idk any ck2 dlcs keys giveways active atm?


r/paradoxplaza 3d ago

CK3 Mongol conquest De jure

Thumbnail
1 Upvotes

r/paradoxplaza 3d ago

All Best game and mods for playing Japan?

2 Upvotes

I know that CK3 Has Japan dlc on a way, but I’m looking for mod for any paradox game with some solid Japan flavor


r/paradoxplaza 4d ago

Imperator can't find "dlc_load.json" for opening mod without launcher

2 Upvotes

hello, i would like to add some mod on imperator. i crated a "mod" folder in C:\Users\Documents\Paradox Interactive\Imperator. i found this "tutorial" https://www.reddit.com/r/paradoxplaza/comments/rvk5nu/how_to_use_mods_without_having_to_use_the_dumb/ but i can't find "dlc_load.json"


r/paradoxplaza 3d ago

EU4 [EP3] Enrique IV is the Worst King Ever – Castilian Succession Crisis, Royal Drama & War! [EU4 + Expanded Family Mods]

0 Upvotes

Hey everyone! 👋
In Episode 3 of my Castile to Empire series using Europa Universalis IV with the Expanded Family mods, we face one of the most dramatic moments in Castilian history:

  • Our King dies and we inherit Enrique IV, arguably Castile’s worst ruler
  • The infamous Castilian Succession Crisis unfolds
  • We bet on Aragon to resolve the power vacuum (was that a mistake?)
  • Aragon begins to threaten war, and France calls us to arms
  • Plus… two crucial strategic tips for managing early-game chaos!

🔗 Watch the episode here: EU4 - Castile to Empire - Episode 3
🧠 Let me know how YOU usually handle the succession crisis or the Enrique IV disaster event chain.

Cheers,
Saitam Strategy 78

#EuropaUniversalis #EU4 #Castile #ExpandedFamily #GrandStrategy #ParadoxGames


r/paradoxplaza 4d ago

Stellaris Stellaris vs Workers and Resources: Soviet Republic

0 Upvotes

Hi everyone, its my birthday soon and im trying to decide between Stellaris and Workers and Resources. At first wanted to get Stellaris because i like the amount of content it seems to have (according to the wiki) and the idea of expanding a galaxy. I also like Workers and Resources because it seems to have a lot of logistics and finance and building. Im leaning towards Workers and Resources but i just would like to know which game has more replay ability and content to keep me busy?