Graal Forums  

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

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 10-10-2002, 09:42 PM
MattMrHat MattMrHat is offline
Banned
Join Date: Aug 2002
Location: United States Age: 15
Posts: 111
MattMrHat is on a distinguished road
Editor DefNPCs

I don't care how much you 'hate' them for whatever reason, I just want to know where to get them. Or can someone post them?
Reply With Quote
  #2  
Old 10-10-2002, 10:11 PM
AlexH AlexH is offline
Have A Drink On Me
AlexH's Avatar
Join Date: Jun 2001
Location: Somewhere In Time
Posts: 7,442
AlexH is on a distinguished road
Send a message via AIM to AlexH Send a message via MSN to AlexH
You script them.
__________________
QUICK LOOK BUSY JESUS IS COMING!
Reply With Quote
  #3  
Old 10-10-2002, 10:20 PM
MattMrHat MattMrHat is offline
Banned
Join Date: Aug 2002
Location: United States Age: 15
Posts: 111
MattMrHat is on a distinguished road
Quote:
Originally posted by AlexH
You script them.
I don't think so. There were many released like SandPath2, Shallow WaterPath, DeepWater Path, etc.
Reply With Quote
  #4  
Old 10-10-2002, 10:29 PM
AlexH AlexH is offline
Have A Drink On Me
AlexH's Avatar
Join Date: Jun 2001
Location: Somewhere In Time
Posts: 7,442
AlexH is on a distinguished road
Send a message via AIM to AlexH Send a message via MSN to AlexH
Yes and people scripted them.
__________________
QUICK LOOK BUSY JESUS IS COMING!
Reply With Quote
  #5  
Old 10-10-2002, 10:37 PM
MattMrHat MattMrHat is offline
Banned
Join Date: Aug 2002
Location: United States Age: 15
Posts: 111
MattMrHat is on a distinguished road
Quote:
Originally posted by AlexH
Yes and people scripted them.
And they were released for everyone to use, Are you saying I have to make my own? Stupid ass people on the forums wont help you learn to script, wont help you with anything! Im this close to quiting Graal ----

(edit)
Not just because of this, but because of everything. The poor quality of Graal executable, the VERY poor service from Stefan and the 'team'. Stolen money that wasnt refunded which also would go under 'very bad service (shown above)'
Reply With Quote
  #6  
Old 10-11-2002, 02:33 AM
Waltz5 Waltz5 is offline
Kyden
Waltz5's Avatar
Join Date: Aug 2001
Location: PA
Posts: 1,906
Waltz5 is an unknown quantity at this point
Quote:
Originally posted by MattMrHat

And they were released for everyone to use, Are you saying I have to make my own? Stupid ass people on the forums wont help you learn to script, wont help you with anything! Im this close to quiting Graal ----

(edit)
Not just because of this, but because of everything. The poor quality of Graal executable, the VERY poor service from Stefan and the 'team'. Stolen money that wasnt refunded which also would go under 'very bad service (shown above)'
They weren't released for everyone to use, that's why if you do a search for them you can't find them anymore, or atleast not from who I got them from.
It's like going on the NPC forum and asking for a script, it's not allowed there so why should it be allowed here?
__________________

Reply With Quote
  #7  
Old 10-11-2002, 02:57 AM
Dude6252000 Dude6252000 is offline
More often known as Karsh
Dude6252000's Avatar
Join Date: May 2002
Location: USA.
Posts: 2,603
Dude6252000 is on a distinguished road
Send a message via AIM to Dude6252000
Quote:
Originally posted by MattMrHat

And they were released for everyone to use, Are you saying I have to make my own? Stupid ass people on the forums wont help you learn to script, wont help you with anything! Im this close to quiting Graal ----

(edit)
Not just because of this, but because of everything. The poor quality of Graal executable, the VERY poor service from Stefan and the 'team'. Stolen money that wasnt refunded which also would go under 'very bad service (shown above)'
So now Graal is poor quality, it sucks, the service is bad, all because you never got a script that you were asking for on the levels forum?
__________________
BEING AWAY FROM THE FORUMS RULES

http://www.livejournal.com/users/karsheth/
Reply With Quote
  #8  
Old 10-11-2002, 03:50 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
Its not just that. Read the rest of his post, he also dislikes the way the game was run for 4 years now.
__________________
Reply With Quote
  #9  
Old 10-11-2002, 04:54 AM
AlexH AlexH is offline
Have A Drink On Me
AlexH's Avatar
Join Date: Jun 2001
Location: Somewhere In Time
Posts: 7,442
AlexH is on a distinguished road
Send a message via AIM to AlexH Send a message via MSN to AlexH
Quote:
Originally posted by zell12
Its not just that. Read the rest of his post, he also dislikes the way the game was run for 4 years now.
Well it's been said many times before and I'm sure it will be said many times again.
If you don't like it, leave.
To be quite honest I'd rather see less posts on the fourms rather than a whole load of megativity about how much somethings sucks.
__________________
QUICK LOOK BUSY JESUS IS COMING!
Reply With Quote
  #10  
Old 10-11-2002, 04:57 AM
Goboom Goboom is offline
Pixel Monkey
Goboom's Avatar
Join Date: Dec 2001
Location: Michigan
Posts: 1,702
Goboom is on a distinguished road
Send a message via ICQ to Goboom Send a message via AIM to Goboom Send a message via MSN to Goboom Send a message via Yahoo to Goboom
They arent hard...koni posted this to help me find out how to get the right tiles right...start with this...
Quote:
Okay, in order to get the hex value for a tile you need to do this:

Mouse over a tile, in the bottom part of the editor it will show the 2 numbers that correspond to that tile. For example (10,82) then you open up windows calculator, go into scientific mode, then in decimal mode put in this:

82*16+10

82 being the y value of the tile, then multiply that by 16, then you want to add the x value to that total. Then you will have 1322 if I'm not mistaken. Then all you have to do, is simply click the Hex bubble to switch to Hex mode (on the calculator) and you will get 52a.

You just add a 0x in front of it and your hex value is 0x52a You can also just put in 82*16+10 in place of the hex value like:

mytiles = {0xaa,82*16+10,0xab};

That will work also

If you want, pick a tile out and I will give you an example as to how to get the hex (if you didn't understand what I said above)Ok...do you know the editnpc things that are in txt form that in the level editor help you build levels faster??? there are ones such as....Graal2002-path,and SandPath...do you know what im talking about?
__________________
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 03:54 PM.


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