Recent content by Dr Felix

  1. Dr Felix

    Fallout 2 utility How to recolor sprites automatically: a Python script to replace colors in FRM files.

    Thanks! I haven't tested this so take it with a grain of salt but what I was thinking about was editing, say, the top 40% of the frame by doing something like this: frameimage[0:n] = [144 if i==196 else i for i in frameimage[0:n]] where n=int(np.floor(0.4*framesize))) is the number of...
  2. Dr Felix

    Fallout 2 utility How to recolor sprites automatically: a Python script to replace colors in FRM files.

    Hi Quantum, I'm a fan of your Youtube series. I just uploaded it to Github here: https://github.com/Dr-Felix116/frm_recolour_python Your program looks promising, a paint-like tool for FRMs is something the modding scene is lacking. I'd be happy to help out if I can, send me a DM and we can chat...
  3. Dr Felix

    Fallout 2 utility How to recolor sprites automatically: a Python script to replace colors in FRM files.

    Have you ever wanted a bright pink super mutant? Maybe you want to give Myron a red shirt, make combat armour blue, make a critter's blood green, or change the skin or hair colour of some NPC. I made a Python script to recolor FRM files en masse (it also works for .FR0 to .FR5) while editing...
Back
Top