Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - MementoMors

Pages: [1]
1
Game Help / More preset problems...
« on: August 30, 2017, 03:22:35 am »
I'm making a preset with transparent eyelids, but the left eyelid is still visible.



The code for both eyes looks exactly the same to me, so I'm not sure what's wrong.

Code: [Select]
material preset_10_bodyMatL
{
 technique
 {
  pass
  {
   ambient 0.5 0.5 0.5 1.0
   texture_unit
   {
    texture squidbody.png
   }
  }
  pass
  {
   emissive 1.0 1.0 1.0 1.0
   scene_blend alpha_blend
   texture_unit
   {
    texture squidglow1.png
   }
  }
 }
}
material preset_10_bodyMatR
{
 technique
 {
  pass
  {
   ambient 0.5 0.5 0.5 1.0
   texture_unit
   {
    texture squidbody.png
   }
  }
  pass
  {
   emissive 1.0 1.0 1.0 1.0
   scene_blend alpha_blend
   texture_unit
   {
    texture squidglow1.png
   }
  }
 }
}
material preset_10_headMatL
{
 technique
 {
  pass
  {
   ambient 0.5 0.5 0.5 1.0
   texture_unit
   {
    texture squidhead.png
   }
  }
  pass
  {
   emissive 1.0 1.0 1.0 1.0
   scene_blend alpha_blend
   texture_unit
   {
    texture squidglow4.png
   }
  }
 }
}
material preset_10_headMatR
{
 technique
 {
  pass
  {
   ambient 0.5 0.5 0.5 1.0
   texture_unit
   {
    texture squidhead.png
   }
  }
  pass
  {
   emissive 1.0 1.0 1.0 1.0
   scene_blend alpha_blend
   texture_unit
   {
    texture squidglow4.png
   }
  }
 }
}
material preset_10_eyeMatL
{
 technique
 {
  pass
  {
   alpha_rejection greater_equal 128
   ambient 0.5 0.5 0.5 1.0
   texture_unit
   {
    texture squideye.png
   }
  }
  pass
  {
   emissive 1.0 1.0 1.0 1.0
   scene_blend alpha_blend
   texture_unit
   {
    texture squidglow3.png
   }
  }
 }
}
material preset_10_eyeMatR
{
 technique
 {
  pass
  {
   alpha_rejection greater_equal 128
   ambient 0.5 0.5 0.5 1.0
   texture_unit
   {
    texture squideye.png
   }
  }
  pass
  {
   emissive 1.0 1.0 1.0 1.0
   scene_blend alpha_blend
   texture_unit
   {
    texture squidglow3.png
   }
  }
 }
}
material preset_10_tailMat
{
 technique
 {
  pass
  {
   ambient 0.5 0.5 0.5 1.0
   texture_unit
   {
    texture preset_10tail.png
   }
  }
  pass
  {
   emissive 1.0 1.0 1.0 1.0
   scene_blend alpha_blend
   texture_unit
   {
    texture preset_10tailglow.png
   }
  }
 }
}
material preset_10_maneMat
{
 technique
 {
  pass
  {
   cull_hardware none
   cull_software none
   alpha_rejection greater_equal 128
   texture_unit
   {
    texture preset_10mane.png
   }
  }
  pass
  {
   emissive 1.0 1.0 1.0 1.0
   scene_blend alpha_blend
   texture_unit
   {
    texture preset_10maneglow.png
   }
  }
 }
}
material preset_10_equipMatL
{
 technique
 {
  pass
  {
   ambient 0.5 0.5 0.5 1.0
   texture_unit
   {
    texture squidequip.png
   }
  }
  pass
  {
   emissive 1.0 1.0 1.0 1.0
   scene_blend alpha_blend
   texture_unit
   {
    texture squidglow2.png
   }
  }
 }
}
material preset_10_equipMatR
{
 technique
 {
  pass
  {
   ambient 0.5 0.5 0.5 1.0
   texture_unit
   {
    texture squidequip.png
   }
  }
  pass
  {
   emissive 1.0 1.0 1.0 1.0
   scene_blend alpha_blend
   texture_unit
   {
    texture squidglow2.png
   }
  }
 }
}

2
Game Help / A question about presets
« on: August 30, 2017, 01:34:53 am »
I'm making a preset with wings, and I want the top of the wings to have a different texture than the underside. Is this possible, and if so, how can I do it?

3
Game Help / Manes aren't displaying properly?
« on: August 26, 2017, 08:05:40 pm »
I don't know how to describe this, but the manes aren't showing properly. It happens in the character editor and in-game, with characters that do not have a preset.







Blue doesn't work at all, I can only use combinations of red and green.

I've had this problem for a while, but I didn't notice it until now. I have screenshots from last year's holiday movie thing where you can see it.


4
Game Help / Preset help?
« on: August 23, 2017, 03:26:16 am »
I'm trying to make a preset with transparent wings, but they show up white in-game. The image for the wings is a .PNG and the coding matches, so I'm not sure what is happening.



There's also something weird going on with the mane. It looks like the inside of the mesh is being shown or something.



This is what the code looks like:
Code: [Select]
material preset_12_bodyMatL
{
technique
{
pass
{
texture_unit
{
texture EspurrBody.png
}
}
}
}
material preset_12_bodyMatR
{
technique
{
pass
{
texture_unit
{
texture EspurrBody.png
}
}
}
}
material preset_12_headMatL
{
technique
{
pass
{
texture_unit
{
texture EspurrHead.png
}
}
}
}
material preset_12_headMatR
{
technique
{
pass
{
texture_unit
{
texture EspurrHead.png
}
}
}
}
material preset_12_eyeMatL
{
technique
{
pass
{
cull_hardware none
cull_software none
texture_unit
{
texture EspurrEyes.png
}
}
}
}
material preset_12_eyeMatR
{
technique
{
pass
{
cull_hardware none
cull_software none
texture_unit
{
texture EspurrEyes.png
}
}
}
}
material preset_12_tailMat
{
technique
{
pass
{
texture_unit
{
texture EspurrTail.png
}
}
}
}
material preset_12_maneMat
{
technique
{
pass
{
lighting off
cull_hardware none
cull_software none
scene_blend alpha_blend
depth_write off
texture_unit
{
texture EspurrHair.png
}
}
}
}
material preset_12_equipMatL
{
technique
{
pass
{
texture_unit
{
texture EspurrEquip.png
}
}
}
}
material preset_12_equipMatR
{
technique
{
pass
{
texture_unit
{
texture EspurrEquip.png
}
}
}
}

5
Game Help / Game isn't loading?
« on: November 08, 2016, 12:14:18 am »
I'm trying to play the game, but it isn't really starting. When I start the game, this pops up:



I don't know what any of these options do, so I haven't tried changing them.

After I press OK, the game tries to start, and then this happens:



I have reinstalled the game at least two times, and I'm not sure what to do.

6
Game Help / Preset Problems
« on: November 05, 2016, 03:36:15 am »
I'm trying to make a preset and the right side of the body isn't showing.



The code seems to match up, and the image is in the correct format. I reinstalled the game and it didn't help.

Here's the code:
Code: [Select]
material preset_1_bodyMatL
{
technique
{
pass
{
texture_unit
{
texture MementoBody_Left.png
}
}
}
}
material preset_1_bodyMatR
{
technique
{
pass
{
texture_unit
{
texture MementoBody_ Right.png
}
}
}
}
material preset_1_headMatL
{
technique
{
pass
{
texture_unit
{
texture MementoHead_Left.png
}
}
}
}
material preset_1_headMatR
{
technique
{
pass
{
texture_unit
{
texture MementoHead_Left.png
}
}
}
}
material preset_1_eyeMatL
{
technique
{
pass
{
cull_hardware none
cull_software none
texture_unit
{
texture MementoEyes_Left.png
}
}
}
}
material preset_1_eyeMatR
{
technique
{
pass
{
cull_hardware none
cull_software none
texture_unit
{
texture MementoEyes_Left.png
}
}
}
}
material preset_1_tailMat
{
technique
{
pass
{
texture_unit
{
texture MementoTail.png
}
}
}
}
material preset_1_maneMat
{
        technique
        {
                pass
                {
                       cull_hardware none
                       cull_software none
                       alpha_rejection greater_equal 128
                       texture_unit
                       {
                                texture MementoHair.png
                }
          }
     }
}
material preset_1_equipMatL
{
technique
{
pass
{

                        alpha_rejection greater_equal 128
texture_unit
{
texture preset_1equip.png
}
}
}
}
material preset_1_equipMatR
{
technique
{
pass
{
                        alpha_rejection greater_equal 128
texture_unit
{
texture preset_1equip.png
}
}
}
}

These are the files in the folder:



I'd appreciate any help I can get.

7
Game Help / Transparent Wings Not Working
« on: October 04, 2016, 09:25:30 pm »
I'm trying to make a preset with invisible wings. When I load the preset in-game, the wings become yellow and black but everything else looks how it's supposed to.



Here's my code:

Code: [Select]
material preset_1_bodyMatL
{
technique
{
pass
{
texture_unit
{
texture MementoBody_Left.png
}
}
}
}
material preset_1_bodyMatR
{
technique
{
pass
{
texture_unit
{
texture MementoBody_Left.png
}
}
}
}
material preset_1_headMatL
{
technique
{
pass
{
texture_unit
{
texture MementoHead_Left.png
}
}
}
}
material preset_1_headMatR
{
technique
{
pass
{
texture_unit
{
texture MementoHead_Left.png
}
}
}
}
material preset_1_eyeMatL
{
technique
{
pass
{
cull_hardware none
cull_software none
texture_unit
{
texture MementoEyes_Left.png
}
}
}
}
material preset_1_eyeMatR
{
technique
{
pass
{
cull_hardware none
cull_software none
texture_unit
{
texture MementoEyes_Left.png
}
}
}
}
material preset_1_tailMat
{
technique
{
pass
{
texture_unit
{
texture MementoTail.png
}
}
}
}
material preset_1_maneMat
{
        technique
        {
                pass
                {
                       cull_hardware none
                       cull_software none
                       alpha_rejection greater_equal 128
                       texture_unit
                       {
                                texture MementoHair.png
                }
          }
     }
}
material preset_1_equipMatL
{
technique
{
pass
{

                        alpha_rejection greater_equal 128
texture_unit
{
texture preset_1equip.jpg
}
}
}
}
material preset_1_equipMatR
{
technique
{
pass
{
                        alpha_rejection greater_equal 128
texture_unit
{
texture preset_1equip.jpg
}
}
}
}

I'm not sure what to do, and I would appreciate any help.

8
Game Help / Preset isn't showing up.
« on: January 18, 2016, 09:50:31 pm »
I made a preset, but whenever I use the preset maker, it only shows up as the blank white thing. All of the code is correct, and all of the images are too. What can I do to make it show up properly?

Pages: [1]