• 4 Posts
  • 38 Comments
Joined 2 years ago
cake
Cake day: June 20th, 2023

help-circle









  • since youve mostly gotten your answers on the basic questions, i will add some other information here for you as FYI. If you’re wondering, you can use regular old acrylic hobby paints for miniatures. It’s going to take some extra work and a lot of mixing to get it the right consistency and will be a learning curve there.

    If you’re wondering if it’s worth the money to spend on mini paints, that’s going to be entirely up to your preference. Mini paints can be quite pricey vs regular old craft store paints. I would maybe suggest dabbling with regular paints and getting some thinner medium and see if mixing them works out well for you. If you find it too annoying/frustrating/not worth your time then get mini paints. Mini paints can basically be used right out of the bottle.





  • What, exactly are you trying to replicate from the show? The miraculous super drug the powers-that-be despise? The plot premise of running from the authorities with a secret? The main character himself? All of it? Something else? Depending on what aspects you like, you can do different things for your game (fyi I know little about EP specifically, but translating plot into games can be universal).


  • i second the comment that you need to consider why you want to do this. You generally need a pretty good reason to split your codebase into multiple languages.

    As far as actually doing it, you have a ton of different options, some of which have been mentioned here. Some i can think of off the top of my head:

    • create a library (dll or so file or the like)
    • set up a web server and use communication protocols (either web socket or rest API or the like)
    • use a 3rd party communication/messaging framework like MQ or kafka or something
    • create your own method of communication. Something like reading and writing to a file on disk, or a database and acting on the information plopped in

    basically every approach is going to require you to come up with some sort of API that the two work together through, though, an API in the generic sense is basically a shared contract two disconnected pieces of code use to communicate.