Feral Heart

Help & Guidance => Game Help => Topic started by: Gryphon Azura on April 26, 2012, 08:46:13 pm

Title: A question about Portals
Post by: Gryphon Azura on April 26, 2012, 08:46:13 pm
OK. I was creating a map for FH, and of course I have the portal to Cape Of Distant Worlds, however, I was wondering if its possible to make more portals leading to my other maps? like the small black ones to go to caves? and I can make a cave map it goes to? Is this possible, and if so, how do I do it?

Thanks, any help will be greatly apreciated!!! ^-^
Title: Re: A question about Portals
Post by: Necromancy on April 26, 2012, 08:52:33 pm
Very possible. I thought there was an option in map maker that allowed you to add a portal and such. I'm not a map maker, though, so I'm not entirely sure how to.
PM CloudFish if he doesn't reply to this thread. He'll tell ye exactly how to do it. xD
Title: Re: A question about Portals
Post by: Gryphon Azura on April 26, 2012, 08:54:04 pm
Ok, thanks!!!!! There is no clear button labeled "create new portal" or anything like that. Ill wait a while and PM them if no one gives me a way ^-^
Title: Re: A question about Portals
Post by: Necromancy on April 26, 2012, 08:56:40 pm
xD Alright then. I'd figure it out for you but I don't have my laptop at the moment. If you don't have an answer by the time I'm next online, I'll try and work something out.
Title: Re: A question about Portals
Post by: CloudFish on April 26, 2012, 09:12:10 pm
To create other maps, you need to use gates.

Gates can be placed anywhere on your map, the most important part of the linking process is the coordinates and name entered into the dialog box.

Basically, you need to pull up the map you're wanting to link your base map to. My basemap could be something like Farrah Island. And my map I want to link it to could be Terror Caverns. I'd pull up the terror cavers map, place my mouse on where I'd want to APPEAR from the other map, and copy the coordinates in the right hand box.

Then I'd pull up the base map(Farrah), add the gate with the correct name, and enter the coordinates from the linked map(Terror). It basically works the same for linking back to the other map.

If this isn't explained well enough, tell me and I'll elaborate.
Title: Re: A question about Portals
Post by: Gryphon Azura on April 26, 2012, 09:58:44 pm
Yes! thanks so much it worked! I was wondering what a gate was. Thanks! ;D
Title: Re: A question about Portals
Post by: CloudFish on April 26, 2012, 10:06:38 pm
No problemo, don't hesitate to PM or post here again if you need helperz.
Title: Re: A question about Portals
Post by: Gryphon Azura on April 26, 2012, 10:26:38 pm
Ok, i need help with something els.... a texture. I basically want to make some flourite crystals in diffrent colors. Which file do i modify, save, and apply to the crystal in object creater to do this? where do i save it and how do i apply it?
Title: Re: A question about Portals
Post by: CloudFish on April 26, 2012, 10:51:06 pm
Go to media>objects>misc. There, near the top will be crystal.material file, crystal1.mesh, crystalGlow.jpeg, and crystalTex.jpeg. These will be the files you'll need to edit, but make copies of these, and don't alter the ones in this folder. Copy them and place them in my_objects. Then you can alter the textures with a photoediting software. If you need help with the material file, let me know.
Title: Re: A question about Portals
Post by: Gryphon Azura on April 26, 2012, 11:16:39 pm
how do i edit the .material? which file do i change to make it, say red. Im using GIMP. and then how do I add the color on object maker?
Title: Re: A question about Portals
Post by: CloudFish on April 26, 2012, 11:30:39 pm
Open the .material in note pad, you'll see something like this;

material crystalMat
{
   technique
   {
      pass
      {
         cull_hardware none
         cull_software none
         emissive 1 1 1
         texture_unit
         {
            env_map spherical
            texture crystalTex.jpg
         }
      }
   }
}
material crystalGlowMat
{
   technique
   {
      pass
      {
         scene_blend add
         depth_write off
         fog_override true
         texture_unit
         {
            texture crystalGlow.jpg
            tex_address_mode clamp
            wave_xform scale_x sine 0.9 0.5 0 0.1
            wave_xform scale_y sine 0.9 0.5 0 0.1
         }
      }
   }
}


Right? Well basically, you'll want to add whatever edited files in the same fashion. Like if you made the crystal red in gimp (In which case, you'd change the blueish colours in the two jpeg files) and saved them as crystalTexR.jpeg and crystalGlowR.jpeg, you'd add those files to your my_objects and then add these to the material file (for example of course).


material crystalMat
{
   technique
   {
      pass
      {
         cull_hardware none
         cull_software none
         emissive 1 1 1
         texture_unit
         {
            env_map spherical
            texture crystalTexR.jpg
         }
      }
   }
}
material crystalGlowMat
{
   technique
   {
      pass
      {
         scene_blend add
         depth_write off
         fog_override true
         texture_unit
         {
            texture crystalGlowR.jpg
            tex_address_mode clamp
            wave_xform scale_x sine 0.9 0.5 0 0.1
            wave_xform scale_y sine 0.9 0.5 0 0.1
         }
      }
   }
}

Then in object maker, you'll need to enter the names of the files (Cap sensitive) into object maker after loading the default crystal, and then add them to a group called something like "SchaesObjects".

If that's confusing, again, let me know and I'll expound it.
Title: Re: A question about Portals
Post by: Gryphon Azura on April 26, 2012, 11:47:35 pm
ok, im confused. I copied excatly in notepad what you showed me (replacing it with what i named it) and I went into object maker, loaded the default crystal like you said. please explain in detail what i do next, im lost.
Title: Re: A question about Portals
Post by: CloudFish on April 26, 2012, 11:51:17 pm
Did you do it by selecting it from the Misc. group, or did you manually enter the mesh name?

You'll want to manually enter the mesh name, ( I think it's the second tab in object maker) and then type in your custom texture name into the box below where you typed in the mesh. Make sure to add the tags on the end, such as .mesh and .mat
Title: Re: A question about Portals
Post by: Gryphon Azura on April 26, 2012, 11:54:25 pm
Its still blue, with no glow
Title: Re: A question about Portals
Post by: CloudFish on April 26, 2012, 11:58:34 pm
material crystalRMat
{
   technique
   {
      pass
      {
         cull_hardware none
         cull_software none
         emissive 1 1 1
         texture_unit
         {
            env_map spherical
            texture crystalTexR.jpg
         }
      }
   }
}
material crystalGlowRMat
{
   technique
   {
      pass
      {
         scene_blend add
         depth_write off
         fog_override true
         texture_unit
         {
            texture crystalGlowR.jpg
            tex_address_mode clamp
            wave_xform scale_x sine 0.9 0.5 0 0.1
            wave_xform scale_y sine 0.9 0.5 0 0.1
         }
      }
   }
}




I forgot to tell you to change the material line at the top. Use my basis examples.. Should work then.
Title: Re: A question about Portals
Post by: Gryphon Azura on April 27, 2012, 12:02:38 am
Meh. still not working. I'll try to work it out later
Title: Re: A question about Portals
Post by: CloudFish on April 27, 2012, 12:06:30 am
I'll go try to find you a tutorial that's better than me. I'll edit this post when I find it.
Title: Re: A question about Portals
Post by: CloudFish on April 27, 2012, 07:02:40 pm
Or you could just use Glave's meshes, since she's already got 'em done.

http://www.mediafire.com/?d66o7dp1drxai64 (http://www.mediafire.com/?d66o7dp1drxai64) <-Glave's rubies and junk.
Title: Re: A question about Portals
Post by: Gryphon Azura on April 28, 2012, 05:17:14 pm
I did, but whatever i do it wont take the material when i press add new the material switches to crystalMat???
Title: Re: A question about Portals
Post by: CloudFish on April 28, 2012, 05:25:39 pm
Using Glave's?
Title: Re: A question about Portals
Post by: Gryphon Azura on April 28, 2012, 05:39:51 pm
Yes.