Graal Forums  

Go Back   Graal Forums > Development Forums > Tech Support
FAQ Members List Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 01-05-2009, 04:03 PM
BlueMelon BlueMelon is offline
asdfg
BlueMelon's Avatar
Join Date: Sep 2008
Posts: 1,481
BlueMelon is a splendid one to beholdBlueMelon is a splendid one to beholdBlueMelon is a splendid one to beholdBlueMelon is a splendid one to behold
Angry Level Editor Issue...

I open the editor and it appears like this help please :[ I wanna add era tiles like i usually do

__________________
http://i.imgur.com/OOJbW.jpg
Reply With Quote
  #2  
Old 01-05-2009, 04:09 PM
Chompy Chompy is offline
¯\(º_o)/¯
Chompy's Avatar
Join Date: Sep 2006
Location: Norway
Posts: 2,815
Chompy is just really niceChompy is just really niceChompy is just really nice
Send a message via MSN to Chompy
Post your offline tiledefs and the script your using to add the tileset. :o
__________________
Reply With Quote
  #3  
Old 01-05-2009, 04:20 PM
BlueMelon BlueMelon is offline
asdfg
BlueMelon's Avatar
Join Date: Sep 2008
Posts: 1,481
BlueMelon is a splendid one to beholdBlueMelon is a splendid one to beholdBlueMelon is a splendid one to beholdBlueMelon is a splendid one to behold
//#CLIENTSIDE
if (created) {
removetiledefs;
addtiledef tileset_era01-summer.png,,1;
}

is my script i think...
I get confused when it comes to this..
__________________
http://i.imgur.com/OOJbW.jpg
Reply With Quote
  #4  
Old 01-05-2009, 06:30 PM
Tigairius Tigairius is offline
The Cat
Tigairius's Avatar
Join Date: Jan 2007
Location: Missouri, USA
Posts: 4,240
Tigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant future
Here is the fix:

1. Close Graal.
2. Go to your Graal Folder/levels/tiles/
3. Delete everything that starts with "tileset_era"
4. Delete "FILENAMECACHE.txt" in your main Graal folder.
5. Start Graal & log on to Era.
6. Restart editor.
__________________


“Shoot for the moon. Even if you miss, you'll land among the stars.”
Reply With Quote
  #5  
Old 01-05-2009, 08:45 PM
DustyPorViva DustyPorViva is offline
Will work for food. Maybe
DustyPorViva's Avatar
Join Date: Sep 2003
Location: Maryland, USA
Posts: 9,589
DustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond repute
Send a message via AIM to DustyPorViva Send a message via MSN to DustyPorViva
Well if I recall, Era's tileset is a 24-bit, not 8-bit, PNG. The level editor can not read 24-bit PNGs, and what you're looking at is usually the sign for that.

Also, please provide a second deliminator when using addtiledef:
addtiledef image,LEVELPREFIX,1;
For example:
addtiledef image,mylevel_,1;
addtiledef image,myeralevel15.nw,1;

Something... without providing the prefix for the level, it will add the tiledef to every level offline. That's annoying when you show your friends and let them try out your level only to have it mess up their default tiledefs as well.
Reply With Quote
  #6  
Old 01-05-2009, 11:41 PM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
Fairly certain Era's tilesets are 8-bit. If they aren't I'm happy to convert them for you.

It looks like you simply can't find the tiles. What Tig said should work.
__________________
Reply With Quote
  #7  
Old 01-05-2009, 11:45 PM
DustyPorViva DustyPorViva is offline
Will work for food. Maybe
DustyPorViva's Avatar
Join Date: Sep 2003
Location: Maryland, USA
Posts: 9,589
DustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond repute
Send a message via AIM to DustyPorViva Send a message via MSN to DustyPorViva
Quote:
Originally Posted by cbk1994 View Post
Fairly certain Era's tilesets are 8-bit. If they aren't I'm happy to convert them for you.

It looks like you simply can't find the tiles. What Tig said should work.
8-bit is only 256 colors, they might have exceeded that and don't want to lose any(compression of colors can look bad sometimes).
edit: and I just checked, it's not 8-bit.
Reply With Quote
  #8  
Old 01-06-2009, 01:28 AM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
Quote:
Originally Posted by DustyPorViva View Post
8-bit is only 256 colors, they might have exceeded that and don't want to lose any(compression of colors can look bad sometimes).
I know ... for some reason I recall using it in the editor.

Here's the winter, summer, and autumn tilesets. Put them in your levels/tiles folder.

PHP Code:
//#CLIENTSIDE
if (created) {
  
addtiledef era_tileset-winteroffline.png,era_,1;

Attached Thumbnails
Click image for larger version

Name:	era_tileset-autumnoffline.png
Views:	186
Size:	131.2 KB
ID:	47049   Click image for larger version

Name:	era_tileset-summeroffline.png
Views:	168
Size:	130.0 KB
ID:	47050   Click image for larger version

Name:	era_tileset-winteroffline.png
Views:	164
Size:	122.5 KB
ID:	47051  
__________________
Reply With Quote
Reply


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 05:59 PM.


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