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 07-01-2001, 01:00 PM
richard richard is offline
Registered User
Join Date: Jun 2001
Location: Canada, B.C
Posts: 269
richard is on a distinguished road
Send a message via ICQ to richard Send a message via AIM to richard
warp ring

i was wondering if it was possible too make a warp ring goto more then one certain place so i was wondering if you could help
Reply With Quote
  #2  
Old 07-01-2001, 05:23 PM
darealdukenukem darealdukenukem is offline
Registered User
Join Date: Jul 2001
Location: Germany/USA
Posts: 16
darealdukenukem is on a distinguished road
Ehm

Do u want to make us happy or do u mean, u cant do that?...
__________________
Be happy,send me money
Reply With Quote
  #3  
Old 07-01-2001, 06:12 PM
Bane2000 Bane2000 is offline
Registered User
Join Date: Jun 2001
Location: Dorset, UK
Posts: 211
Bane2000 is on a distinguished road
Send a message via ICQ to Bane2000 Send a message via AIM to Bane2000
what do u mean goto more than one place ?

like u use it it goes somewhere then use it again and it'll go somwhere else ?
__________________


"Question Everything, Accept Nothing !" - A wise freind


- Fire Lycia, Save Graal

"England - Yes thats the small Island in Europe that Ownz you all." - As Zorg so rightly puts it
Reply With Quote
  #4  
Old 07-01-2001, 06:55 PM
Slaktmaster Slaktmaster is offline
man with the mastahplan
Slaktmaster's Avatar
Join Date: Apr 2001
Location: Half-way over the river styx
Posts: 4,422
Slaktmaster is an unknown quantity at this point
Send a message via ICQ to Slaktmaster Send a message via AIM to Slaktmaster
Very good desciption
Reply With Quote
  #5  
Old 07-01-2001, 10:41 PM
Knightoffrost Knightoffrost is offline
and Delph Inc.
Knightoffrost's Avatar
Join Date: Jul 2001
Location: Canada
Posts: 1,162
Knightoffrost is on a distinguished road
Send a message via ICQ to Knightoffrost Send a message via AIM to Knightoffrost Send a message via Yahoo to Knightoffrost
This is what he means i think... it'll warp you to random locations.

if (playertouchsme) {
toweapons Teleporter;}

if (weaponfired) {
timeout = .05;
this.r = random(0,17);
freezeplayer 2.8;
playersprite = 0;
playerdir = 2;
showimg portalanim,playerportal.gif,playerx-0.5,playery-0.5;
sleep 1.9;
hideplayer 1.1;
sleep 0.5;
hideimg portalanim;
showimg portalanim2,crystalflash.gif,playerx+1,playery+1;
sleep .5; hideimg portalanim2;
set g3k_warped;
if (this.r<=1) setlevel levelname.graal;
else if (this.r<=2) setlevel levelname.graal;
else if (this.r<=3) setlevel levelname.graal;
else if (this.r<=4) setlevel levelname.graal;
else if (this.r<=5) setlevel levelname.graal;
else if (this.r<=6) setlevel levelname.graal;
else if (this.r<=7) setlevel levelname.graal;
else if (this.r<=8) setlevel levelname.graal;
else if (this.r<=9) setlevel levelname.graal;
else if (this.r<=10) setlevel levelname.graal;
else if (this.r<=11) setlevel levelname.graal;
else if (this.r<=12) setlevel levelname.graal;
else if (this.r<=13) setlevel levelname.graal;
else if (this.r<=14) setlevel levelname.graal;
else if (this.r<=15) setlevel levelname.graal;
else if (this.r<=16) setlevel levelname.graal;
else setlevel levelname.graal;}

Just reduce the "
else if (this.r<=13) setlevel levelname.graal;" for less levels..
you dont have to bother changin the randome either

Or he means that he wants a level warper...
if(playertouchsme) { toweapons level warper; }
if(weaponfired) { setlevel #c; }

All you need there is the say the level and fire the weapon.. or he means a Warper that can only go to certain levels..Like a level warper that can go to 2 levels but only those levels.. in that case it would be like....

if(playertouchsme) toweapons Warper;
if(playersays(1st level) { setlevel levelname.graal }
if(playersays(1st level) { setlevel levelname.graal }

Thats all i can think of .. -Xerphier Dintch

Quote:
How many licks does it take to get to the center of a tootsie pop? The world may never know...

Last edited by Knightoffrost; 07-01-2001 at 10:49 PM..
Reply With Quote
  #6  
Old 07-02-2001, 06:02 AM
Bane2000 Bane2000 is offline
Registered User
Join Date: Jun 2001
Location: Dorset, UK
Posts: 211
Bane2000 is on a distinguished road
Send a message via ICQ to Bane2000 Send a message via AIM to Bane2000
i thought he meant lvls change consecutavly (sp) not
randomly.
__________________


"Question Everything, Accept Nothing !" - A wise freind


- Fire Lycia, Save Graal

"England - Yes thats the small Island in Europe that Ownz you all." - As Zorg so rightly puts it
Reply With Quote
  #7  
Old 07-02-2001, 06:44 AM
CrazedMerlin CrazedMerlin is offline
Some Guy :\
Join Date: Apr 2001
Posts: 3,619
CrazedMerlin is on a distinguished road
Send a message via AIM to CrazedMerlin Send a message via Yahoo to CrazedMerlin
do you mean like if you say warp1 it warps you to a place ex:/start.graal if you say warp2 it warps you to somewhere else ex:/start2.graal
would be like
if (playertouchsme) {toweapons Warper;}
if (weaponfired) {setplayerprop #c,Say warp and the number of the destination;
sleep1.5;
setplayerprop #c, ;}
if (playerchats&&strequals(#c,warp1)) {
//extra animations etc here (optional)
setlevel2 start.graal,x,y;
}
else
if (playerchats&&strequals(#c,warp2)) {
//extra animations etc here (optional)
setlevel2 start2.graal,x,y;
}


basicly like that
__________________

ICQ: 117881194
AIM: TehWizad
E-Mail: [email protected]
Reply With Quote
  #8  
Old 07-02-2001, 07:21 AM
Shard_IceFire Shard_IceFire is offline
Registered User
Shard_IceFire's Avatar
Join Date: Jun 2001
Location: Eastern Harkoonia
Posts: 861
Shard_IceFire is on a distinguished road
I made a script for a warp ring that works just like on zelda link's awakening for the gameboy, and there are different teleports scattered around the world. If you discover them, you can warp through them, and they are in a loop sorta so you go to one, then the next, the next, then back to #1, and so on...I don't know if you get that...
__________________

-=Shard IceFire=-
Reply With Quote
  #9  
Old 07-02-2001, 08:27 AM
Slaktmaster Slaktmaster is offline
man with the mastahplan
Slaktmaster's Avatar
Join Date: Apr 2001
Location: Half-way over the river styx
Posts: 4,422
Slaktmaster is an unknown quantity at this point
Send a message via ICQ to Slaktmaster Send a message via AIM to Slaktmaster
THat is be cool, mama!
Reply With Quote
  #10  
Old 07-02-2001, 07:46 PM
Knightoffrost Knightoffrost is offline
and Delph Inc.
Knightoffrost's Avatar
Join Date: Jul 2001
Location: Canada
Posts: 1,162
Knightoffrost is on a distinguished road
Send a message via ICQ to Knightoffrost Send a message via AIM to Knightoffrost Send a message via Yahoo to Knightoffrost
Red face To Merlin

I already gave this script jez more basic .....

if (playertouchsme) {toweapons Warper;}
if (weaponfired) {setplayerprop #c,Say warp and the number of the destination;
sleep1.5;
setplayerprop #c, ;}
if (playerchats&&strequals(#c,warp1)) {
//extra animations etc here (optional)
setlevel2 start.graal,x,y;
}
else
if (playerchats&&strequals(#c,warp2)) {
//extra animations etc here (optional)
setlevel2 start2.graal,x,y;
}

Quote:
How many licks does it take to get to the center of a tootsie pop? The world may never know...
__________________
Xerphier Dintch
Featuring
Reply With Quote
  #11  
Old 07-03-2001, 03:45 AM
CrazedMerlin CrazedMerlin is offline
Some Guy :\
Join Date: Apr 2001
Posts: 3,619
CrazedMerlin is on a distinguished road
Send a message via AIM to CrazedMerlin Send a message via Yahoo to CrazedMerlin
Re: To Merlin

Quote:
Originally posted by Knightoffrost
I already gave this script jez more basic .....

if (playertouchsme) {toweapons Warper;}
if (weaponfired) {setplayerprop #c,Say warp and the number of the destination;
sleep1.5;
setplayerprop #c, ;}
if (playerchats&&strequals(#c,warp1)) {
//extra animations etc here (optional)
setlevel2 start.graal,x,y;
}
else
if (playerchats&&strequals(#c,warp2)) {
//extra animations etc here (optional)
setlevel2 start2.graal,x,y;
}

EXCEPT YOU ARE STUPID AND I'M NOT.
KTHNXBAI
__________________

ICQ: 117881194
AIM: TehWizad
E-Mail: [email protected]
Reply With Quote
  #12  
Old 07-03-2001, 05:32 AM
Bane2000 Bane2000 is offline
Registered User
Join Date: Jun 2001
Location: Dorset, UK
Posts: 211
Bane2000 is on a distinguished road
Send a message via ICQ to Bane2000 Send a message via AIM to Bane2000
the warper i made sends you to the first location, then
when used again it will send you to location 2 then 3
then 4 etc... untill it loops back to 1 again.

Thats what i meant by consecutvly (sp?(nowhere near ^_^))
and thats what I thought he meant.
__________________


"Question Everything, Accept Nothing !" - A wise freind


- Fire Lycia, Save Graal

"England - Yes thats the small Island in Europe that Ownz you all." - As Zorg so rightly puts it
Reply With Quote
  #13  
Old 07-03-2001, 07:09 AM
Knightoffrost Knightoffrost is offline
and Delph Inc.
Knightoffrost's Avatar
Join Date: Jul 2001
Location: Canada
Posts: 1,162
Knightoffrost is on a distinguished road
Send a message via ICQ to Knightoffrost Send a message via AIM to Knightoffrost Send a message via Yahoo to Knightoffrost
Red face Thats not hard

Thats not very hard at all
__________________
Xerphier Dintch
Featuring
Reply With Quote
  #14  
Old 07-03-2001, 12:02 PM
mastervampire mastervampire is offline
Banned
Join Date: Jun 2001
Location: Australia
Posts: 203
mastervampire is on a distinguished road
Send a message via AIM to mastervampire
Angry

...... never did like warp rings. They just make for lazy players. What fun is that? you don't even see half the servr's levels more than the first time you walked through them on the way to the next town where you found.... you guessed it. A warp ring. From then on it was just an NPC use away and the levels between the towns faded into memory, hehe. But anyway, DOWN WITH RINGS!
~Oladahn~
Reply With Quote
  #15  
Old 07-03-2001, 04:11 PM
entravial entravial is offline
Registered User
entravial's Avatar
Join Date: Mar 2001
Posts: 825
entravial is on a distinguished road
Send a message via ICQ to entravial Send a message via AIM to entravial Send a message via Yahoo to entravial
that's what's good about g2k1
__________________


If the post says ~AlphaFlame~, that's who's posting. If not, it's Entravial (owner)
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 11:57 PM.


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