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 12-30-2010, 11:23 PM
iFuzzy iFuzzy is offline
Fuzzoodles
iFuzzy's Avatar
Join Date: Aug 2010
Location: New York, USA
Posts: 79
iFuzzy is on a distinguished road
Graal Editor - Glitch?

Hi all, I found another bug I THINK for Graal Offline Editor.. It's been happening for a couple days for me now. My levels I load from my friend's server I work on, and levels I created myself appear mixed up and glitched. Random tiles are scattered around the level everytime I load and play it. Also this happens.

Click image for larger version

Name:	weird.jpg
Views:	173
Size:	221.2 KB
ID:	52135
__________________
This grass.. It feels like, pants!
Reply With Quote
  #2  
Old 12-31-2010, 12:10 AM
Deas_Voice Deas_Voice is offline
Deas
Deas_Voice's Avatar
Join Date: Jun 2007
Location: Sweden
Posts: 2,264
Deas_Voice is a jewel in the roughDeas_Voice is a jewel in the rough
Send a message via AIM to Deas_Voice Send a message via MSN to Deas_Voice Send a message via Yahoo to Deas_Voice
if the server you work for is using another tileset, probably modern style, you are missing the tileset.

this is not a glich.
__________________
.
WTF is real life, and where do I Download it?
There is no Real Life, just AFK!
since 2003~
I Support~
ღAeonღ | ღTestbedღ | ღDelteriaღ

if you are going to rep me, don't be an idiot, leave your name!
I got nothing but love for you
Reply With Quote
  #3  
Old 12-31-2010, 12:20 AM
iFuzzy iFuzzy is offline
Fuzzoodles
iFuzzy's Avatar
Join Date: Aug 2010
Location: New York, USA
Posts: 79
iFuzzy is on a distinguished road
Quote:
Originally Posted by Deas_Voice View Post
if the server you work for is using another tileset, probably modern style, you are missing the tileset.

this is not a glich.
No.. I even set it back to Pic1 and it still messes up.. The tiles on the level go scattered everywhere, etc.
__________________
This grass.. It feels like, pants!
Reply With Quote
  #4  
Old 12-31-2010, 12:23 AM
Deas_Voice Deas_Voice is offline
Deas
Deas_Voice's Avatar
Join Date: Jun 2007
Location: Sweden
Posts: 2,264
Deas_Voice is a jewel in the roughDeas_Voice is a jewel in the rough
Send a message via AIM to Deas_Voice Send a message via MSN to Deas_Voice Send a message via Yahoo to Deas_Voice
Quote:
Originally Posted by iFuzzy View Post
No.. I even set it back to Pic1 and it still messes up.. The tiles on the level go scattered everywhere, etc.
post the script?
__________________
.
WTF is real life, and where do I Download it?
There is no Real Life, just AFK!
since 2003~
I Support~
ღAeonღ | ღTestbedღ | ღDelteriaღ

if you are going to rep me, don't be an idiot, leave your name!
I got nothing but love for you
Reply With Quote
  #5  
Old 12-31-2010, 12:36 AM
Soala Soala is offline
Ideas on Fire
Soala's Avatar
Join Date: Jun 2007
Location: In my head
Posts: 3,208
Soala is a jewel in the roughSoala is a jewel in the rough
If you are swimming in the cliffs of pics1, the tileset type you've used is 1 in the script. Switch it to type 0.
The tileset type value should be the very last number in your script:

PHP Code:
addtiledef("tilesetname.png",levelname,type); 
Reply With Quote
  #6  
Old 12-31-2010, 12:41 AM
Deas_Voice Deas_Voice is offline
Deas
Deas_Voice's Avatar
Join Date: Jun 2007
Location: Sweden
Posts: 2,264
Deas_Voice is a jewel in the roughDeas_Voice is a jewel in the rough
Send a message via AIM to Deas_Voice Send a message via MSN to Deas_Voice Send a message via Yahoo to Deas_Voice
Quote:
Originally Posted by Soala View Post
If you are swimming in the cliffs of pics1, the tileset type you've used is 1 in the script. Switch it to type 0.
The tileset type value should be the very last number in your script:

PHP Code:
addtiledef("tilesetname.png",levelname,type); 
what if his tileset is a type 1(modern)?
i don't think there's something wrong with what type it is by judging of his previous threads, rather that he doesn't have the proper tileset or levelprefix-

as i said, please post the script that you are using to change tileset(s).
__________________
.
WTF is real life, and where do I Download it?
There is no Real Life, just AFK!
since 2003~
I Support~
ღAeonღ | ღTestbedღ | ღDelteriaღ

if you are going to rep me, don't be an idiot, leave your name!
I got nothing but love for you
Reply With Quote
  #7  
Old 12-31-2010, 12:49 AM
iFuzzy iFuzzy is offline
Fuzzoodles
iFuzzy's Avatar
Join Date: Aug 2010
Location: New York, USA
Posts: 79
iFuzzy is on a distinguished road
Quote:
Originally Posted by Deas_Voice View Post
what if his tileset is a type 1(modern)?
i don't think there's something wrong with what type it is by judging of his previous threads, rather that he doesn't have the proper tileset or levelprefix-

as i said, please post the script that you are using to change tileset(s).
I fixed it thanks guys!

Heres my next problem: How do I set my server's tileset in because I just get a grassy screen with a black diagonal square line going up and down throughout the level..

Is it like addtiledef cypheria_tileset2.png,,;?

I want it to be like that for every level I open, etc.
__________________
This grass.. It feels like, pants!
Reply With Quote
  #8  
Old 12-31-2010, 12:59 AM
Soala Soala is offline
Ideas on Fire
Soala's Avatar
Join Date: Jun 2007
Location: In my head
Posts: 3,208
Soala is a jewel in the roughSoala is a jewel in the rough
Setup a main system as a wNPC and add it to your player.
Inside this system, you can use the line I wrote as an exemple in my previous post.
You can use as much addtiledef's as you need, to set the proper tileset on each place.

Don't forget to use addtiledef on clientside.
Reply With Quote
  #9  
Old 12-31-2010, 01:02 AM
Deas_Voice Deas_Voice is offline
Deas
Deas_Voice's Avatar
Join Date: Jun 2007
Location: Sweden
Posts: 2,264
Deas_Voice is a jewel in the roughDeas_Voice is a jewel in the rough
Send a message via AIM to Deas_Voice Send a message via MSN to Deas_Voice Send a message via Yahoo to Deas_Voice
Quote:
Originally Posted by iFuzzy View Post
I fixed it thanks guys!

Heres my next problem: How do I set my server's tileset in because I just get a grassy screen with a black diagonal square line going up and down throughout the level..

Is it like addtiledef cypheria_tileset2.png,,;?

I want it to be like that for every level I open, etc.
if u set your levelprefix correct and your levels starts a certain way, you would only have to do it once.

such as "addtiledef tileset.png,myserver_,type(0 or 1)"
now, if your level starts "myserver_" your going to see tileset.png on that level.
__________________
.
WTF is real life, and where do I Download it?
There is no Real Life, just AFK!
since 2003~
I Support~
ღAeonღ | ღTestbedღ | ღDelteriaღ

if you are going to rep me, don't be an idiot, leave your name!
I got nothing but love for you
Reply With Quote
  #10  
Old 12-31-2010, 01:04 AM
Codein Codein is offline
jwd
Codein's Avatar
Join Date: Oct 2005
Location: Greater Manchester
Posts: 2,423
Codein has a spectacular aura aboutCodein has a spectacular aura about
Send a message via AIM to Codein Send a message via MSN to Codein
You need to set the type (not sure about level prefix, but you should set that too). If it's completely custom from ground up, chances are it's using type 1, but if it's just small mods to pics1.png, it would be type 0.

addtiledef cypheria_tileset2.png,cypheria,1; as an example.
Reply With Quote
  #11  
Old 12-31-2010, 01:07 AM
Deas_Voice Deas_Voice is offline
Deas
Deas_Voice's Avatar
Join Date: Jun 2007
Location: Sweden
Posts: 2,264
Deas_Voice is a jewel in the roughDeas_Voice is a jewel in the rough
Send a message via AIM to Deas_Voice Send a message via MSN to Deas_Voice Send a message via Yahoo to Deas_Voice
dang u people, he is having a problem with hes editor, not ingame.
__________________
.
WTF is real life, and where do I Download it?
There is no Real Life, just AFK!
since 2003~
I Support~
ღAeonღ | ღTestbedღ | ღDelteriaღ

if you are going to rep me, don't be an idiot, leave your name!
I got nothing but love for you
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 01:28 AM.


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