Graal Forums

Graal Forums (https://forums.graalonline.com/forums/index.php)
-   Level Design (https://forums.graalonline.com/forums/forumdisplay.php?f=6)
-   -   1st inside house (https://forums.graalonline.com/forums/showthread.php?t=80371)

vampireslayer 07-05-2008 02:10 PM

1st inside house
 
1 Attachment(s)
this is my 1st made inside level/map :D
what ya ppl think about it?

cbk1994 07-05-2008 02:32 PM

Not very good ... 1/10.

I don't like that floor at all; try using some of the other tiles, not just the ones that tile like that.

The walls are quite horrid in my opinion; I prefer the newer style of walls (which shows the up/down but not the side)

You have something around the one door but not the others. You have too many plates on the table and the ones on the sides are running off causing a tile error.

You have a bathtub next to a bar ... ?

The pot should be removed or at least moved so it is not overlapped with the barrels.

Also maybe add a door to cover the door holes so they don't look so bad.

vampireslayer 07-05-2008 03:01 PM

1 Attachment(s)
is this better?

Darlene159 07-05-2008 03:19 PM

Not bad for a first level, but there are a lot of errors in the walls.

vampireslayer 07-05-2008 03:27 PM

1 Attachment(s)
how is this?
i fixed the errors in the walls, i hope :)
and i put some kind of carpet on the ground.

cbk1994 07-05-2008 03:38 PM

Try working on what I said ... also try floors which aren't patterns.

vampireslayer 07-05-2008 04:01 PM

1 Attachment(s)
Quote:

Originally Posted by cbk1994 (Post 1400944)
Try working on what I said ... also try floors which aren't patterns.

you mean this?
i used some without pattern too.

Elizabeth 07-05-2008 04:28 PM

it doesnt look very original.

Crow 07-05-2008 05:05 PM

I somehow really, really like this. Especially the walls, they are so creative, and something not seen before (at least I dont know any levels using walls like those). I also prefered the kitchen floor you used in the first few versions. But there are still some errors here and there.

Elizabeth 07-05-2008 05:10 PM

Quote:

Originally Posted by cbk1994 (Post 1400933)
You have a bathtub next to a bar ... ?


..thats a sink

cbk1994 07-05-2008 05:35 PM

Quote:

Originally Posted by Elizabeth (Post 1400969)
..thats a sink

That's one badass sink.

DustyPorViva 07-05-2008 07:13 PM

Actually that's a stove :)

Darlene159 07-05-2008 07:49 PM

Quote:

Originally Posted by DustyPorViva (Post 1401005)
Actually that's a stove :)

They are talking about the first screeny. The thing with the water in it.

To me, it looks like one of those things you keep water in for farm animals outside.

Tigairius 07-05-2008 08:09 PM

I like the first one the best, something about it I really like :)

Crono 07-05-2008 09:08 PM

Looks oldskool.

I like the overall appearance of the inside, but theres a lot of "errors" with the tiling. For a first inside level it's pretty good though.

grawlgamer 07-06-2008 05:28 AM

Quote:

Originally Posted by cbk1994 (Post 1400944)
also try floors which aren't patterns.

I like to assume the owner can't afford fancy tile floor.

Very nice level, it has a homey feel, not the newer one though, go back to the one without tile.

Faulkon 07-13-2008 11:34 PM

For your first house i'd recommend you stick to the basic way of building houses. Use Graal's "Predefined Objects" for houses (Wall, Corner, Floor, etc.) Focus on the way tiles line up with each other and play with it until you have a perfectly built, normal looking house. Anyone could have built it, but the point is that you did... that brings you one step closer to being a good level builder.

This is what your house would look like if you built it with the standard tiling:

http://i308.photobucket.com/albums/k...yer_house1.jpg

As you get more practice, you can experiment with doing more creative stuff. I do like the "homy" feel you created with the brown wall tiles. Changing the color of the level IS something an experienced designer might want to do. But I think the propper way to do it would be to use a custom tileset with custom colors. That falls into graphics art. (basically you'd need to make a new version of pics1.png and change the colors of the tiles in photoshop). Here's an example of how to achieve the same color effect by editing the tileset.

http://i308.photobucket.com/albums/k...yer_house2.jpg

Keep designing man. But start with the basics and let creativity come in time.

DustyPorViva 07-13-2008 11:43 PM

Just slapping a wall along another wall is a huge tile-error. I would like to see you actually create them into rooms next to the other rooms, instead of being attached by nothing.

Faulkon 07-14-2008 12:07 AM

Well, attaching the side rooms without their own wall could just be a matter of style. But I actually agree with Dusty. The normal way to do it is to make each room with it's own wall.

Fox's house from the Graal Classic server has a good example of connecting rooms.

http://i308.photobucket.com/albums/k...fox_house2.jpg

The joining door jams can be done with npcs like this so you can walk underneath them:

NPC Code:

if (playerenters) {
drawoverplayer;
dontblock;
}


Rufus 07-14-2008 12:09 AM

Fox's house (that was previously) on Classic is an excellent example of a house inside, I love it.

DustyPorViva 07-14-2008 12:14 AM

Are the door's still links? That was so annoying 'jumping' room to room. I also love how Fox's house seems to just be connected EVERYWHERE.

Rufus 07-14-2008 12:41 AM

Quote:

Originally Posted by DustyPorViva (Post 1402989)
Are the door's still links? That was so annoying 'jumping' room to room. I also love how Fox's house seems to just be connected EVERYWHERE.

It's not there anymore :rolleyes:

DustyPorViva 07-14-2008 12:46 AM

Oh man, they got rid of Fox's place?


... they really god rid of it... for a PK Paradise? Don't they learn no PKers actually use a PK area actually designated for PK?

vampireslayer 07-15-2008 04:48 PM

1 Attachment(s)
i wanted to make somethin unique, so i made this :D
i kno, it looks ugly :P

Imperialistic 07-15-2008 04:51 PM

Quote:

Originally Posted by Faulkon (Post 1402983)
The joining door jams can be done with npcs like this so you can walk underneath them:

NPC Code:

if (playerenters) {
drawoverplayer;
dontblock;
}


or even b3tt3r...

NPC Code:

function onCreated(){
drawoverplayer;
dontblock;
}



or maybe or maybe or maybe...
making it clientside ^______^

Crono 07-15-2008 05:10 PM

Quote:

Originally Posted by Imperialistic (Post 1403283)
or even b3tt3r...

NPC Code:

function onCreated(){
drawoverplayer;
dontblock;
}


That won't work offline though.

Crow 07-15-2008 06:55 PM

Quote:

Originally Posted by Imperialistic (Post 1403283)
or even b3tt3r...

NPC Code:

function onCreated(){
drawoverplayer;
dontblock;
}



or maybe or maybe or maybe...
making it clientside ^______^

Won't work offline, as Crono said, and it's mixed GS1 and GS2, the worst thing you could do.

Faulkon 07-17-2008 05:50 AM

Quote:

Originally Posted by vampireslayer (Post 1403280)
i wanted to make somethin unique, so i made this :D
i kno, it looks ugly :P

It may look ugly, but at least you learned something. :p I still recommend staying close to the basics at first. Unique does not always = better.

Quote:

Originally Posted by Imperialistic (Post 1403283)
or even b3tt3r...

NPC Code:

function onCreated(){
drawoverplayer;
dontblock;
}



or maybe or maybe or maybe...
making it clientside ^______^

You're right about the code. If you want it to work both offline and offline use this...

NPC Code:

//#CLIENTSIDE
if (playerenters) {
dontblock;
drawoverplayer;
}


Imperialistic 07-17-2008 10:01 PM

okay, i think crono sumed it up guys.. i dont need 3 responses on saying the exact same **** as crono.. kthx?

Cy36 07-20-2008 04:21 PM

will not work offline like crono said

Vimerge 07-20-2008 09:03 PM

Niet slecht gedaan hoor ;)

Quote:

Originally Posted by Imperialistic (Post 1403283)
or even b3tt3r...

NPC Code:

function onCreated(){
drawoverplayer;
dontblock;
}



or maybe or maybe or maybe...
making it clientside ^______^

That won't work offline though...

Crono 07-20-2008 09:54 PM

Alright guys, enough of the "that won't work offline". I think he gets it by now. :p

maximus_asinus 07-20-2008 09:58 PM

Quote:

Originally Posted by Crono (Post 1405984)
Alright guys, enough of the "that won't work offline". I think he gets it by now. :p

you don't work offline.

WanDaMan 07-20-2008 11:12 PM

Keep up the work, you're improving with every level you make as shwon in the second house you posted! :D Start working with images in your level and NPC's to give it a really nice effect. A light effect would look nice too!

Quote:

Originally Posted by Faulkon (Post 1402974)
As you get more practice, you can experiment with doing more creative stuff. I do like the "homy" feel you created with the brown wall tiles. Changing the color of the level IS something an experienced designer might want to do. But I think the propper way to do it would be to use a custom tileset with custom colors. That falls into graphics art. (basically you'd need to make a new version of pics1.png and change the colors of the tiles in photoshop). Here's an example of how to achieve the same color effect by editing the tileset.

http://i308.photobucket.com/albums/k...yer_house2.jpg


You hit the nail on the head there! I've always said this to people whom I've tought in the past, however; none have actually taken the advice and haven't implemented any of their own work into their levels.

Crono1508 07-21-2008 08:43 PM

Your house is inside out.

The walls are suppose to be the other way.

Draenin 07-22-2008 04:19 AM

The annexed room on the right doesn't look right. There's a lack of dimension on the left wall where the walls just cut off. I know you're going for perspective or some such nonsense, but it would look better filled in. Use the space you have left.

TESTRETIS 07-22-2008 06:09 AM

For your first levels, I don't recommend linking the insides of the house, you are probably better off learning making available walking space between the rooms, then learn how to link later.


All times are GMT +2. The time now is 02:41 PM.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.