#modding

1 messages · Page 76 of 1

lofty plaza
#

But whatever suits you, I guess

wintry geode
#

how would you actually make a historical focus tree?

lofty plaza
#

Creating one focus at a time with a semi-consistent layout

#

Not having a jumbled mess of focuses that I add effects to then move around later

timber zenith
#

70 day focuses to hire a dude and build a bank aren't exactly fun either

#

says 30 but still

wintry geode
timber zenith
#

focuses don't have to be 30 days, they just have to feel like they're worth doing

wintry geode
#

should i make so they add some infrastructure and stability also?

#

+1 infrastructure to all neighboring states? (if owned)

#

making a fun focus tree sounds hard

timber zenith
#

probably the hardest part of making a tree is making it enjoyable

#

at least in my experience

#

a focus should always feel like it has an impact to your situation, wihout feeling overpowered

wintry geode
#

Im going to have to make the Swedish Spanish portuguese focuses 70 day focuses tbh

#

unless allot of cities/towns were created

#

those are good filler

#

at least some thing happened in prussia like the partions of poland 1st coalition war prussia antagonizing austria prussia purchasing ansbach and bayreuth agreems with france to have the rhine as their river

#

30 day focuses for Prussia seem reasonably possible

proven sable
#

You want "alt history" branches or the whole thing becomes pointless

#

Or at least the ability to do things in a different order

#

But it also can't be too complicated or it becomes overwhelming

#

Also if I'm honest making focus trees that go for many years or even decades really isn't practical. The game isn't built for it. Industry and tech scales ridiculously fast, you normally fill out every building slot in Just a couple of years.

stuck quarry
proven sable
#

After like 6 years the game starts to lag really badly too and front lines fill up with human goop

proven sable
#

The like 2 times I've played to 1948 in a multiplayer game we've ended up just agreeing that this is dumb and called it a draw so we could go to bed.

stuck quarry
#

imo start dates seems better, but it could work if most of the tree is hidden and older parts get hidden as youprogress or something, me and one of my friends is currently in the process of writing a alternate history universe thing for the world starting in the 1850s and spanning to the mid 2000s, we plan to adapt it into a hoi4 mod but like 200 years of a single focus tree would just get mental really fast, not to mention like yo said at one point everything is build and theres nothing to do except wait for focuses to finish and do war

proven sable
#

Also there's no AE mechanics so you can conquer the entire world in 6 years.

north wave
#

The country is created ( Similiar to Italian east africa )
but the issues here is

It has the wrong portrait for the leader tho the leader is correct and has the trait I created
The tag of the country appears but not the whole name
and the ideas I put them doesn't appear tho ( not in history file thorugh decision file)

proven sable
# stuck quarry Wdym AE?

In a game like EU4 if you conquer too much land all the people you've conquered get angry and rebel against you

stuck quarry
#

Ah

#

You could probably program that in yourself if absolutely required

#

In my abandoned mod i had a state integration/reclamation mechanic that had a chance at sparking a rebellion if it failed

proven sable
#

Yer but Hoi isn't build around 18th century siege warfare

#

It's about total war. It doesn't really even have mechanics for separate minor peace.

#

Ww1 was probably the first big war with a continuous front line rather than armies just roaming around wreaking havock.

stuck quarry
#

meanwhile players just send their troops on lone wolf missions lol

proven sable
#

It kinda used to exist back when you needed on map troops to deal with resistance, you'd have small cavalry divisions everywhere for that so if the enemy punched through there would be a small cavalry division in a city to defend it.

stuck quarry
#

Yea, ngl im pretty bad at the game so if my get sea invaded or something im usually screwed until i can reprganize my troops

bold grotto
#

anyone got a good modset for rt56 rp?

opaque abyss
#

How do I make a targeted decision that works on a state?

summer lotus
#

It will go to their industrial relocation decision

#

It is probably the most "complex" devs have done with a state decision in vanilla

#

Just read through it and you will understand what you need

opaque abyss
#
        every_owned_state = {
            limit = {
                NOT = { 
                    OR = {
                        is_core_of = ROOT
                        has_state_flag = currently_being_cored
                    }
                }
                is_core_of = GER
            }
            activate_targeted_decision = { target = THIS decision = GRP_integrate_state }
            activate_targeted_decision = { target = THIS decision = GRP_crush_valkist_cells }
            activate_targeted_decision = { target = THIS decision = GRP_ingratiate_government }
        }
    }```
#

I'm trying to figure out what's wrong with this effect

#

I just can't puzzle out exactly what the issue is

summer lotus
#

Ahh

opaque abyss
#

        available = {
            FROM = {
            is_fully_controlled_by = ROOT
            is_owned_by = ROOT
            }
        }

        visible = {
            FROM = {
                is_owned_by = ROOT
            }
        }

        cancel_trigger = {
            NOT = { has_full_control_of_state = FROM }
        }

        cost = 35
        days_remove = 75
        cancel_if_not_visible = yes
        on_map_mode = map_only
        state_target = yes```
#

This is what I have right now for one of the decisions

#

But I can't figure out why it won't appear

summer lotus
#

What does it say if you debug the game with this?

opaque abyss
#

I don't see anything referring to the decision or effect

#

But the decisions don't appear on the map

#

So i have no idea what the issue is

summer lotus
#

Send the whole file

#

Gonna take a look in like 5 min

summer lotus
#

@opaque abyss so which of them you can see and which you cannot?

opaque abyss
#

Can't see ANY of them

summer lotus
#

so decision category issue?

opaque abyss
#

Possibly?

summer lotus
#

idk KEKW

opaque abyss
#

They're only supposed to be on the map

#

But nothing is showing up

summer lotus
#

normally the decision file is like

#

decision_category = {
decision = {

#

if you can't see anything, they might not be assigned to a category yet

opaque abyss
#

It's in a Category

summer lotus
#

also

#

can't you just send the whole file

#

not just a section of it

opaque abyss
summer lotus
#

none of those decisions can appear since they are set to allowed = { always = no }, so they can only be activated from effect scope already, by GRP_check_states_to_integrate effect

#

but when I tried to search for GRP_check_states_to_integrate effect

#

I did not find any

opaque abyss
#

It's in here

summer lotus
#

that's only a scripted effect

you need to execute it from effect scope of a decision to activate the targeted decisions, no?

#

since you set it to allowed = { always = no }, you can never see them in the first place

opaque abyss
#

It's triggered from a focus

summer lotus
#

ah

opaque abyss
#

Focus is supposed to trigger GRP_check_states_to_integrate and that triggers the 3 decisions

#

But they don't seem to work

summer lotus
#

@opaque abyss load the game, do

eval_effect GRP_check_states_to_integrate = yes

if it doesn't work,

eval_effect ROOT = { every_owned_state = {
activate_targeted_decision = { target = THIS decision = GRP_integrate_state }
activate_targeted_decision = { target = THIS decision = GRP_crush_valkist_cells }
activate_targeted_decision = { target = THIS decision = GRP_ingratiate_government }
}

#

if you still doesn't work, replace all THIS with PREV

#

or is it FROM.FROM?

#

🤔

#

tbh it should be THIS

#

try also

#

click on a state

#

eval_effect activate_targeted_decision = { target = state_ID decision = GRP_integrate_state }

#

just breakdown the problem so you can find out which section is having the actual problem

opaque abyss
#

Hm

#

Nothing

opaque abyss
#

I found a solution

#

It's ugly as crap

#

But it works

fervent pecan
#

can someone help me mod my game with a mod in the 2000s

flat tinsel
#

What if people make mods that are the same with DLCs?

#

That means we dont have to pay for DLC

dreamy tundra
flat tinsel
#

?

dreamy tundra
#

Though I think paradox ain't gonna like that

flat tinsel
#

Wdym

dreamy tundra
#

So in cod bo3 zombies you had to pay for most maps to play them, but one guy recreated all the maps with the help of mods so that you don't have to pay

#

And simply could download from the workshop

#

As the same as the idea your proposing

flat tinsel
#

Oh ok

#

Im gonna search if there is any like the DLCs (FOR SCIENCE PURPOSE TOTALLY)

gleaming edge
tame hull
#

is there any way yo create your own unit model in blender and if yes in which programm

gleaming edge
#

Yes

#

In blender

wintry geode
#

How do i make this branch invisible in the 1800 scenario?

rose heath
# wintry geode

Italy has hidden pope focuses
perhaps you can use those as an example

#

there's also the hidden polish romanov path

obtuse condor
random robin
#

Anyone here played the HOI4 Monument Mythos mod?

restive wyvern
#

Does anyone know a map mod that won't break on Cold War Iron Curtain?

restive wyvern
random robin
green sentinel
#

Which is why most total conversions that have things like custom ship designers, spy upgrades, MtG naval OOBs, etc. have to add both DLC and non-DLC versions

flat tinsel
#

Ok i looked at the workshop and there is non

proven sable
flat tinsel
charred sparrow
#

anyone know a mod that could make EQ selling quicker to market?

silent swallow
#

So I don't believe that the dev of a mod (Pulchritudinious States: Beta) is active anymore and I want to use the map resources, can I do so with credit? (I tried to ask the dev)

magic bay
spice cradle
#

how do i increase the arms factory limit

summer lotus
#

go to defines.lua

#

wait

#

🤔

#

what limit

spice cradle
#

military factories

spice cradle
silent swallow
#

apparently the dev there is in the Hoi4 modding den

spice cradle
dull crystal
#

a leader i designed for my new mod

lofty plaza
#

Masterpiece

#

10/10

dull crystal
#

nikolai sheepsliak will be a great leader for the sheepsland state (it controls byelorussia)

summer lotus
#

👀

lofty plaza
#

Lord Rizzington of Westrizzlia?

spice cradle
#

I changed the factory limit in the germany state file but it still hasn't increased in game

dull crystal
#

oh yeah heres the flag also

lofty plaza
#

By the way, there is a technical limit on factories. There comes a point where if there is too many the game will crash

summer lotus
#

it kinda freezes after that (might just need NASA computer to run)

#

for the whole country idk

#

Never tested

lofty plaza
#

Something like that

#

Just gets too much for the game to calculate

tame hull
raw rampart
final tinsel
#

you need to change the limit number of factories

#

BOTH in history file and buildings file matter the number of factories

fluid compass
#

does hoi4 state editor by "djufkenzi" still work?

obtuse condor
#

why is it getting deleted and deleted?

vast helm
#

they refuse to remove a portion of it that breaks our EULA

#

I won't go further as they are aware of the reasoning

#

deleting that but a portion of it yes

obtuse condor
#

I saw many mods that have it

vast helm
#

if you see them send them in a ticket and I can take a look, but they have to hafve proof attached to it

obtuse condor
#

ok

#

but why did you delete the word

#

is it that people gonna try to get the mod

#

or

vast helm
#

we just dont discuss that topic in the discord, is apart of rule 2

obtuse condor
#

ah

#

ok

vast helm
#

dont want people to get riled up is all 🙂

obtuse condor
#

is it possible to remove the nato army designing stuff on black ice?

hallow shuttle
#

Borders of germany at game start in my mod

sour venture
#

Guys

#

has anyone here tried to do a Focus Queue mod?

#

or may it be impossible?

patent sail
gleaming edge
#

It still annoys me how the belorussian protestors use the flag without the emblem

#

Denying the poor horsey

lofty plaza
#

Rizz

wintry geode
#

RIZZLERS

wintry geode
#

Is it possible to make groups of different states?

#

how to make a subcontintent?

#

i wan to make a sub continent for the german states west of the elbe

echo pivot
#

hey by chance could anyone dm me the mod that lets me write letters to other players in multiplayer

rocky drift
#

quick question, is there any command or effect that adds time to a mission?

obtuse condor
#

do mods exist that simply change visuals of map, is it possible or is there another section for that (like in minecraft for visuals theres resource packs and modding is seperate)

#

i like simpler map design thats js 2d

lofty plaza
#

Don't remember where exactly

summer comet
#

No manpower as napoleonic france r56
My garrisons require too much and i cant go down veinot agreement

#

help?

nimble solar
#

Also I believe it should still be able to core algeria and such, idk why

stiff sorrel
#

are their anymods that remove focus trees and another one that lets nations justify without focus trees?

nimble solar
#

Then you can insta declare wars

stiff sorrel
#

is there a way for the other nations to declare wars?

nimble solar
#

Probably

#

Give a country a claim on another and they will probably justify a war

stiff sorrel
#

Got it lemmie test that. Thank you

quartz frost
#

hey guys, have any recommendation mod beside road to 56?

ashen mural
#

how can i remove the other 2?

wicked egret
#

Which modern day is better?

civic agate
daring timber
plucky crystal
#

how to make a idea and it allow to create fraction

hallow shuttle
# daring timber What happened to hungary

The mod is set around 1920, Austria-Hungary collapsed after signing an acceptable peace treaty with the British and Italians.

(Hungary lore is undecided but it will independent from Germany) Czechoslovakist, Polish and Communist uprisings destroy whats left of the Austrian Empire - The German Empire unites with the Austrian Empire and defeats the Czechoslovakist and Communist forces. Austria at the start of the mod is plagued by pro-austrian, communist and czech partizans

daring timber
#

I see

dreamy tundra
#

where can I find the Ewolf and Redbaron vanillia optimisation mods?

celest kraken
#

well i wont call it optimisation more like balance

#

theres quite some stuff which are no longer vanilla

hallow shuttle
hallow shuttle
left condor
#

i feel like making a mod where all core states are independent

#

it might be an unoriginal idea but i wanna learn how to mod

novel niche
#

Hey guys

#

How can I update a mod?

#

I have a old one for reskin

#

but cant update and the owner seem to have abandoned the mod

rose heath
#

this should delete them without causing errors

timber zenith
novel niche
wintry geode
#

Thoughts iyo?

fading quartz
#

anyone know any mods that add more national focuses and events? Mods like austria redone

fossil cradle
#

how do you make a prerequisite that you have to have certain number of divisions in a state?
there is a mod with that mechanic?

wicked gale
novel niche
timber zenith
novel niche
timber zenith
dry horizon
#

im having issues with mods being out of date, could somebody help?

#

im trying to download the state transfer tool but the one on steam when i download it is out of date

#

is there a way to downgrade my version or something to let the mods work?

timber zenith
dry horizon
#

like in the playset menu

#

theres a hazard sign saying its out of daye

timber zenith
#

have you tried launching the game anyway

dry horizon
#

yeah

#

it crashes 1/3 of the way in

timber zenith
#

what other mods are you using

dry horizon
#

holdon leme ss

timber zenith
#

it's beautiful states that mod hasn't been updated in 4 years

dry horizon
#

i can remove beautiful states i just wanted a more states mod

timber zenith
#

i'd recommend my states mod but i haven't updated that either lol

dry horizon
#

you know of one that adds more?

timber zenith
#

use pulchritudinous states

#

but that might be a lil too much

dry horizon
#

mm

#

any others?

timber zenith
#

satisfying states would be your best bet

dry horizon
#

okay then

dry horizon
timber zenith
#

yeah it does some other stuff

#

releasables

dry horizon
#

seems to change historical

#

idc tho

#

i wanted to play as france and make natural borders so i dont care that much

#

lol

timber zenith
#

nah thats valid

dry horizon
timber zenith
dry horizon
#

lmao

#

yeah base hoi4 states are poor at best

wintry geode
#

Whats wrong with the file?

#

I want to make every state which is owned by prussia that is a core of poland to be transfered to france

#

or poland

#

This better?

#

Oh god it works that means im set to do Scripted peace deals

small wigeon
#

Yeah sure what happened

#

(Sorry for late response)

timber zenith
#

it's not gonna break anything but still

frail arrow
#

heyyy

#

french people availible to play modded hoi4 now?

warped wing
#

@brisk dune update on the in the name of eiko situation, I have gotten the go-ahead from the mod team and have started making an English translation with a friend. I also talked to them about the images we decided could be underaged and they said I could replace them if I didn't feel comfortable. Thank you for telling me about this mod

royal quartz
#

bruh where is Wilhelm III gfx hiding in the files

#

i just want to make him germany's leader💀

hallow shuttle
#

Does anyone know how to add divisions to countries/provinces at game start?

royal quartz
hallow shuttle
#

whats that?

royal quartz
#

You know how when you go into a countries history file it says 'load OOB_1936" or something along those lines?

#

Those are just the divisions and their placement

hallow shuttle
#

thanks

wintry geode
#

was the government of genoa overthrown in 1797?

#

or was genoa invaded

hallow shuttle
#

Territory and claims of the Ukrainian Hetmanate in 1920 (at the start of my mod)

left condor
#

uhh

#

can someone please tell me why the flag of my custom nation isn't showing up?

left condor
#

i figured it out

left condor
#

i am getting bombarded with errors

stuck quarry
#

my most recent mod i worked on had like 20k errors typically but worked fine

somber orbit
#

Man, I am disappointed.

I thought that if you forced the "Alternate Hitler" events you could keep him for Germany, but it forces him out for a generic.

Now I want a dumbass mod whose whole premise is him trying to balance 4 nations while pretending to be other people.

You know how like in some cartoons you have a character trying to pretend to be 2-3 people at once and swapping out costumes on the fly.

We need a mod that blends Greece, Germany, Argentina and the US together as one thing with goofy ah political events

"The Adventures of Adam Hilt" or something

timber zenith
#

that sounds awesome

somber orbit
#

I can do all the event/focus writing if I can get team together. That'd be fun as hell

dull crystal
#

im trying to figure out what mod to make

#

i guess ill make a civil war era mod

somber orbit
#

1860 or 2020 KEKW

stuck quarry
#

lol

dull crystal
tired copper
#

anyone tell me how to make custom background for main menu, preferably a vid

hallow shuttle
warped wing
#

Are there any mods that removes the agency mechanics added in la resistance instead of just playing without that dlc

nimble solar
#

That is what I do unintentionally

warped wing
daring timber
#

I made an event where ai chooses to give land, but it doesn’t work

obtuse condor
#

Can an old version mod work with the latest hoi4 version?

modest wraith
#

can someone add more complicated navy?

timber zenith
timber zenith
daring timber
# timber zenith you'd have to be more specific than that

Theres a modded national focus which triggers an event to a nation. That nation has 2 options, either to give land or smth else. The AI chooses that function, which triggers an event to the player nation. But the states aren’t transfered

timber zenith
hallow shuttle
elfin pecan
#

I was playing as russia and accidentally became the crimean republic how tf do I go back

high hatch
obtuse condor
#

will hoi4 lag if I add road to 56 if I use a bad PC?

white flint
#

type debug into console

#

hover over russia

#

youll see their tag (like in vanilla frances tag is fra or uk is eng) and then go into console and tye tag and then russias tag

#

youll switch to them

#

just make sure to turn debug off tho after youve switched back

#

or things will get wacky

gritty stirrup
#

any good mods that focus on china/sea?

#

please im craving rich china gameplay

elfin pecan
#

Btw how can I attack before tensions reach 40% it doesn't rise

white flint
white flint
#

Let's you do any diplomatic action regardless of world tension

#

Just make sure to turn if off after u done cuz idk if ai can also use it

elfin pecan
#

Ah thanks

#

How do I open console though

heavy gull
#

hi

#

it says in error log that province 34000 is lacking a state, strategic region and continent

#

but uh

#

there kinda... is no province 34000

#

not in definition.csv

#

not even in the map?

#

it doesn't seem to crash the game though

timber zenith
heavy gull
#

nope

#

i tried creating province 34000 myself to see if that would fix it

#

but now province 34001 doesnt have a state, strategic region or state

heavy gull
timber zenith
heavy gull
#

oh wait

#

i launched it again

#

it created it now

timber zenith
#

does that folder contain a fixed definition file?

heavy gull
#

yes

#

i deleted that color from the map a while ago though?

timber zenith
#

if the game creates it, that means it's somewhere there

heavy gull
timber zenith
#

hopefully that should work

heavy gull
#

i did that quite a bit ago though?

timber zenith
#

ohh mb

#

i don't know what software you use but it might be worth searching for that colour's hex code in the image

heavy gull
#

the sound that the debug dog makes unsettles me

timber zenith
#

lol

heavy gull
#

i dont think you can do that in paint.net though

heavy gull
#

that one pixel i deleted was correct

#

just forgot to save the .bmp

timber zenith
#

ah yeah ive done that too

analog igloo
#

Can anyone teach me how to mod hoi4

obtuse condor
#

does anyone know where to find the portrait of Napoleon VI? I cant find it in the france leader portraits folder.

nimble solar
obtuse condor
orchid osprey
#

hi

#

working on an alternative-history mod

lofty plaza
#

Oh yes daddy Russia

stuck quarry
bright ocean
#

yoooo does someone want to create a mod with me?

obtuse condor
torpid orbit
#

whenever i rename China, Italy or Australia in the countries localisation file their names don't change in the game whereas any other nation renames perfectly. does anyone know why?

sand summit
obtuse condor
bright ocean
arctic isle
#

v

bright ocean
bright ocean
#

crusade mod would that be cool?

nimble solar
fair pike
main grail
#

Any good overhaul mods?

wintry geode
bright ocean
#

tried to create a new state and the game just crash and now i cant lunch the game

#

its just crash

wintry geode
#

Regarding researching for 1797-1805 USA

#

i have come to a stand still

#

is there anything else easy to research other than the 1790/1800s in usa wikipedia pages

#

companies founded then and cities founded then?

orchid osprey
#

any reccomendations on the national focus?

obtuse condor
#

Its kinda stupid tho to think about

orchid osprey
#

mutually_exclusive = { focus = UKR_approach_eastern }

#

why isnt it working

#

bruh

pseudo yacht
#

what is the best ww1 mod?

normal quest
#

I played Hoi4 for like 24 hours total

#

and I am trying to play millenium dawn

#

Shit , this is so cool

rose heath
#

I'm doing an actual Europe-Only mod
its main goal will be simulating vanilla hoi4 while running as fast as possible

I'll have to:
Define all 5300+ provinces on this image (Color, Terrain, Land/Water, etc), assign them to states, name the states, assign things to states (factories, population, victory points, cores, etc), fix all focuses that have anything to do with provinces or states (Every demand, Every targetted state development, Every Formable, Every misc stuff like assigning civil war terrain, etc), fix Ai because it has a lot of things related to specific provinces, and make a balanced way to simulate external countries like USA, Japan, and Ethiopia.

All of that, because i want to make casual vanilla multiplayer game more bearable when it comes to performance and desyncs. (Games will be faster, desync less, etc)

I actually tried making this map in a few different ways, but i think doing this by copy pasting the map like this would prove most effective
which also makes it so i probably should wait for the new DLC to avoid pointless work like working on Germany, only for it to be completely reworked

#

if i ever manage to finish it (given my consistency of finishing projects it is unlikely) i plan to make it open for other people to use for their mods

lofty plaza
#

That's a cool looking mod

stuck quarry
#

Does anyone know if i can change the weather using a effect?

#

i dont see anything in the wiki, but im not sure if i missed it or if its just not possible

#

but i wana set the world into a eternal winter using a effect

summer lotus
#

nah we don't enough support code for it

#

but you actually can apply it as an one time effect

#

though I never tried it

just province = { weather_name = yes }

#

but I might need to test whether it actually works

#

cuz they haven't used weather effect since 2017

timber zenith
#

I know that cause it was mostly me doing that part

#

so I wish you the best of luck

hidden leaf
#

The Collapse of Russia

#

This is a result of recent political turmoil

#

iirc ukraine collapses russia

stuck quarry
#

does replace path just not do anything for anyone sometime? i did replace path on common/bookmarks but the base game bookmarks still showed ingame

timber zenith
timber zenith
stuck quarry
#

Im an idiot

#

I forgot there was two smh

rose heath
timber zenith
wintry geode
#

Who else could have realistically taken power in 1799?

#

in franc

#

what would be a good althistory path another revolutionary other than napoleon

rose heath
#

well i mean
I guess i'll see

#

this mod would be really time consuming regardless

deft swan
#

Is there any mods that make the game simpler for new players (I'm stupid)

rose heath
#

i don't recommend it, you'll learn more playing the base game
but you can play Hearts of Minecraft since it's easier and simpler

obtuse condor
lucid stag
#

is anyone here good with ck3 mod loading orders

timber zenith
hidden leaf
wintry geode
#

will this section of the focus tree become available?

#

when it becomes 1800?

timber zenith
#

it would only be available if you selected a start date between 1800 and 1936

wintry geode
#

when what do i put there to make it available 1800 regardless of start date?

#

date > 1800.1.1?

timber zenith
#

you can set up an on_yearly on action to do that

#

wait that doesn't exist

#

you'd have to use on_monthly

wintry geode
#

i put mark focus tree layout as dirty

#

with the focus before the 1800 branch

timber zenith
wintry geode
#

i made it 1799 then instead

timber zenith
#

since the focus tree needs to be reloaded after the allow_branch trigger is met

#

ok

wintry geode
#

ah thanks it works

wintry geode
#

set_convoys = 10

#

do i just put this in focuses if i want to give convoys?

wintry geode
#

Ah just put this add_equipment_to_stockpile = {
type = convoy
amount = 100
producer = POL
}

wintry geode
#

are there any modifiers for civ and mil construction speed?

fossil cradle
#

What are the most common reasons for a game crashing when spawning a new country via event button?

lofty plaza
#

Look at the error log

hearty monolith
#

anyone knows any awsome sauce hoi4 mods that expand national focus trees?

fossil cradle
#

The error log doesnt specify

fossil cradle
# lofty plaza Look at the error log

[21:34:06][1007.08.14.11][effectbase.cpp:1707]: [21:34:07][1007.08.14.16][effectbase.cpp:1691]: 16:00, 14 August, 1007: Restricted Zone: event eaw_debug.1
[21:34:07][1007.08.14.16][effectbase.cpp:1707]: [21:34:07][1007.08.14.16][effectbase.cpp:1691]: 16:00, 14 August, 1007: Restricted Zone: event eaw_debug.1
[21:34:07][1007.08.14.16][effectbase.cpp:1707]: [21:34:07][1007.08.14.16][effectbase.cpp:1691]: 16:00, 14 August, 1007: Restricted Zone: event eaw_debug.1
[21:34:07][1007.08.14.16][effectbase.cpp:1707]: [21:34:07][1007.08.14.16][effectbase.cpp:1691]: 16:00, 14 August, 1007: Restricted Zone: event eaw_debug.1
[21:34:07][1007.08.14.16][effectbase.cpp:1707]: [21:34:07][1007.08.14.16][effectbase.cpp:1691]: 16:00, 14 August, 1007: Restricted Zone: event eaw_debug.1
[21:34:07][1007.08.14.16][effectbase.cpp:1707]: [21:34:07][1007.08.14.16][effectbase.cpp:1691]: 16:00, 14 August, 1007: ROOT: Restricted Zone on_government_change
[21:34:07][1007.08.14.16][effectbase.cpp:1707]: [21:34:07][1007.08.14.16][effectbase.cpp:1691]: 16:00, 14 August, 1007: ROOT: Restricted Zone on_ruling_party_change
[21:34:07][1007.08.14.16][effectbase.cpp:1707]:

#

the closest I got

#

from game.log

#

here is the history country file

vivid sapphire
#

anyone else on road to 56 seeing a bunch of countries w/o leaders?

#

pic related

#

happens to egypt and ethiopia too

wintry geode
#

how do i get early submarines with a focus?

pearl knot
#

Is there a custom scenarios mode

distant moat
#

I’m looking to recruit people to help me with a mod called Operation Tannenbaum, someone who can fix maps would be especially appreciated

lofty plaza
strong forge
#

vcem privet

#

@hardy garnet

hardy garnet
#

One message removed from a suspended account.

crimson dust
#

create_country_leader = {
name = "Fuco Gómez"
picture = GFX_portrait_Fuco_Gomez
expire = "1965.1.1"
ideology = marxism
}

create_country_leader = {
name = "Alfonso Daniel Castelao"
picture = GFX_portrait_Alfonso_Daniel_Castelao
expire = "1965.1.1"
ideology = liberalism
}

create_country_leader = {
name = "Vicente Martínez Risco"
picture = GFX_portrait_Vicente_Martinez_Risco
expire = "1965.1.1"
ideology = fascism_ideology
}

create_country_leader = {
name = "Santiago Casares Quiroga"
picture = GFX_portrait_Santiago_Casares_Quiroga
expire = "1965.1.1"
ideology = centrism
}

This would suggest that these guys have portraits? Do they have unique ones or generics?

obtuse condor
#

Does anyone know what modifiers can be used in combat tactics?

hoary quail
#

I need good optimization mods for an MP vanilla campaign

#

what do you guys have

patent thicket
#

can someone help me with where frames for scripted guis are defined in hoi4

#

am specifically looking for the frames of the chinese warlordism scripted gui

summer lotus
#

💀 oof, GFX is beyond me

patent thicket
#

i guess i'll go to reddit 💀

wintry geode
#

do i change the name in the descriptor if i want to change the name of my mod?

#

my mods name always reverts after i change it with steam

north wave
#

How do I mod Hearts of Iron IV? Hearts of Iron offers a unique sandbox experience which, with a little skill, you can adapt to include any scenario you could think of. Today we begin a series teaching you how to mod Hearts of Iron IV. This first video in the series covers how to get started modding Hearts of Iron IV. Stay tuned for part 2!

0:00...

▶ Play video
#

paradox is challening Iron workshop?

#

tbh its nice that hoi4 offical teaches you how to mod

obtuse condor
#

Is there a way to stop the polish peasent strike while making a mod? im not sure where to find it if its in on_actions or something.

devout saffron
#

Is there any program to help me mode?

#

Or o need to ugh learn how to code

ashen mural
#

how can i remove the 1939 one?

ashen mural
ashen mural
#

what do i need to chnage here?

#

theres only one startdate

south juniper
#

put replace_path="common/bookmarks" in the descriptor

wintry geode
#

what should the slavery state modifier do?

#

-xyz recruitable population?

#

some extra civ construction

tidal sphinx
#

someone should make a mod

#

where like

#

haiti

#

annexes poland

#

and defeats germany

#

that would be an epic timeline

hallow shuttle
#

does anyone know what this is called?

#

a state idea? a state modifier?

manic dagger
#

modifier i think

lofty plaza
patent thicket
#

how do multi frame images work when using them in custom guis?

hardy scaffold
#

Hi, how to speed up delivery time after buy some weapon from international market 10 times faster?

wintry geode
#

only 237 errors by 1810 not bad

#

anyone know what this wtt error means?

#

it is like 175 of the 237 errors

#

i have tried using the vsc tool search in all files but i couldnt find the problem

rose heath
#

the error is related to an event relating to china

wintry geode
wintry geode
#

ah it says 471

#

the democratic Ai sucks

#

why dont democratic countries take their cored states

#

its so frustrating

#

They just let pennsylvania be

sage wyvern
#

guys how can i add building slots in region?

proper acorn
#

change this

opal wyvern
#

hi guys

#

I am trying to make a mod for myself where I swap japan and uk

#

I made a provincemap for it

#

but when I try to load the game it just crashes

#

what else do I need to change?

#

also I exported it as a 32bit a8r8g8b8 image

#

in gimp

fair pike
#

open your province map in gimp, copy it into paint, save it there. lso look into the error log

opal wyvern
#

theres no error log

#

it didn't work

#

oh wait I just realized

#

I havent changed any of the other maps

#

I'm dumb

ashen mural
wintry geode
#

In 1797, Paul I of Russia and Gustav IV Adolf of Sweden signed the Treaty of Mittau, which established an alliance between the two nations. This treaty was motivated by a shared desire to counterbalance the influence of Napoleon Bonaparte and to protect their respective interests in the Baltic region.

#

Ah yes Napoleon Bonaparte in 1797

#

Chatgpt smoking crack rocks and black tar heroin

wintry geode
main grove
#

whats the funnest mod right now? when i last played it was kaiserriech

wintry geode
#

add_equipment_to_stockpile = {
type = infantry_weapons
amount = 5000
producer = USA
}

#

uh this didnt work

summer lotus
#

wrong equipment type

#

refer to common/units/equipment folder

buoyant isle
#

see how it says (Max States in Building Slot 20%) or whatever

fallow ibex
#

Greetings, when I click the debug dog it does not open up a txt file. My computer is messed up a little and did not come with notepad. How do I get the dog to open up a notepad++ or VS code file so I can read the errors

stuck quarry
#

Its pretty stupid but this is gonna be the icon for it lol

#

Its just gonna replace all the leader pictures with hitler

#

Everyone will be hitler

sage wyvern
obtuse condor
#

is dlc permanet if u buy it

stuck quarry
#

Yes?

#

Unless you got the dlc subscription then its $8 per month

ashen mural
#

i removed 2 start dtaes and added one but now it just skips over the selections screen and bugs the game

#

please help me

stuck quarry
ashen mural
stuck quarry
#

Thats normal

ashen mural
stuck quarry
#

The select date screen will only show if you have at minimum 2 start dates

stuck quarry
#

Unless you added another date and edited the interface file to hide the second one

ashen mural
#

alright

#

idk hwo but ima do that

obtuse condor
#

hello everyone i have a mod idea if any modder is interested please dm

granite vessel
#

any decent HOi4 WW1 Mods?

fair spear
#

I have a question if anyone can help. I know the basic concepts needed to mod ( i.e How to make a country, an extremely basic focus tree, or how to make an ideology) but I do not know all the syntax's that can be used and will help enable me to do better, is there any resources that can help me in showing me all of the syntax's possible?

whole marten
#

Does anyone know why when I load into a mod that I have a save in, it doesn't let me create an army?

nimble solar
steel elk
#

They won’t turn purple

timber zenith
#

the same folder that the graphical culture file is in

steel elk
timber zenith
steel elk
#

I found it

obtuse anvil
#

Asking for opinions, vertical (red) or horizontal dlcs placement in main menu

timber zenith
#

matches the socials on the other side

#

what a lovely menu screen tho

obtuse anvil
obtuse anvil
simple stratus
ancient vale
#

hai, I have a problem, I tried creating a new province in suriname for my mod (I've edited the province.bmp in my map folder in the mod with GIMP) and now my nudger crashes and gives me a whole bunch of errors with provinces that I haven't edited at all and even saying that provinces that doesn't exist don't have continents. I've used an unused RGB color, put it in definition.csv, added it to a state and strategicregion, I don't understand what's happenning, can someone help me?

#

the errors

#

the province I created is 13363

#

is it a problem with GIMP?

obtuse condor
#

there are too many large provinces

obtuse condor
ancient vale
#

just created 13363

#

in province.bmp

obtuse condor
#

Can you post a picture here? (province.bmp)

ancient vale
#

sure

obtuse condor
#

province .bmp not save gimp

ancient vale
#

but I have the option to export it in BMP on gimp

obtuse condor
#

Well, do you have 24 bit?

#

(option )

ancient vale
#

oh let me see

obtuse condor
#

i wait

ancient vale
obtuse condor
#

save

ancient vale
#

done

obtuse condor
#

now open and try

ancient vale
#

it crashed again

jade roost
#

do i have to exit out the game for national spirits to pop up

hardy narwhal
#

can someone help me make a custom country?

steep vault
#

Make

obtuse condor
#

also can I play The Great War Redux with rt56?

stuck quarry
#

Tho very basic understanding of program flow is helpful

coarse mason
#

is there any mod with axis vs allies

#

like the only 2 teams

#

are allies

#

and axis

agile cosmos
#

Is there mod that adds more cities to map? Especially Africa and asia

magic bay
wintry geode
#

Is this a good focus effect for a focus like this?

sacred ibex
#

I want to create a Hoi4 mod but when i click create mod in the launcher it just sais "username already exists" even tho i created countless mods before this is the first time this has ever happened (i also want to make clear that because this issue sounds like something with piracy i can asure you it isnt i bought a full copy of the game on steam)

ashen mural
#

eeeeerm, can anyone tell me what is wrong?

whole marten
fair spear
#

I have 0 clue why my script isn't working (I did take it from GPT but when adressing the issue it wouldn't work):
Testmod\localisation\english\test_decisions_l_english.yml:

    test_decision: "Test Decision"
    test_decision_desc: "This is a test decision that provides a boost to political power. It costs 10 political power and is available to democracies."```
Testmod\common\decisions\test_descision.txt
```decisions = {
    test_decision = {
        icon = GFX_decision_generic_focus
        available = {
            has_government = democracy
        }
        cost = 10
        complete_effect = {
            add_political_power = 50
        }
        ai_will_do = {
            factor = 1
        }
    }
}```
#

(No other files where made for this.)

abstract hawk
#

Yo

#

Does anyone here take mod or Submod requests?

#

Because I've got a few that I'd be very appreciative of if they were made

#

For the record most of them are for OWB

#

However

#

There is one that isn't

#

And all the OWB mods are somewhat minor

#

The other mod however

#

Would be a total overhaul

abstract hawk
#

Anyways

#

Uh

#

Would anyone be interested in hearing me out?

timber zenith
#

watch the tutorial by the iron workshop, or read up on the decisions wiki page

fair spear
#

Okay, thank you.

abstract hawk
#

So

#

Can someone please

#

Actually develop a WORKING FALLOUT PRE WAR MOD

#

I must have my Sink American war

tough quarry
#

can there be a mod for this?

narrow tendon
#

playing end of a new beginning as russia

#

i couldnt get my troops to border the qing in time

#

and thus don't have outer manchuria

#

anyway to fix this?

#

i'm pretty sure if i go to war with china i have to capitulate them to get anything done

ashen mural
#

please help me
why isnt germany displaying

weak marsh
ashen mural
weak marsh
#

noooo!!! the only thing that matters!!

opal wyvern
#

guys pls help me

#

I changed all of the maps in my mod folder to fit my mod (uk-japan switch)

#

but for somereason its still not working

obtuse condor
ashen mural
#

how can i change the background?

#

where is the file ?

jade roost
#

how do i make a focus have two prerequisites

obtuse condor
obtuse condor
analog igloo
#

why is germany black im trying to make it red

distant prairie
#

whats the best long play mod? IE WW1 and 2?

north wave
wintry geode
#

This

#

make two

#

Will this make so all Monarchist nations in europe lose 10 stability and gain 5 democratic support?

abstract hawk
#

So uh

#

Is anyone able to take some mod requests

#

I have a submod request

#

For Old World Blues

abstract hawk
#

Actually beyond that

#

I have a request

#

That is very grand in scope

#

A total conversion mod

#

To create a Pre War Fallout experience

#

I'd prefer it to start in 2065

#

Right before the Sino American war

dim kindle
#

So i've been trying to play with mods for weeks now and i feel like ive tried everything, even different mods but all do this and I cant find anybody that can help. Ill load the game with say R56 on only it will get the loading bar all the way to the right and then crash. Everytime at the same loading progress regardless of mods. I have uninstalled and reinstalled deleted all folders, heck even formatted the drive it was on. Im unsure where to go now
UPDATE:
If I bypass the launcher and boot the game manually the mods load fine so something with the launcher is going on?

timber zenith
# wintry geode

looks like it should work but you gotta fix your indentation

stuck quarry
#

is there any way to have different weather depending on the bookmark chosen?

eager holly
#

Hello I found this photo on internet and says it was associated with the game Hoi4

#

I’m here to ask if anyone know what this cool looking logo represents and meaning

eager holly
#

Thank you

eager holly
timber zenith
eager holly
#

I found it it’s in the TNO mod

#

Very well designed flag

obtuse condor
#

tried to drown Moscow in my mod about the victory of the Axis, but this happened... Can anyone help me to fix this?

versed shale
#

Hi

late pilot
#

does any one have any ideas on how to quickly delete all starting factories and armies in only a couple lines?

summer comet
#

Are there any good mods for playing vietnam during any period of time?

uncut roost
#

I made an icon for the national spirit and it is not displayed. What image parameters should the icon have?

upbeat mist
#

Or you can edit the history of every single state and every single country

silent swallow
#

What should the effect be for this focus desc "We must exile the nazi-aligned officers for they may be useful to the state in the future, however we cannot have such a hinderance now"

nimble solar
silent swallow
nimble solar
#

Well just have it apply to the remaining nazi officials and maybe generals

#

But make the decision drop stability and raise fascist support

silent swallow
#

Cool

#

Thanks

ashen mural
obtuse condor
#

of the file

#

the background file

#

which you can find in TOA

#

and add your own to replace it

#

i believe you would need to do this with every major dlc too since they added their own background

ashen mural
obtuse condor
#

hope i helped a little

ashen mural
snow marten
wintry geode
#

is there a modifer for weekly or monthly stability?

silent swallow
steel elk
#

mybe something in nudge but the british icon is perfectly fine

obtuse condor
#

Having some problems after making new provinces. It wants me to do this yet in the nudger - buildings i tried adding costal ports to it but it didnt work. does anyone have any tips?

obtuse condor
#

the provinces that it mentions

#

they are bordering the black seaa soo

#

i suppose yes

#

however i tried adding costal ports to them through the nudger saving it and then reloading the game and it wasnt there

#

oh nevermind

#

i fixed it now the problem was that i had two map files in both the mod and the documents, all i had to do was paste over the buildings from the documents one to the mod map folder

late ruin
#

no way the devs of führerredux got the rights for that greek banger when you open the game

silent swallow
#

Basically like when you could do mutually exclusive focuses but better

north wave
#

I am also making a better dutch monarchist tree

silent swallow
#

Nice

#

What could some of the effects be then

north wave
silent swallow
# north wave

I think for United but Seperated it should me more "United but Divided" instead

north wave
#

Could be

#

Parliament section gives you
Stability
Laws
War support
buffes

#

And political power gain

#

Cheap Advisor

silent swallow
#

im gonna cry, my focuses aren't loading

north wave
#

Are u in tdebug

#

I mean debug mode

silent swallow
#

Yes

gleaming monolith
#

I just had a funny idea for an achievement involving Francoist Spain and San Francisco.

#

Francisco's Caudillo

As Francoist Spain, occupy and conquer San Francisco in a peace deal.

  • Country is Nationalist Spain 🇪🇸
  • Country Leader is Francisco Franco
  • Owns California
gleaming edge
wintry geode
#

how do i make so it can also get triggered if a french ally or subject controlls venice?

summer lotus
#

state_id = { controller = { OR = {

wintry geode
#

its on the hoi4 modding wii

wintry geode
#

This should work right?

gleaming edge
fast valve
#

Can you modify formulas? And if so, how?

jolly mural
fast valve
#

I suppose if I tweak the bonus values I could still make it work but part of the problem is air attack is super unrealistic in how it’s modeled right now

jolly mural
#

You can add custom modules, and change the defines for air combat, but not how the code calculated it. Its in the source files

fast valve
#

Gotcha, thanks! I think I can work with that

wintry geode
#

still doesnt work

#

dont know what im doing wrong

bronze crystal
#

are there any modding tutorials that even a dumb brain like me could understand

mellow crescent
#

Would a mod that only pauses on notification if at 5 speed be possible?

wintry geode
#

Were Pfalz and the saarland controlled by Russia?

echo storm
#

anyone wanna create a hoi4 mod perhaps 👀

bronze crystal
echo storm
bronze crystal
echo storm
#

but its actually easy to learn

bronze crystal
#

alr then

echo storm
bronze crystal
#

i thought i heard something about notebook being used for modding

echo storm
#

I use visual studio code

bronze crystal
#

hm

#

i have not too much knowledge on coding either

#

the only experience i have with it is roblox studio

echo storm
#

ehhh dw lol its more so the easy typa coding

bronze crystal
#

the only mods i really have in mind to make is a norway focus tree

wintry geode
#

french revolution napoleonic wars since nobody else is doing it rn

empty galleon
#

Oldest mod I found was 1900

gentle goblet
#

Anyone that has a GFX or .psd file for medals?

proper acorn
long dew
#

uh does anyone have the no undeletable units mod like the file itself

fair pike
#

can anyone help me working on a mod, if yes pls dm me

kindred zephyr
#

Что делать если игра не видит портреты? (

wintry geode
#

Why doesnt the image appear?

#

Why doesnt the talleyrand image appear?

silent swallow
#

How would I change the time it takes to complete a focus?

wintry geode
#

is 30 days

silent swallow
#

How do I figure out everything else though\

#

All other times ^

wintry geode
#

cut that in half you got 35

silent swallow
#

So it's cost, c*7= Time

#

Nice

wintry geode
#

yeah

silent swallow
#

I get to do math

#

So I can tell everybody I do math everyday

#

Thank you!

eager holly
#

Can someone recommend me a good mod beside TNO and -56

fleet reef
#

Do you have a link to join the great war redux discord? That on the Steam page isn't working

wintry geode
#

Great War Redux is looking amazing

long dew
#

does anyone have the no undeletable units mod like the file itself

warm lava
#

Please, help
Why does nothing happen when I click on the “Publish modification” button?

fluid compass
#

what is going on.

#

why do mods keep crashing.

#

i've gotten this same exact error

#

with 2 mods so far

#

i just want to play modded.

#

(also is this the right channel to talk about this?)

harsh elk
#

Does anyone know how to mod on Linux without the steam workshop

#

My launcher broke and I just want to play kaiserreich

obtuse condor
#

I mean

#

Im not sure how linux works but mods are available on other sites too so you could manually put it in the game files

#

If im understanding u

#

Wait no ur launcher broke

#

Mb then idk

stiff zodiac
#

how do i change a countrys leader in hoi4?

#

(custom portrait, custom name)

strong forge
#

@sterile ingot privet

#

@hardy garnet

stiff zodiac
#

where do i find these leaders portraits

spare wraith
#

Hey guys. what's the best mod in your opinion

#

?

crystal folio
stiff zodiac
#

Okay so i want to replace dlc leaders portraits how do i do that pls help me

stuck quarry
gusty gulch
#

Thoughts? Singleplayer and Multiplayer buttons are WIP. We're debating on what to do with them

obtuse condor
#

anybody can send me FRA_neutrality normal flag .tga file? cuz i broke mine

#

nvm

delicate atlas
#

Hi all, wondering what the premiere mods for Hoi4 are. I know Kaiserreich is usually #1, I’ve also heard things about Thousand Week Reich and Great War Redux, are those of similar quality?

nimble solar
#

The New Order is an interactive novel and is in my opinion overrated.

Millennium Dawn is a feature bloated snoozefest

Kaiserredux is kaiserreich but much wackier

obsidian swallow
crystal folio
stuck quarry
#

this is possibly a stupid question and im sure the answer is probably no, but can i use numbers in nation tags? or does it have to be letters

molten furnace
#

Does require for you to have a higher reading level than a 4th grader

vagrant folio
#

This mode is really great

#

It's my favorite mode of achievement compatibility

hardy scaffold
#

Hi, how to speed up delivery time after buy some weapon from international market 10 times faster

fleet reef
#

Do you know a good modding community, which help beginners and have patience?

arctic moss
#

Hi peeps, here is a question, how can i disable the main pool of generic icons?

ashen mural
#

it keeps saying the game will likely crash

silent swallow
#

Any tips for a total overhaul mod

obtuse condor
#

Hello Hoi4 Andorra fans, I have come here to bless you with two of the political paths for the upcoming Andorra mod: The communist path and the Catalanist path. Have a great day!

storm thistle
#

does anyone know a mod so i can leave the axis faction despite being in a war helping germany

main grove
#

best focus tree overhaul mods?

#

i like big focus trees 😉

pale sparrow
#

🏃‍♂️

obtuse condor
#

made plan Madagascar in my mod about axis victory🥶

main grove
pale sparrow
main grove
#

yes sir

abstract hawk
#

Guys

#

Someone

#

Please take a mod request

stuck quarry
obtuse condor
#

but make it like

#

easy

silent swallow
timber zenith
#

the history open uses ( instead of {

timber zenith
#

there's far too much stuff you'd need to do

#

and also if it's your first time seriously modding total overhaul might be too ambitious, it would be better off to start with something small

stuck quarry
# silent swallow Making

I agree with everything Kong said, im working on a overhaul mod with a entirely new scenario and everything and i got a team of 3 to work on it

#

And we expect to have something playable in idk about a year or so

#

And thats even being ambitious

obtuse condor
#

Hello guys, im in a bit of a pickle
Im trying to make a mod with a custom map, ive perfectly followed this tutorial step by step and everything seemed correct until i started the game with my mod, but it keeps crashing, and he mentions something that whenevr you crash and if you have this error cord you need to fix the province map, but eventhough my hoi4 is on -debug on properties on steam, it doesnt give me that super long pop up thing when it crashes, it just tells me to report how it crashed

silent swallow
pale sparrow
#

People wanna help, but people with limited experience making a total overhaul is a horrible project to join

silent swallow
#

Im good with alot of the things I have in mind, like focuses and stuff

pale sparrow
#

ThumbsUpDuck I see

silent swallow
#

So I am not bad or have limited experience

#

The only problem I think is there is alot to do especially in the realm of history files

mortal token
#

The King’s Man mod?

silent swallow
#

huh

abstract hawk
#

So basically

#

It's a mod for OWB

#

It specifically is a tech mod

#

To add in some extra stuff for the infantry tree

pale sparrow
#

while coming up with content is probably the top time cost

#

which is why I mostly adjust existing content

silent swallow
#

So since I am most likely not able to get a team of sorts, how would I do that, I was working on a smaller germany scale mod but I don't know if I wanna continue that over a scenario mod

bright nova
#

please make it so that for_each_loop, for_loop_effect, etc dont function as auto hidden effects paradox 🙏

#

itd be nice if i could define a custom effect tt in them

honest zodiac
#

i fear no modding, but gui and map modding, it scares me

#

i hate gui modding

#

guys how do i make the parties attached to the box above?

#

gui modding is so painful

#

I have a question, if i make mods like kr or tno level of popularity, do i have any possiblity of joining paradox?
just a thought

stuck quarry
#

Ig it really depends on the mod

#

And how interested people are in it

#

Like my mod we’re rewriting history from 1850-modern day in a post apocalyptic dieselpunk style ice age and we’ve so fad had probably around 10 people volunteer to help

#

Tho that was at the beginning of the year when we were working on a older version of the mod that went into hiatus due to irl conflicts, we’ve sense started from scratch on it and are doing aight with 3 people