captainstar Posted March 24 Posted March 24 (edited) I've tested chatGPT and Deepseek and they are very good at translating dialogues into more everyday languages. So I'd like to ask you guys to use them to make the dialogues and interface of our game into Brazilian Portuguese (and other languages if you prefer) ^^ Edited March 24 by captainstar 1
City Council Michiyo Posted March 25 City Council Posted March 25 The issue with that is the way the game is designed, you can't have multiple languages active on a server at the same time. You can translate the UI elements, but not NPC text, Mission Dialogs etc. The server sends the client all text, and it has to send *everyone* the same text. Changing that would require changes DEEP inside the server and client code.
twozerofoxtrot Posted March 25 Posted March 25 6 hours ago, Michiyo said: The issue with that is the way the game is designed, you can't have multiple languages active on a server at the same time. Is this why you can't type in characters from other languages (ex: Chinese) even if you have the keyboard settings for it? But the game does allow for you to paste those characters into the chat box....
City Council Michiyo Posted March 25 City Council Posted March 25 6 hours ago, twozerofoxtrot said: Is this why you can't type in characters from other languages (ex: Chinese) even if you have the keyboard settings for it? But the game does allow for you to paste those characters into the chat box.... No, that's not related at all. Also, I can type *some* languages into the chatbox, but not all, it's a limitation of the input system.
Fira Posted March 25 Posted March 25 This is so weird, why is it all in localization files if they're essentially not used in the end?
captainstar Posted March 26 Author Posted March 26 On 3/24/2025 at 11:53 PM, Michiyo said: The issue with that is the way the game is designed, you can't have multiple languages active on a server at the same time. You can translate the UI elements, but not NPC text, Mission Dialogs etc. The server sends the client all text, and it has to send *everyone* the same text. Changing that would require changes DEEP inside the server and client code. Can't do like that MODs?
Krimson Posted March 26 Posted March 26 On 3/24/2025 at 4:34 PM, captainstar said: I've tested chatGPT and Deepseek and they are very good at translating dialogues into more everyday languages. So I'd like to ask you guys to use them to make the dialogues and interface of our game into Brazilian Portuguese (and other languages if you prefer) ^^ I've looked into making AI apps to work with City of Heroes, and the amount of work to get it to anything is going to be interesting. City of Heroes doesn't have an API. Your first problem, ignoring which AI you plan to use, is HOW you are going to get information from CoH to the AI so the AI can process it, such as providing a translation. Client-side, I might be able to accomplish this using DLL Injection and API Hooking, maybe. I personally want to try and create a companion app that can tell you about the NPC you are talking to, tell you about your mission, the zone you are in, or any other information that could be scraped from the game. My purpose, however, is to create something that enhances immersion, but I suppose translation could fall into that. Now I said client side because I am not even sure how the Homecoming Team would approach integrating AI into City of Heroes on the server end. Once again, the game has no API. And then what service do you use? OpenAI is making big strides, but also charging big money for its services. It might be better if they had a model that could be run locally on a server, and fine-tuned to City of Heroes. Of course, then you have to understand what fine-tuning and Loras are. At the moment, my AI City of Heroes experience is a simulation I made as a json file using KoboldCPP as a back end. I'm limited to story-telling, or text-based adventures ala old MUDs, but I could certainly do things like have a conversation with any NPC I want, so long as I provide information for that NPC. KoboldCPP has websearch, so I can make things easier by pointing it to web pages. I don't see City of Heroes having such advanced features any time soon. The thing that will revolutionize the game is when we have a language model with a massively huge context, like 1 million tokens or more. Right now tokens for language models run between 16-128, big enough to absorb some books, but not yet big enough to ingest the entirety of Homecoming source code. When we have a model that can ingest City of Heroes and spit it out as something easier to work with, then perhaps we can make the game into something more. 1
captainstar Posted March 27 Author Posted March 27 (edited) 4 hours ago, Krimson said: I've looked into making AI apps to work with City of Heroes, and the amount of work to get it to anything is going to be interesting. City of Heroes doesn't have an API. Your first problem, ignoring which AI you plan to use, is HOW you are going to get information from CoH to the AI so the AI can process it, such as providing a translation. Client-side, I might be able to accomplish this using DLL Injection and API Hooking, maybe. I personally want to try and create a companion app that can tell you about the NPC you are talking to, tell you about your mission, the zone you are in, or any other information that could be scraped from the game. My purpose, however, is to create something that enhances immersion, but I suppose translation could fall into that. Now I said client side because I am not even sure how the Homecoming Team would approach integrating AI into City of Heroes on the server end. Once again, the game has no API. And then what service do you use? OpenAI is making big strides, but also charging big money for its services. It might be better if they had a model that could be run locally on a server, and fine-tuned to City of Heroes. Of course, then you have to understand what fine-tuning and Loras are. At the moment, my AI City of Heroes experience is a simulation I made as a json file using KoboldCPP as a back end. I'm limited to story-telling, or text-based adventures ala old MUDs, but I could certainly do things like have a conversation with any NPC I want, so long as I provide information for that NPC. KoboldCPP has websearch, so I can make things easier by pointing it to web pages. I don't see City of Heroes having such advanced features any time soon. The thing that will revolutionize the game is when we have a language model with a massively huge context, like 1 million tokens or more. Right now tokens for language models run between 16-128, big enough to absorb some books, but not yet big enough to ingest the entirety of Homecoming source code. When we have a model that can ingest City of Heroes and spit it out as something easier to work with, then perhaps we can make the game into something more. I was thinking about putting the texts in simple formats for the AI to translate the dialogues, and better words to use in the interface. There would be no need to actually connect them. Edited March 27 by captainstar
captainstar Posted March 27 Author Posted March 27 And in specific things like hair types. I think I could "simplify" it to: "hair 1", "hair 2"... something like that.
Andreah Posted March 27 Posted March 27 Even if you get past the technical hurdles, an issue is in the fidelity of the translations, which won't be reviewed and verified, to the text they purport to translate. It may be excellent almost all the time, but the few times they're not, they'll cause problems. 1 1
VictoriaGray Posted April 10 Posted April 10 (edited) Awesome suggestion! Translations will make the game shine for everyone! Spoiler That’s an awesome idea! Using AI for real-time dialogue translation would be a game-changer for inclusivity in MMOs. As a student working on tech in gaming for my dissertation, this concept totally fits modern research trends. If anyone’s balancing game design interests with academic demands, getting buy dissertation help was super useful for me in handling the workload and focusing on creative ideas like this. Edited 18 hours ago by VictoriaGray 1
Doomguide2005 Posted April 10 Posted April 10 On 3/26/2025 at 4:00 PM, captainstar said: Can't do like that MODs? My skill set is not in IT, AI or anything related but sometimes we need to be reminded this game was created to be able to run and when much of the internet ran on dial up.
Game Master GM Crumpet Posted April 11 Game Master Posted April 11 I'm not a tech person but there is a lot of good information here. Because the game runs so well and we've been able to update a lot of stuff and add new content people forget the game is actually really old. It doesn't use anything that more modern games use like game engines and the like, and everything about it is bespoke. It's a miracle it works even a fraction as well as it does. Things like the Mapserver event show the limitations that hit a wall no matter what we try. Get 100 players in a zone with all the powers, pets, enemies and stuff going on and it slows to a crawl. 2 full leagues will really stretch the resources, and three leagues you might as well not bother. I've spoken to the people that matter about reducing the player cap in the affected zones during the event so it spawns more zone instances, but that won't happen this year. We've been accused a few times recently of using AI and our reply is always "huh?". There is nothing to hang AI on. We'd love to be able to do things like language translation and the like, but the way the game is built it's fundamentally not possible without a lot of work and I don't know if even then it would be possible without a rewrite of the entire game code. From my limited knowledge the game is just too old and too incompatible to take advantage of the more positive aspects of AI. While nothing is impossible, a lot of stuff we would like to do is so difficult it enters the realm of highly improbable. 2 1
Krimson Posted April 13 Posted April 13 On 4/11/2025 at 2:21 AM, GM Crumpet said: We've been accused a few times recently of using AI and our reply is always "huh?". There is nothing to hang AI on. I can verify that this is true. It might be possible to get something to work using DLL injection and API Hooking, but that's beyond my knowledge at the moment. But yeah, no API. No easy way to get the game and AI to talk to each other. 1
jkwak Posted April 17 Posted April 17 (edited) On 3/25/2025 at 3:53 AM, Michiyo said: The issue with that is the way the game is designed, you can't have multiple languages active on a server at the same time. You can translate the UI elements, but not NPC text, Mission Dialogs etc. The server sends the client all text, and it has to send *everyone* the same text. Changing that would require changes DEEP inside the server and client code. how so if that worked on the Live servers for a long time? i cant imagine, that wehen the mutlilanguage support was removed, the life Devs cleanead out everything of that system when on the client side there seems to be so much remaining of the mutliple languages that used to be supported edit: on that note i would take just the content that was already translated on life befor they removed the multilanguage support, if games that are still supported bye there studios and publishers do similiar things by claiming to be "multilanguage" yet all the new content in the last 10 years is only in english *looking at DCUO* so Homecoming can to Edited April 18 by jkwak back to the Zukunft @Jkwak
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now