Graal Forums  

Go Back   Graal Forums > Development Forums > Level Design
FAQ Members List Calendar Today's Posts

Closed Thread
 
Thread Tools Search this Thread Display Modes
  #1  
Old 08-08-2002, 10:24 AM
Graal2001_LAT Graal2001_LAT is offline
Banned
Graal2001_LAT's Avatar
Join Date: Jul 2002
Location: g forums
Posts: 606
Graal2001_LAT is on a distinguished road
Lightbulb Level editing FAQ's

Okay, I have constructed a Level Editing FAQ. Please read this through before posting a new thread, because your answer could be here.


I will start with commands in the editor. (Training and then F4)

alt 0: Creates a log, which also shows people logging on / off
alt 1 : Takes a snapshot of the full level, not showing tiledefs, seteffects, or light effects.
alt 2: Takes a snapshot of the current screen, showing everything.
alt 3: Toggles the minimap on/off
alt 4: Toggles bitrate on/off [Only works online]
alt 5: Takes a snapshot of the level in .graal or .nw format.
alt 6: Records the players movements for scripting. [Does not work online.]
alt 7: Stops recording player movements and creates a recordpos.txt under the /levels directory. [Does not work online.]
alt 8: Zoom in.
alt 9: Zoom out.


For you people who are trying to add your own tileset you made, or add some custom tiles to the current tileset, look here.

addtiledef - This command replaces the whole tileset image with a brand new one. (remember the image has to be 256 colours (8 bit)) The code is this:
NPC Code:
addtiledef tilesetimage,0,0;


The first 0 meaning levelstart, so that say you have a world with level names myworld_1-100. You would put 'addtiledef tilesetimage,myworld_,0;' so that all your levels will have the new tileset. The second 0 is type, 0=normal pics1.png and 1=a newworld type tileset order.


addtiledef2 - This command just replaces part of the tileset image, sort of like putting an image on top of the base image. The code is:
NPC Code:
addtiledef2 tilesetimage,level name,x,y;


The x,y specifies where you want your image to go over the tileset.

Map tutorial

-The text file
You will need a text file with the levels ordered in it.
For example, name the file "bigmap.txt"
So, you open it, and write levels in it. You have a 4x4 map (4 by 4 levels). The levels are listed like this:
-----------------------------------
"mylevel_a-1.nw","mylevel_b-1.nw"
"mylevel_a-2.nw","mylevel_b-2.nw"
-----------------------------------
With the quotations.
That tells the graal.exe how to read your levels when you choose to generate a map.

-The Levels
Okay! We've written the text file, now to make the levels (and link them [not explained... I hope you have enough sense to figure it out!])
Make four levels, and name them

mylevel_a-1.nw
mylevel_b-1.nw
mylevel_a-2.nw
mylevel_b-2.nw

and place them in the same folder as the text file.
link them as needed.

Now, in Level-editting mode (f4) open the first level on your map press "M" and it will ask you if you want to generate a map. Select "yes" or "ok" or whatever, and it will eventually finish with an image asking to be named, sort of. Go to the folder that your levels and .txt are in, and save it. Boom, you have a map image.

To get your map and all the levels to link together, put the script
NPC Code:
setmap mapname.png,bigmap.txt,30,60;

in an NPC in the "starting" level.

Minimap: If you want a minimap just simply follow this: Anyway just take your map and resize it much smaller so that it looks appealing to you in the bottom left hand corner. From there add this code to your previous map script:
NPC Code:
setminimap mapname.png,bigmap.txt,playerx,playery;





If you do not understand any of this, post here and I will answer your question. Special thanks to Torankusu and Zakur for their contributions.

Last edited by Graal2001_LAT; 08-23-2002 at 02:20 AM..
  #2  
Old 08-08-2002, 10:28 AM
zell12 zell12 is offline
Gone
zell12's Avatar
Join Date: Jun 2001
Location: Alberta, Canada
Posts: 8,541
zell12 will become famous soon enough
Send a message via ICQ to zell12 Send a message via AIM to zell12 Send a message via MSN to zell12
Spiffy Idea
__________________
  #3  
Old 08-08-2002, 07:38 PM
Andor_RC14 Andor_RC14 is offline
Registered User
Join Date: Jan 2002
Location: U.S.A - Ohio
Posts: 101
Andor_RC14 is on a distinguished road
Send a message via ICQ to Andor_RC14 Send a message via AIM to Andor_RC14 Send a message via Yahoo to Andor_RC14
Very very well put Mmmmkay. One thing about the map though, you don't have to create a blank .png img in there before the rest of it. I find that harder since I cant make a .png that is just 8bit
__________________


Statistics show that 60% of all statistics are made-up
Manager of Norin.
EX Co-Manager of Bravo Online.
  #4  
Old 08-08-2002, 10:51 PM
Torankusu Torankusu is offline
Elite Member
Torankusu's Avatar
Join Date: Jun 2001
Posts: 10,065
Torankusu has a spectacular aura aboutTorankusu has a spectacular aura about
Quote:
Originally posted by Andor_RC14
Very very well put Mmmmkay. One thing about the map though, you don't have to create a blank .png img in there before the rest of it. I find that harder since I cant make a .png that is just 8bit
Uh, you have to or the script won't work and generate a map. There has to be an existing image, preferrably in 256 colors/8-bit.
__________________
Quote:
Originally posted by Spark910
Think befreo you type.
  #5  
Old 08-08-2002, 11:14 PM
zell12 zell12 is offline
Gone
zell12's Avatar
Join Date: Jun 2001
Location: Alberta, Canada
Posts: 8,541
zell12 will become famous soon enough
Send a message via ICQ to zell12 Send a message via AIM to zell12 Send a message via MSN to zell12
When generating a map, it all you need is the levels in one folder and then press "m" in the editor, and it creates everything for you -_-
__________________
  #6  
Old 08-09-2002, 03:17 AM
Graal2001_LAT Graal2001_LAT is offline
Banned
Graal2001_LAT's Avatar
Join Date: Jul 2002
Location: g forums
Posts: 606
Graal2001_LAT is on a distinguished road
Quote:
Originally posted by Andor_RC14
Very very well put Mmmmkay. One thing about the map though, you don't have to create a blank .png img in there before the rest of it. I find that harder since I cant make a .png that is just 8bit
Torankusu made the map, I will edit it later to how I do it, which seems easier.
  #7  
Old 08-09-2002, 03:22 AM
Torankusu Torankusu is offline
Elite Member
Torankusu's Avatar
Join Date: Jun 2001
Posts: 10,065
Torankusu has a spectacular aura aboutTorankusu has a spectacular aura about
Quote:
Originally posted by zell12
When generating a map, it all you need is the levels in one folder and then press "m" in the editor, and it creates everything for you -_-
a text file is also needed, as well as an image. Or else you get an error in the NPC when you "test" it, thus, not allowing it to work.
__________________
Quote:
Originally posted by Spark910
Think befreo you type.
  #8  
Old 08-10-2002, 10:20 PM
Redwizard Redwizard is offline
Official Graal Oldbie
Redwizard's Avatar
Join Date: Oct 2001
Location: South Wales, United Kingdom
Posts: 601
Redwizard is on a distinguished road
Send a message via ICQ to Redwizard Send a message via AIM to Redwizard Send a message via MSN to Redwizard Send a message via Yahoo to Redwizard
My map is glitchy, I have no idea why... can somebody explain to me why it has glitches and stuff in stripes like my map here? It is sooooo ***, and if i look really closely it looks like millions of tilesets shrunk really small
Attached Thumbnails
Click image for larger version

Name:	graalmap2.png
Views:	1066
Size:	67.4 KB
ID:	19573  
  #9  
Old 08-11-2002, 04:02 PM
Torankusu Torankusu is offline
Elite Member
Torankusu's Avatar
Join Date: Jun 2001
Posts: 10,065
Torankusu has a spectacular aura aboutTorankusu has a spectacular aura about
Quote:
Originally posted by Redwizard
My map is glitchy, I have no idea why... can somebody explain to me why it has glitches and stuff in stripes like my map here? It is sooooo ***, and if i look really closely it looks like millions of tilesets shrunk really small
That happens some times, and it's not the way the map was generated. One of the computers at my grandparents does that, but the levels don't have that on them.
  #10  
Old 08-12-2002, 08:14 PM
SingleChance SingleChance is offline
Kill Pirates
Join Date: Apr 2002
Location: Canada
Posts: 1,296
SingleChance is on a distinguished road
Question

Happend to me when i was making a good level but it actually shoed up on the levels=/
  #11  
Old 08-20-2002, 12:36 PM
Graal2001_LAT Graal2001_LAT is offline
Banned
Graal2001_LAT's Avatar
Join Date: Jul 2002
Location: g forums
Posts: 606
Graal2001_LAT is on a distinguished road
Quote:
Originally posted by Androk2k1
So How exactly do I make levels? I think that's what Level Editing is about...
That is a question without a definite answer, so I cannot write you something which gives you mad ability. (Oh, I believe the 'new' icon in the editor makes a level )

You have to make levels with your knowledge, and then study what you did. See where you can improve, possibly look at other level techniques and adapt your own. Level making takes time, the saying "practice makes pefect" is meaningful.
  #12  
Old 08-21-2002, 01:13 AM
Cid_Night Cid_Night is offline
Registered User
Cid_Night's Avatar
Join Date: Jun 2002
Location: CT USA
Posts: 907
Cid_Night is on a distinguished road
Send a message via AIM to Cid_Night
wow, thanks mmmmkay, this taught me how to make maps, now i am able to make large scale projects much easier, look at the map ima workin on...
Attached Images
 
__________________
Cid Night -Doomsday Co-Manager-
  #13  
Old 08-23-2002, 02:22 AM
Graal2001_LAT Graal2001_LAT is offline
Banned
Graal2001_LAT's Avatar
Join Date: Jul 2002
Location: g forums
Posts: 606
Graal2001_LAT is on a distinguished road
Quote:
Originally posted by Androk2k1
What about mini map? What size should it be? How does it work?
Quote:
Originally posted by Graal2001_LAT
Minimap: If you want a minimap just simply follow this: Anyway just take your map and resize it much smaller so that it looks appealing to you in the bottom left hand corner. From there add this code to your previous map script:
NPC Code:
setminimap mapname.png,bigmap.txt,playerx,playery;


  #14  
Old 08-25-2002, 11:58 PM
Graal2001_LAT Graal2001_LAT is offline
Banned
Graal2001_LAT's Avatar
Join Date: Jul 2002
Location: g forums
Posts: 606
Graal2001_LAT is on a distinguished road
Quote:
Originally posted by zell12
not working >=(
Be more specific...
  #15  
Old 08-26-2002, 12:00 AM
zell12 zell12 is offline
Gone
zell12's Avatar
Join Date: Jun 2001
Location: Alberta, Canada
Posts: 8,541
zell12 will become famous soon enough
Send a message via ICQ to zell12 Send a message via AIM to zell12 Send a message via MSN to zell12
The map was all black :O I fiexed it though, I had to regenerate the levels and overwrite the old .png img
__________________
Closed Thread


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 06:26 PM.


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