Khorzyi 2 Posted July 18, 2024 Łukasz, I want to ask if it will be possible to join the Holy Roman Empire or, playing as its emperor, personally connect new countries to it? zdislav 1 Quote Share this post Link to post Share on other sites More sharing options...
3 Łukasz Jakowski 13,389 Posted July 18, 2024 It is not possible Lasica, Diego123, Zgredek07 and 16 others 4 12 3 Quote Share this post Link to post Share on other sites More sharing options...
0 Kiwi 150 Posted July 18, 2024 31 minutes ago, Łukasz Jakowski said: Não e possível I think you could have "Acceptable Zone" when you are the Emperor if you put "Cultures" in the game it would be much easier if only a certain country with the "Germanic" culture could try to join the HRE Nisnac 1 Quote Share this post Link to post Share on other sites More sharing options...
0 Joaoj 105 Posted July 18, 2024 17 minutes ago, Kiwi said: I think you could have "Acceptable Zone" when you are the Emperor if you put "Cultures" in the game it would be much easier if only a certain country with the "Germanic" culture could try to join the HRE but Italian countries were also in the HRE... Wayne23lololh and Victor Orsic 2 Quote Share this post Link to post Share on other sites More sharing options...
0 paul2kdj 118 Posted July 18, 2024 1 hour ago, Łukasz Jakowski said: It is not possible Why though Quote Share this post Link to post Share on other sites More sharing options...
0 Kiwi 150 Posted July 18, 2024 55 minutes ago, Joaoj said: mas os países italianos também estavam no HRE... Os países italianos teriam a cultura Germânica Quote Share this post Link to post Share on other sites More sharing options...
0 Khorzyi 2 Posted July 19, 2024 Ok thanks for the answer. And thanks for a new video :) (and someone tell me how to respond to other people on this site) Wayne23lololh 1 Quote Share this post Link to post Share on other sites More sharing options...
0 Wayne23lololh 1,645 Posted July 20, 2024 On 7/18/2024 at 10:39 PM, Łukasz Jakowski said: It is not possible if it does not bother you, would it work if you create several outcome/trigger for it ? x civ join/leave HRE x civ vassal join/leave HRE x country become emperor Maybe it wont work, but just try at least for modding Quote Share this post Link to post Share on other sites More sharing options...
0 zdislav 123 Posted July 21, 2024 (edited) countries - Represent each country with attributes such as name, status (e.g., member of HRE or not), etc. Holy Roman Empire - Manage a list of member countries and provide functionality to add or connect countries. Game Logic - Implement the rules and interactions for joining or connecting countries. simplified Java example demonstrating these concepts: Define Basic Classes 1. Country Class public class Country { private String name; private boolean isMemberOfHRE; public Country(String name) { this.name = name; this.isMemberOfHRE = false; } public String getName() { return name; } public boolean isMemberOfHRE() { return isMemberOfHRE; } public void joinHRE() { this.isMemberOfHRE = true; } public void leaveHRE() { this.isMemberOfHRE = false; } @Override public String toString() { return name + (isMemberOfHRE ? " (HRE Member)" : " (Not a member)"); } } 2. HolyRomanEmpire Class import java.util.ArrayList; import java.util.List; public class HolyRomanEmpire { private List<Country> memberCountries; public HolyRomanEmpire() { memberCountries = new ArrayList<>(); } public void addCountry(Country country) { if (!country.isMemberOfHRE()) { country.joinHRE(); memberCountries.add(country); System.out.println(country.getName() + " has joined the Holy Roman Empire."); } else { System.out.println(country.getName() + " is already a member of the Holy Roman Empire."); } } public void removeCountry(Country country) { if (country.isMemberOfHRE()) { country.leaveHRE(); memberCountries.remove(country); System.out.println(country.getName() + " has left the Holy Roman Empire."); } else { System.out.println(country.getName() + " is not a member of the Holy Roman Empire."); } } public void listMembers() { if (memberCountries.isEmpty()) { System.out.println("The Holy Roman Empire has no members."); } else { System.out.println("Holy Roman Empire Members:"); for (Country country : memberCountries) { System.out.println(country); } } } } 3. Main Class public class Main { public static void main(String[] args) { // Create countries Country germany = new Country("Germany"); Country austria = new Country("Austria"); Country france = new Country("France"); // Create Holy Roman Empire instance HolyRomanEmpire hre = new HolyRomanEmpire(); // Add countries to the HRE hre.addCountry(germany); hre.addCountry(austria); hre.addCountry(france); // List HRE members hre.listMembers(); // Remove a country from the HRE hre.removeCountry(france); // List HRE members after removal hre.listMembers(); } } Edited July 21, 2024 by zdislav bad gramar Łukasz Jakowski, qxz and Wayne23lololh 2 1 Quote Share this post Link to post Share on other sites More sharing options...
0 zdislav 123 Posted July 21, 2024 (edited) On 7/18/2024 at 10:54 PM, paul2kdj said: Why though it is possible but programing and game development is hard and that make it "impossible" and i think the age of history 3 is made in java and java syntax is clunky also impossible can mean very difficult. also not able to occur, exist, or be done. Edited July 21, 2024 by zdislav Wayne23lololh 1 Quote Share this post Link to post Share on other sites More sharing options...
Łukasz, I want to ask if it will be possible to join the Holy Roman Empire or, playing as its emperor, personally connect new countries to it?
Share this post
Link to post
Share on other sites