![]() |
Beginner asking for some help. - Printable Version +- Frictional Games Forum (read-only) (https://www.frictionalgames.com/forum) +-- Forum: Amnesia: The Dark Descent (https://www.frictionalgames.com/forum/forum-6.html) +--- Forum: Custom Stories, TCs & Mods - Development (https://www.frictionalgames.com/forum/forum-38.html) +---- Forum: Development Support (https://www.frictionalgames.com/forum/forum-39.html) +---- Thread: Beginner asking for some help. (/thread-23379.html) |
RE: Beginner asking for some help. - FlawlessHappiness - 09-30-2013 1st screenshot: Don't you think it's just a little bit too dark? I mean there's windows placed literally on any wall. The room would be lighter. And there's even torches too ![]() Can't see much more because of the Mysterious Picture Upload Darkness... 2nd screenshot: The room is too big. Much of the space isn't used and it's just blank walls. Start out by having a small room, and then expand it, when you need to. Starting with a huge room can be too much. Only make it large, if you have something to fill it with, and at this point you don't seem to ![]() Also remember that a room doesn't have to be a square. About the lighting, what would people in this room do when it became night? You need at least a chandelier. Also those candles in the corner... what are they doing there? They seem to just stand there like they're not friends with the other furnitures. Let them socialize a bit. Place them where they have a purpose... Placing light in a corner isn't a purpose... RE: Beginner asking for some help. - daortir - 09-30-2013 Thank you for answering ! You made me realize something very important about the size of the rooms. I'm changing a lot of things in the levels I built already, and it already looks better About the first picture, I have to say that the level is a bit strange, i nearly want to send it to you so you can have a better idea of what it really looks like x)... It's completely flooded, and I didn't want to show the player too much of where he is. I'll probably add a bit more lighting though, especially around the torches. Thanks again, If anyone else have something to add I'd be pleased to learn more ! RE: Beginner asking for some help. - Kreekakon - 09-30-2013 Moved to Development Support (Freakin about time too XD) RE: Beginner asking for some help. - daortir - 10-06-2013 Hey ! Back after a few days of inactivity for a small question : how can I make the player fall to the ground, then get up ? I'd find this pretty useful and I couldn't find the right Script Function. If it's simple I'm sorry for wasting your time xD Edit : Huehue, problem solved thanks to a hairy member ! RE: Beginner asking for some help. - daortir - 10-19-2013 Hello ! Here I am, with a question about custom items. I'd like to know how make a custom item show up in my inventory, and becoming usable. I'm not talking about the ingame model. As an exemple I click on a mushroom which has the ingame model of a sewer fungi, and the player gets an item which would be a mushroom part in his inventory. My question is about the inventory item. RE: Beginner asking for some help. - Kreekakon - 10-19-2013 (10-19-2013, 01:07 PM)daortir Wrote: Hello ! Copy pasta tiem!! Quote: RE: Beginner asking for some help. - daortir - 10-19-2013 First of all thanks for the super fast answer <3. Will I have to convert a picture to a .tga ? And when I see custom items in CS, when the player uses them there is very often a black square around them. Will I be able to avoid that ? RE: Beginner asking for some help. - Kreekakon - 10-19-2013 Yes, you will have to convert it to a .tga. Generally the dimensions seem to be 60x60 It's been a fair while since I did an inventory icon, so I'm not sure if I had left the "blank" parts black, or removed them into transparent pixels like in .png. Give both a try! RE: Beginner asking for some help. - daortir - 10-21-2013 Hey everyone ! I'm now concerned about adding my own musics to the CS. I would like to know how it works, in a general way : o. I mean, do I have to use a playmusic function for each track ? Can I just set a music folder somewhere ? I'm quite clueless, and I didn't find a clear answer ><... So... yeah, how can I change the musics of my CS so that they are mostly custom ? Thanks in advance QuestionMan. RE: Beginner asking for some help. - The chaser - 10-21-2013 It's easy: -Get a track or sound to use -Convert it to .ogg -Put it in /custom_stories/YOURCS/music/ AND in /redist/music/YOURCS -Then, use this: PlayMusic("NAMEOFYOURTRACK.ogg", true, 1, 1, 1, true); Remain to name your track like something unique, like "Yourcsname_hall", or it will conflict with other files. |