(as gemany, my only experienced nation) The nationalist tree is unplayble because the civil war is literally unwinnable unless theres a method to avoid being completely destroyed
theres other focuses directly above the ideolgy you have to do those depending on which your trying to do, traditionalism for monarchy, workers right for communism etc etc
If you don't mind me asking, but can I ask for like needed features for this amazing game?
1.) Fullscreen.
2.) Map quality gets better whenever you zoom in.
3.) Scrollbar for everything and have every UI get some sort of scrolling because when you get plenty of deploy regions, they get overwhelming and go pass the screen.
4.) Have a searchbar for anything that includes multiple stuff.
(I am not pressuring you on doing this, but it can help the gameplay.)
What game engine, framework, or language(I know you use Python, but are there other ones) did you use to make this game? Is the game safe? Because it has 3 flags and one is from mcafee antivirus.
Also, I love the game, it is polished enough that it kept me entertained for hours. Please, if you can, provide a free version when this game becomes successful. Similar to Ravenfield, the Beta stops getting updates, but is still free for everyone, this is a great way to market your game by giving a chance for people to try it, so they can decide whether they like it or not.
And, don't listen to anyone that says your games are bad, this is amazing, plus being only 46mb for the amount of content this has is a flex, continue making this game please.
Errors and Issues I've encountered: 1.) Crashes mid-game and can potentially corrupt game saves.
2.) The game gets laggy when zooming out, if possible, have different lower quality sprites whenever a you zoom in a specific range. And delete the flags/armies when zooming out in a very large scale.
3.) People hating on this game for weird reasons, not all of them are gamedevs, but are judging free content. This isn't HOI4, it is a simple game similar to it. It is like the mix of HOI1 and HOI2, similar gameplay as HOI1, but similar graphics as HOI2. Ya'll be thankful this dev made this game free, I always wanted a real-time grand strategy game like this for free.
4.) The game scenarios, though not perfect, is nice. For now, it is just sandbox with different borders, but it will be great.
5.) I got confused on the politics, how do I like voluntarily join for factions?
6.) I prefer if building ports are half or lower of the time taken when building factories, my troops get stuck at islands when invading because those suckers(nations) don't build ports. This isn't a problem for large ahh-nations like Russia cause they can just build more and more divisions. But nations like Britain(Modern) and other small nations would definitely suffer.
(Tbh, this game isn't fixed in one scenario(which is great), plus it is as fast as HOI4)
The game is made with python, using pygame as a graphics library.
I promise you that the game is safe, though it is a random executable from an unknown developer so I feel that it would trigger as a virus regardless of it's content. You can look at the community for conformation (if there was something malicious I'm sure it would've been commented on by now), but if you don't feel comfortable downloading it, don't.
The game is free; the popup that comes up when you download it is prompting for donations. Don't pay if you can't.
A bordering faction can invite you to join them if you are the same ideology, though it is random.
Also, you are right about a lot of the lag issues. Python is not fantastic for rendering, and it is the cause of the majority of the fps issues. I'm exploring using caching in more parts of the game to speed it up, with some good results (ex. right now, opening the side bar will halve the fps. Simply not rendering it every frame has gotten it up to 120 fps). For the crash issues, I am looking into improving error handling, which is basically nonexistent in the current build, as well as fixing the issues which cause the crashes in the first place.
← Return to game
Comments
Log in with itch.io to leave a comment.
make stability toggleable or renewable because you litteraly cant do anything about it
(as gemany, my only experienced nation) The nationalist tree is unplayble because the civil war is literally unwinnable unless theres a method to avoid being completely destroyed
theres other focuses directly above the ideolgy you have to do those depending on which your trying to do, traditionalism for monarchy, workers right for communism etc etc
Wooooooow
peak
for the life of me I can’t figure out how to save the game dude
i need to ask Gavgrub a question, what was the culture function in you code in data.py
i got some source code of this game
import random
class Countries:
def __init__(self):
"""Decompiler error: line too long for translation. Please decompile this statement manually."""
self.colorsToCountries = {v[0]: k for k, v in self.countryData.items()}
def getCountryType(self, culture, ideology=None):
if not ideology == None:
for country in self.countryData.keys():
if self.getCulture(country) == culture and self.getIdeology(country) == ideology:
return country
else:
countries = [i for i in self.countryData.keys()]
random.shuffle(countries)
for country in countries:
if self.getCulture(country) == culture:
return country
return None
def getAllCountries(self, culture):
return [i for i in self.countryData.keys() if self.countryData[i][2] == culture]
def getEveryCountry(self):
return [i for i in self.countryData.keys()]
def colorToCountry(self, color):
return self.colorsToCountries.get(color)
def getCountryData(self, country):
return self.countryData.get(country)
def getColor(self, country):
return self.countryData.get(country)[0]
def getClaims(self, country):
return self.countryData.get(country)[1]
def getCulture(self, country):
return self.countryData.get(country)[2]
def getIdeology(self, country):
return self.countryData.get(country)[3]
def getBaseStability(self, country):
if type(self.countryData.get(country)[-1]) == str:
return 60
return self.countryData.get(country)[-1]
def getIdeologyName(self, country):
ideologies = {'liberal': [-0.5, 0.5], 'communist': [-0.5, -0.5], 'monarchist': [0.5, 0.5], 'nationalist': [0.5, -0.5]}
return ideologies.get(str(self.countryData.get(country)[3]), [0, 0])
def getCultures(self):
cultureList = []
for data in self.countryData.values():
if data[2] not in cultureList:
cultureList.append(data[2])
return cultureList
i might able to get all the file
How did you get this, I wanna mod the game.
If you don't mind me asking, but can I ask for like needed features for this amazing game?
1.) Fullscreen.
2.) Map quality gets better whenever you zoom in.
3.) Scrollbar for everything and have every UI get some sort of scrolling because when you get plenty of deploy regions, they get overwhelming and go pass the screen.
4.) Have a searchbar for anything that includes multiple stuff.
(I am not pressuring you on doing this, but it can help the gameplay.)
There's a glitch where building a factory in a province with a port destroys the port
Factories and ports don't build on top of each other.
Why does manpower stop growing as soon as I deploy a division?
It doesn't, but it takes a while. Try speeding up the time. And researching focuses based on military will speed up the growth.
But sometimes, small nations cannot produce more recruits
Can I ask some questions?
What game engine, framework, or language(I know you use Python, but are there other ones) did you use to make this game?
Is the game safe? Because it has 3 flags and one is from mcafee antivirus.
Also, I love the game, it is polished enough that it kept me entertained for hours. Please, if you can, provide a free version when this game becomes successful. Similar to Ravenfield, the Beta stops getting updates, but is still free for everyone, this is a great way to market your game by giving a chance for people to try it, so they can decide whether they like it or not.
And, don't listen to anyone that says your games are bad, this is amazing, plus being only 46mb for the amount of content this has is a flex, continue making this game please.
Errors and Issues I've encountered:
1.) Crashes mid-game and can potentially corrupt game saves.
2.) The game gets laggy when zooming out, if possible, have different lower quality sprites whenever a you zoom in a specific range. And delete the flags/armies when zooming out in a very large scale.
3.) People hating on this game for weird reasons, not all of them are gamedevs, but are judging free content. This isn't HOI4, it is a simple game similar to it. It is like the mix of HOI1 and HOI2, similar gameplay as HOI1, but similar graphics as HOI2. Ya'll be thankful this dev made this game free, I always wanted a real-time grand strategy game like this for free.
4.) The game scenarios, though not perfect, is nice. For now, it is just sandbox with different borders, but it will be great.
5.) I got confused on the politics, how do I like voluntarily join for factions?
6.) I prefer if building ports are half or lower of the time taken when building factories, my troops get stuck at islands when invading because those suckers(nations) don't build ports. This isn't a problem for large ahh-nations like Russia cause they can just build more and more divisions. But nations like Britain(Modern) and other small nations would definitely suffer.
(Tbh, this game isn't fixed in one scenario(which is great), plus it is as fast as HOI4)
Thanks for your questions.
Also, you are right about a lot of the lag issues. Python is not fantastic for rendering, and it is the cause of the majority of the fps issues. I'm exploring using caching in more parts of the game to speed it up, with some good results (ex. right now, opening the side bar will halve the fps. Simply not rendering it every frame has gotten it up to 120 fps). For the crash issues, I am looking into improving error handling, which is basically nonexistent in the current build, as well as fixing the issues which cause the crashes in the first place.
Cheers for the detail explanation.
WHERES THE UPDATE IT HAS BEEN 6 MONTHS GAVGRUB
Ensure that it runs on 32-bit (x86).
How do i instal the game bro
Press download and follow the instructions it gives you.
Hey GavGrub can i ask you a question?