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.


Messages - Mea_WolfenX

Pages: 1 2 3 [4] 5 6 ... 33
31
Game Help / Re: Another Preset Issue.
« on: March 11, 2017, 03:10:44 pm »
Code: [Select]
material preset_#_bodyMatL
{
 technique
 {
  pass
  {
   emissive 1.0 1.0 1.0 1.0
   texture_unit
   {
    texture preset_#body.jpg
   }
  }
 }
}
material preset_#_bodyMatR
{
 technique
 {
  pass
  {
   emissive 1.0 1.0 1.0 1.0
   texture_unit
   {
    texture preset_#body.jpg
   }
  }
 }
}
material preset_#_headMatL
{
 technique
 {
  pass
  {
   emissive 1.0 1.0 1.0 1.0
   texture_unit
   {
    texture preset_#head.jpg
   }
  }
 }
}
material preset_#_headMatR
{
 technique
 {
  pass
  {
   emissive 1.0 1.0 1.0 1.0
   texture_unit
   {
    texture preset_#head.jpg
   }
  }
 }
}
material preset_#_eyeMatL
{
 technique
 {
  pass
  {
   cull_hardware none
   cull_software none
   emissive 1.0 1.0 1.0 1.0
   texture_unit
   {
    texture preset_#eye.jpg
   }
  }
 }
}
material preset_#_eyeMatR
{
 technique
 {
  pass
  {
   cull_hardware none
   cull_software none
   emissive 1.0 1.0 1.0 1.0
   texture_unit
   {
    texture preset_#eye.jpg
   }
  }
 }
}
material preset_#_tailMat
{
 technique
 {
  pass
  {
   emissive 1.0 1.0 1.0 1.0
   texture_unit
   {
    texture preset_#tail.jpg
   }
  }
 }
}
material preset_#_maneMat
{
 technique
 {
  pass
  {
   cull_hardware none
   cull_software none
   alpha_rejection greater_equal 128
   emissive 1.0 1.0 1.0 1.0
   texture_unit
   {
    texture preset_#mane.png
   }
  }
 }
}


>This Thread< has been found to be incredibly useful, I would try checking this out and seeing where that gets you. If not, >This Thread< could also be relatively useful in helping you out. If neither work, let me know!

Thank you this helps! I'll PM you if I have any more issues :)

32
Game Help / Re: Another Preset Issue.
« on: March 10, 2017, 09:10:32 pm »


This could be your first problem.
Unless it's how you'd like it to be, your bodyMatR is lined to the .png file 'leftbody', which could be why the right hand side of the body isn't showing up. A good thing to do would be to rename both the .png file name and the name in your .mat file to '
rightbody.

What I've always done with presets is something like this:



Having the files names after your preset number is a good way to make sure it'll actually work -- there may not be a requirement for it to work but I've always found it a good way of making sure it's all properly lined together via the game itself, the .mat files and the .png/.jpeg files.
Therefore, because I do it myself - I'd recommend calling your .png files this:

preset_5bodyL
preset_5bodyR
preset_5headL
preset_5headR
preset_5tail
preset_5mane
preset_5eyeL
preset_5eyeR

Then also putting that in your .mat files in the correct and appropriate places.
If you're still running into problems, no doubt some helpful floofs will help you out with the glowing - as that is beyond my preset knowledge. ;)


Mmm no thats the thing (excuse extremely lazy grammer now.)

i've changed the MatR section to bodyleft because i thought it would fix the problem to just get it back to normal... Thats what made everything blank out to white. Before i changed it it was "bodyleft " and :bodyright" and only the left side was working...

Perhaps it's an actual code error...
What may help is if you could provide me with a full code for the glowing preset with MatL and MatR marked "BodyL" and "BodyR" ect.

Otherwise the only other thing i could think of that's causing a problem is paint tool sai.

I can make normal presets (non double sided) ones perfectly tho... png or jpg.

33
Game Help / Another Preset Issue.
« on: March 10, 2017, 08:29:53 pm »
ALRIGHT So recently I've decided to make a glowing preset... So I've Used This Code.

Code: [Select]
material preset_10_bodyMatL
{
 technique
 {
  pass
  {
   ambient 0.5 0.5 0.5
   texture_unit
   {
    texture YOURBODYTEXTURE.PNG
   }
  }
  pass
  {
   emissive 1.0 1.0 1.0
   scene_blend alpha_blend
   texture_unit
   {
    texture YOURBODYGLOWTEXTURE.PNG
   }
  }
 }
}
material preset_10_bodyMatR
{
 technique
 {
  pass
  {
   ambient 0.5 0.5 0.5
   texture_unit
   {
    texture YOURBODYTEXTURE.PNG
   }
  }
pass
  {
   emissive 1.0 1.0 1.0
   scene_blend alpha_blend
   texture_unit
   {
    texture YOURBODYGLOWTEXTURE.PNG
   }
  }
 }
}
material preset_10_headMatL
{
 technique
 {
  pass
  {
   ambient 0.5 0.5 0.5
   texture_unit
   {
    texture YOURHEADTEXTURE.PNG
   }
  }
pass
  {
   emissive 1.0 1.0 1.0
   scene_blend alpha_blend
   texture_unit
   {
    texture YOURHEADGLOWTEXTURE.PNG
   }
  }
 }
}
material preset_10_headMatR
{
 technique
 {
  pass
  {
   ambient 0.5 0.5 0.5
   texture_unit
   {
    texture YOURHEADTEXTURE.PNG
   }
  }
pass
  {
   emissive 1.0 1.0 1.0
   scene_blend alpha_blend
   texture_unit
   {
    texture YOURHEADGLOWTEXTURE.PNG
   }
  }

 }
}
material preset_10_eyeMatL
{
 technique
 {
  pass
  {
   cull_hardware none
   cull_software none
   texture_unit
   {
    texture YOUREYETEXTURE.PNG
   }
  }
 }
}
material preset_10_eyeMatR
{
 technique
 {
  pass
  {
   cull_hardware none
   cull_software none
   texture_unit
   {
    texture YOUREYETEXTURE.PNG
   }
  }
 }
}
material preset_10_tailMat
{
 technique
 {
  pass
  {
   ambient 0.5 0.5 0.5
   texture_unit
   {
    texture YOURTAILTEXTURE.PNG
   }
  }
pass
  {
   emissive 1.0 1.0 1.0
   scene_blend alpha_blend
   texture_unit
   {
    texture YOURTAILGLOWTEXTURE.PNG
   }
  }
 }
}
material preset_10_maneMat
{
 technique
 {
  pass
  {
   ambient 0.5 0.5 0.5
   cull_hardware none
   cull_software none
   scene_blend alpha_blend
   alpha_rejection greater_equal 250
   texture_unit
   {
    texture YOURMANETEXTURE.PNG
   }
  }
 }
}

But I've Modified it to this because for some reason when I use that code my entire preset is blank white.

Code: [Select]
material preset_5_bodyMatL
{
technique
{
pass
{
   ambient 0.5 0.5 0.5
   texture_unit
   {
    texture leftbody.PNG
   }
  }
  pass
  {
   emissive 0.0 0.0 1.0
   scene_blend alpha_blend
   texture_unit
   {
    texture glow.PNG
   }
  }
 }
}
material preset_5_bodyMatR
{
technique
{
pass
{
   ambient 0.5 0.5 0.5
   texture_unit
   {
    texture leftbody.PNG
   }
  }
  pass
  {
   emissive 0.0 0.0 1.0
   scene_blend alpha_blend
   texture_unit
   {
    texture glowright.PNG
   }
  }
 }
}
material preset_5_headMatL
{
 technique
 {
  pass
  {
   ambient 0.7 0.7 0.7
   texture_unit
   {
    texture headleft.PNG
   }
  }
pass
  {
   emissive 0.0 0.0 1.0
   scene_blend alpha_blend
   texture_unit
   {
    texture headglowleft.PNG
   }
  }
 }
}
material preset_5_headMatR
{
 technique
 {
  pass
  {
   ambient 0.7 0.7 0.7
   texture_unit
   {
    texture headright.PNG
   }
  }
pass
  {
   emissive 0.0 0.0 1.0
   scene_blend alpha_blend
   texture_unit
   {
    texture headglowright.PNG
   }
  }

 }
}
material preset_5_eyeMatL
{
 technique
 {
  pass
  {
   cull_hardware none
   cull_software none
   texture_unit
   {
    texture eyeleft.PNG
   }
  }
 }
}
material preset_5_eyeMatR
{
 technique
 {
  pass
  {
   cull_hardware none
   cull_software none
   texture_unit
   {
    texture eyeright.PNG
   }
  }
 }
}
material preset_5_tailMat
{
 technique
 {
  pass
  {
   ambient 0.7 0.7 0.7
   texture_unit
   {
    texture tail.PNG
   }
  }
pass
  {
   emissive 0.0 0.0 1.0
   scene_blend alpha_blend
   texture_unit
   {
    texture tailglow.PNG
   }
  }
 }
}
material preset_5_maneMat
{
 technique
 {
  pass
  {
   ambient 0.7 0.7 0.7
   cull_hardware none
   cull_software none
   scene_blend alpha_blend
   alpha_rejection greater_equal 250
   texture_unit
   {
    texture mane.PNG
   }
  }
 }
}

Not mega changes but then only HALF The body was showing... the right side WILL NOT WORK! >:(

SO after changing to almost every preset folder, deleting and renaming... I even used a normal Mat file and simply added the needed coding such as

Code: [Select]
material preset_4_bodyMatL
{
technique
{
pass
{
                        ambient 0.7 0.7 0.7
texture_unit
{
texture preset_4body.png
   }
  }
  pass
  {
   emissive 0.0 0.0 1.0
   scene_blend alpha_blend
   texture_unit
   {
    texture MyGlow.PNG
}
}
}
}
material preset_4_bodyMatR
{
technique
{
pass
{
                        ambient 0.7 0.7 0.7
texture_unit
{
texture preset_4body.png
   }
  }
pass
  {
   emissive 0.0 0.0 1.0
   scene_blend alpha_blend
   texture_unit
   {
    texture GlowRight.PNG
}
}
}
}
material preset_4_headMatL
{
technique
{
pass
{
                        ambient 0.7 0.7 0.7
texture_unit
{
texture preset_4head.jpg
   }
  }
pass
  {
   emissive 1.0 1.0 1.0
   scene_blend alpha_blend
   texture_unit
   {
    texture HeadGlowL.PNG
}
}
}
}
material preset_4_headMatR
{
technique
{
pass
{
                        ambient 0.7 0.7 0.7
texture_unit
{
texture preset_4head.jpg
   }
  }
pass
  {
   emissive 0.0 0.0 1.0
   scene_blend alpha_blend
   texture_unit
   {
    texture YOURHEADGLOWTEXTURE.PNG
}
}
}
}
material preset_4_eyeMatL
{
technique
{
pass
{
cull_hardware none
cull_software none
texture_unit
{
texture preset_4eye.jpg
}
}
}
}
material preset_4_eyeMatR
{
technique
{
pass
{
cull_hardware none
cull_software none
texture_unit
{
texture preset_4eye.jpg
}
}
}
}
material preset_4_tailMat
{
technique
{
pass
{
                        ambient 0.7 0.7 0.7
texture_unit
{
texture preset_4tail.jpg
   }
  }
pass
  {
   emissive 0.0 0.0 1.0
   scene_blend alpha_blend
   texture_unit
   {
    texture YOURTAILGLOWTEXTURE.PNG
}
}
}
}
material preset_4_maneMat
{
technique
{
pass
{
ambient 0.7 0.7 0.7
                        cull_hardware none
                        cull_software none
                        scene_blend alpha_blend
                        alpha_rejection greater_equal 250
                        texture_unit
{
texture preset_4mane.png
}
}
}
}

But then it just turns out completely white...

I've changed it to jpg to test it as you can see but nothing works...
I've tried to change it to JPG,JPEG, jpg, jpeg, PNG, png

Nothing works.
At most the only thing working is the eyes.

Frustrating...
Is there a new code I need for the FH update or something?
-so tired...- (excuse typing mess)

34
Presets & Markings / Mea's Preset Bundle (COMMISSIONS OPEN)
« on: March 10, 2017, 07:14:06 pm »
Hey All!
I've decided to get back in the preset game and advertise a little more while doing so...
I've just started a new DA so there isn't much to show... But you can read more about the preset commissions here on my DA

http://meawolfenx.deviantart.com/
Gallery > Feral Heart Folder

MEGA TIP: Right Click On The Image And Select "Open Image In New Tab" To Increase The Size Of The Picture For A Better View!
CTRL & + To Zoom In
CTRL & - To Zoom Out



Presets

Free Presets:

Download Here - https://meawolfenx.deviantart.com/art/Free-Wolf-Preset-Feral-Heart-716179413


Download Here - https://meawolfenx.deviantart.com/art/Free-Unicorn-718860886



Presets For DA Points:

Realistic Wolf

Purchase Here - http://meawolfenx.deviantart.com/art/Realistic-Wolf-Preset-Feral-Heart-668530950

Male Tiger

Purchase Him Here http://meawolfenx.deviantart.com/art/Tiger-Feral-Heart-Preset-For-Sale-668173223

Female Tiger / Tigress

Purchase Her Here http://meawolfenx.deviantart.com/art/Tigress-Feral-Heart-Preset-For-Sale-668178575




Preset Requests
Note: Not For Download... These Are Users OC's


Owned by: Willowwolf2014

https://pre00.deviantart.net/018c/th/pre/f/2017/325/7/5/75229c6025e6afa64a8374cecf51672f-dbue7bn.png
Owned by: Marcelle999


Request / No Name

Link to preset: http://meawolfenx.deviantart.com/art/FH-Preset-Request-Feral-Heart-675430514

__________________________________________________________
NOTE: These Three Below Are SUPER OLD... I made them around 5 years ago.
__________________


_>> Golden Dragon <<_



http://www.mediafire.com/download/48wtt4xqrcfjtfb/Golden+Dragon+preset.zip


The Dark Wolf.




http://www.mediafire.com/download.php?86u8t1hmc12c78h

Element Of Earth [C/F]



Download Link -- http://www.mediafire.com/download.php?dnj1vdxh398bm1h






____________________________________________________________________

For more creations, check these links out :)
http://tinyurl.com/dxaw8ck
https://meawolfenx.deviantart.com

35
Request a Preset/Marking / Re: Markings for very simple preset
« on: March 10, 2017, 07:07:06 pm »
I Take DA Points...

I'd be willing to try do what you want if you'd explain a little further :)

You Can Contact Me Faster On My DA -
http://meawolfenx.deviantart.com/

36
Game Help / Re: Presets...
« on: March 10, 2017, 04:16:09 pm »
Generally, it's not a requirement to have the preset sync to be able to use the presets in-game and show them to other players - the preset sync is for those who would like an easy-upload for their preset .fhp files and an easy-access technique for people to see presets uploaded to the sync without having to stalk their character biography and download it themselves.

The preset works perfectly fine, It's just the fact of getting it into the game is a problem..

Also above I've mentioned a question about when I'd like to sell my presets...

If the preset is working fine in the Creative Den then it should certainly also be working in-game.

Looking at your username, I've noticed that you have a
_ in it, and sometimes this can mess/confuse the .fhp file itself, as your preset would be called - Mea_WolfenX_3.fhp and having the extra _ can be what's causing it to not be working in-game after login when creating your character.
There may be a solution to the problem without the change of username; but if not, then it may end up with the suggestion that you should change your username to
MeaWolfenX and then try re-exporting your preset so the .fhp file can work properly.

Also above I've mentioned a question about when I'd like to sell my presets...

If you mean by the question, 'Does that mean when I give out my presets now that I have to give out more than the exported preset file?' then no that's not what it means.

If you're selling presets, you should already be sending the .RAR/.ZIP files containing the .png files and the .fhp file (not the exported .fhp file, the one in the preset_# folder) so they can then put it in their own C: > FeralHeart > my_presets > preset_# and export and upload it themselves to either the preset sync or MediaFire/DropBox to get others to see it.


Alright Awesome! I've just found out the problem... I exported it last night and tried uploading it... It didn't work.
So today I decided to log in and check... Still nothing so I went to re-export the file and Then it worked...

I think me logging in affected the preset some how... As well as because of my username change Perhaps a login was needed for the file to export correctly.

Everything is working as it should now thanks.
~ Sorry for the troubles.

37
Game Help / Re: Presets...
« on: March 10, 2017, 04:03:06 pm »
As you have a new computer and a newly installed FeralHeart, be sure to remember that all presets should be .png files, and you should remember to change that in the preset folder material file as well.

When you export a new preset, you need to do that through the Creative Den on the login screen, and load the preset 3 in Preset Maker. Once the preset has loaded onto your character, you can then export the preset. Do that now, and see if you get a 'Failed to Export' message. If so, continue with the next step.



If your preset has failed to export, you're best off trying to use a different preset folder, mainly because the preset folder you tried to use could be corrupted in some way and does not want to export a preset for you.

If you don't want to do that, then maybe give your preset to someone you can trust and they can export it from the preset folder you're wanting to have used. To do this, follow the following steps:

▸ Give your chosen friend the preset material file and all of the images to go with it (head, body, tail, mane etc).

▸ Once they have placed them in the specific folder you want, get them to launch FeralHeart.

▸ Get them to write your username in the username panel/box on the login screen. Do not give away your password, only the username is needed.

▸ Ask them to go into Preset Maker through the Creative Den and export the preset for you.




Once they go into their 'presets' folder afterwards (Private Presets folder, only if they have preset sync), get them to send you the exported preset so you can place it in your own 'presets' folder, (again, Private Presets folder, only if you have preset sync). Since they entered your username in the username panel on the login screen (hopefully correctly), exporting the preset after automatically exported the preset to your name and it should then work for you just fine once you recieve that. If you're still having issues, then come back and something can be sorted out.

Thank you for the additional info but I have much knowledge on preset creation...
The problem is that the preset will not show up when I try to create a character after login.

This doesn't really help me... Since I've already exported the preset file in 3 different folders. 3, 4 and attempt of 5.
The preset just wont show up. I've even renamed the .fhp file and tried to upload it.

The preset works perfectly fine, It's just the fact of getting it into the game is a problem..
Do I have to download the preset sync for any of this to work in general?

Also above I've mentioned a question about when I'd like to sell my presets...

38
Game Help / Presets...
« on: March 10, 2017, 03:29:43 pm »
Alright so I'm a little new to this... New preset thing.
So I've made a few presets now (Usually I like to sell them)
But after I've reinstalled the game (Due to new PC) I created a preset in preset_3 Folder... Never changed anything... Diddle daddle did the usual.

Then I simply exported it... Seeing it wouldn't show up in the create a character page as you login I figured I had to upload it here... So I went to the user panel and I uploaded the preset from the exported presets folder... (Idk if that was right) And still nothing showed up on the create a character page.

Am I supposed to upload the exported preset file or the actual "Preset_3 Folder" ?

Also no... I did not download the new presetsync, cause my internet is currently limited.
Does that affect anything?


Does that mean when I give out my presets now that I have to give out more than the exported preset file?

39
Game Help / Re: Username
« on: March 09, 2017, 03:48:27 pm »
It certainly is!
You also do not need "permission" to change your username, as it's not an addition to the User Panel that you can do without any email-sending etc.


Spoiler
1) Go to FeralHeart
2) Go to the User Panel
3) Log in with your current username and password, then scroll down just underneath the 'Preset Uploader' section until you find 'Change Username'.
4) Type in your new desire username and press 'Change'. If your FeralHeart username has successfully been changed then it will ask you to log into the User Panel again with your new username, and by doing so it's a "confirmation" to the server that this was the desired change, and this shall apply to your login in-game as well.

Thx so much! This was a big step for me... Since i've been loyally playing this game under this name for so many years :D

40
Game Help / Re: Direct3d9 Rendering System / (DirectX)
« on: March 09, 2017, 03:32:15 pm »

Pages: 1 2 3 [4] 5 6 ... 33