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 04-15-2006, 01:32 AM
wild8900 wild8900 is offline
Mr. Brightside
wild8900's Avatar
Join Date: Dec 2005
Posts: 418
wild8900 is an unknown quantity at this point
Send a message via MSN to wild8900
gmap help plz

I made a gmap:

GRMAP001
WIDTH 7
HEIGHT 5
LEVELNAMES
"irataworld_a01.nw","irataworld_b01.nw","irataworl d_c01.nw"
"irataworld_a02.nw","irataworld_b02.nw","irataworl d_c02.nw"
"irataworld_a03.nw","irataworld_b03.nw","irataworl d_c03.nw"
"irataworld_a04.nw","irataworld_b04.nw","irataworl d_c04.nw"
"irataworld_a05.nw","irataworld_b05.nw","irataworl d_c05.nw"
LEVELNAMESEND

I only made and linked the first row (a01-c01)
but I know I need to use loadmap irataworld; (irataworld is gmaps name)
but where do I put that command?
__________________
Reply With Quote
  #2  
Old 04-15-2006, 02:14 AM
Crono Crono is offline
:pluffy:
Join Date: Feb 2002
Location: Sweden
Posts: 20,000
Crono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond repute
stick it in the first level

//#CLIENTSIDE
if (created) {
loadmap irataworld;
}

Works for me :x

If this is online, you gotta upload the gmap and add the gmap in the serverops
__________________
Reply With Quote
  #3  
Old 04-15-2006, 02:28 AM
wild8900 wild8900 is offline
Mr. Brightside
wild8900's Avatar
Join Date: Dec 2005
Posts: 418
wild8900 is an unknown quantity at this point
Send a message via MSN to wild8900
:O
I forgot to do server opps!
um where in the opps do I put it?
__________________
Reply With Quote
  #4  
Old 04-15-2006, 02:49 AM
Crono Crono is offline
:pluffy:
Join Date: Feb 2002
Location: Sweden
Posts: 20,000
Crono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond repute
gmaps=

if that doesnt work do

gmap=
__________________
Reply With Quote
  #5  
Old 04-15-2006, 03:01 AM
wild8900 wild8900 is offline
Mr. Brightside
wild8900's Avatar
Join Date: Dec 2005
Posts: 418
wild8900 is an unknown quantity at this point
Send a message via MSN to wild8900
Nvm, I got it to work, thanks for replieing though.
__________________
Reply With Quote
  #6  
Old 04-15-2006, 03:19 AM
Crono Crono is offline
:pluffy:
Join Date: Feb 2002
Location: Sweden
Posts: 20,000
Crono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond repute
Anytime. If you need help just pm me ingame or on forums.
__________________
Reply With Quote
  #7  
Old 04-15-2006, 05:32 AM
Malinko Malinko is offline
Unholy Nation
Join Date: Mar 2004
Location: Massachusetts, U.S.A.
Posts: 1,782
Malinko is on a distinguished road
Send a message via AIM to Malinko
Hm.

The GMAP doesn't have the width of seven levels. Well, from what was provided in the post within this thread.

I understand that the first few levels were linked, but I assume a GMAP would link this? If generated, then editted.
Reply With Quote
  #8  
Old 04-15-2006, 05:54 AM
Crono Crono is offline
:pluffy:
Join Date: Feb 2002
Location: Sweden
Posts: 20,000
Crono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond repute
Quote:
Originally Posted by wild8900
Nvm, I got it to work, thanks for replieing though.
^ refer to that mal
__________________
Reply With Quote
  #9  
Old 04-15-2006, 06:22 AM
Omini Omini is offline
Millenium Owner
Join Date: Feb 2006
Location: N.Ireland
Posts: 293
Omini is on a distinguished road
Send a message via AIM to Omini Send a message via MSN to Omini Send a message via Yahoo to Omini
I believe someone told me, I think it was Skyld, not to use "loadmap"

*gets history*

Quote:
Originally Posted by Skyld PM History
You (Sun Apr 02 12:40:23 2006):

can you help me with a NPC/GMap related question?

---
Opposite (Sun Apr 02 12:41:28 2006):

Possibly, although I do not know much about GMAPs

---
You (Sun Apr 02 12:41:49 2006):

well i just got my gmap working on my server, but no NPCs show up... any idea
how i can sort that out?

---
Opposite (Sun Apr 02 12:42:23 2006):

How are you loading the GMAP on your server?

---
You (Sun Apr 02 12:42:55 2006):

with an NPC
//#CLIENTSIDE
if (created) {
loadmap millenium;
(more script involving tiledefs here);
}

---
You (Sun Apr 02 12:43:43 2006):

they seem to be appearing in some levels but not others

---
Opposite (Sun Apr 02 12:43:45 2006):

There's your problem. You should NEVER use loadmap; on a server.

The correct way to load a GMAP is to use the serveroptions

If you have two GMAPs, "foo.gmap" and "bar.gmap", you should have this server option:
"gmaps=foo,bar"

---
You (Sun Apr 02 12:44:07 2006):

i also have that in my server options. i'll remove the script now

---
You (Sun Apr 02 12:45:10 2006):

i just removed the script and now the gmap isnt working x.x

---
Opposite (Sun Apr 02 12:46:17 2006):

Reconnect and stuff

---
You (Sun Apr 02 12:47:43 2006):

lol, ok thanks.
Reply With Quote
  #10  
Old 04-15-2006, 08:28 AM
VulcanP2P VulcanP2P is offline
Registered User
VulcanP2P's Avatar
Join Date: May 2005
Location: Florida
Posts: 882
VulcanP2P is on a distinguished road
Using server options for gmaps is much more reliable than the script, yes. I remember getting yelled at on Debug a few times by Bjorn for accidently uploading loadmap NPCs because I forgot to remove them from the level while working, heh.
__________________

For Zone or Guild Support use the Support Center
Reply With Quote
  #11  
Old 04-15-2006, 08:54 AM
napo_p2p napo_p2p is offline
oh snaps
napo_p2p's Avatar
Join Date: Sep 2003
Location: Pismo Beach, California
Posts: 2,118
napo_p2p has a spectacular aura aboutnapo_p2p has a spectacular aura about
Send a message via AIM to napo_p2p Send a message via MSN to napo_p2p
I would put loadmap in some kind of player system NPC.
__________________
Scito hoc super omnia.
Haec vita est tua una sola.
Dum vita superest, utere maxime quoque puncto, momento, et hora quae habes.
Tempus neminem non manet.
Noli manere tempus.
Carpe Diem

Seize the Day.
Reply With Quote
  #12  
Old 04-15-2006, 04:29 PM
Crono Crono is offline
:pluffy:
Join Date: Feb 2002
Location: Sweden
Posts: 20,000
Crono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond repute
...You can't simply load a gmap by putting it in serverops. You have to use loadmap somewhere.

Unless times have changed.
__________________
Reply With Quote
  #13  
Old 04-15-2006, 05:26 PM
Silent Silent is offline
<3
Silent's Avatar
Join Date: Mar 2005
Location: England
Posts: 132
Silent is on a distinguished road
Send a message via AIM to Silent Send a message via MSN to Silent
Quote:
Originally Posted by Gerami
...You can't simply load a gmap by putting it in serverops. You have to use loadmap somewhere.

Unless times have changed.
Either they have, or we never had to anyway.
__________________
Quote:
Originally Posted by MilkyWay0016
The Bible also says things like...

"Stone disobedient children" (Deuteronomy 21:18-21)
Quote:
Originally Posted by Loriel
Disobedient children are likely enough to get stoned already, I think.
Reply With Quote
  #14  
Old 04-16-2006, 12:02 AM
VulcanP2P VulcanP2P is offline
Registered User
VulcanP2P's Avatar
Join Date: May 2005
Location: Florida
Posts: 882
VulcanP2P is on a distinguished road
Quote:
Originally Posted by Silent
Either they have, or we never had to anyway.
I just double-checked to be sure and it worked fine for me.
__________________

For Zone or Guild Support use the Support Center
Reply With Quote
  #15  
Old 04-16-2006, 12:27 AM
Crono Crono is offline
:pluffy:
Join Date: Feb 2002
Location: Sweden
Posts: 20,000
Crono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond repute
Quote:
Originally Posted by VulcanP2P
I just double-checked to be sure and it worked fine for me.
Without a loadmap script?
__________________
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 06:04 AM.


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