Graal Forums  

Go Back   Graal Forums > PlayerWorlds > Bomy Island Main Forum
FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 05-27-2001, 06:42 PM
omni-m00gle omni-m00gle is offline
delete all proofs
omni-m00gle's Avatar
Join Date: Apr 2001
Location: United Kingdom
Posts: 2,528
omni-m00gle is on a distinguished road
Send a message via AIM to omni-m00gle
Lighting

Can someone post the script for a lighting effect? It's 7 in the morning and I dont want to script it :P
__________________
-+ Malak +-

Never taste of the fruit...

Quote:
Originally posted by Stefan
on andor i got jailed for
impersonating me
Reply With Quote
  #2  
Old 05-27-2001, 06:45 PM
greezi greezi is offline
kidtaf.net
greezi's Avatar
Join Date: Mar 2001
Posts: 2,842
greezi will become famous soon enough
Send a message via ICQ to greezi Send a message via AIM to greezi
script it yourself
__________________


Reply With Quote
  #3  
Old 05-27-2001, 06:46 PM
SSmutz SSmutz is offline
I hate me. :(
Join Date: Mar 2001
Posts: 2,633
SSmutz will become famous soon enough
NPC Code:
// NPC made by SSmutz (Frolic Levels Admin)
if (created) {
x=random(1,64);
y=random(1,64);
drawaslight;
dontblock;
setzoomeffect random(0.5,6);
setcoloreffect random(0,1),random(0,1),random(0,1),random(0,1);
timeout=random(1,5);
}
if (timeout) {
x=random(1,64);
y=random(1,64);
drawaslight;
dontblock;
setzoomeffect random(0.5,6);
setcoloreffect random(0,1),random(0,1),random(0,1),random(0,1);
timeout=random(1,3);
}



HAHA...erm..look familiar?
__________________
I hate graal.

NO! FOR THE MILLIONTH TIME, I AM NOT GOING TO PLAY GRAAL AGAIN! I HANGOUT IN THE NOT GRAAL RELATED FORUM, BECAUSE IT HAS NOTHING TO DO WITH GRAAL.
The End
Reply With Quote
  #4  
Old 05-27-2001, 06:49 PM
omni-m00gle omni-m00gle is offline
delete all proofs
omni-m00gle's Avatar
Join Date: Apr 2001
Location: United Kingdom
Posts: 2,528
omni-m00gle is on a distinguished road
Send a message via AIM to omni-m00gle
Haha, thanks SSmutz, I remember that ;D
__________________
-+ Malak +-

Never taste of the fruit...

Quote:
Originally posted by Stefan
on andor i got jailed for
impersonating me
Reply With Quote
  #5  
Old 05-27-2001, 06:50 PM
G_yoshi G_yoshi is offline
Forbidden
G_yoshi's Avatar
Join Date: Mar 2001
Posts: 7,206
G_yoshi will become famous soon enough
Send a message via AIM to G_yoshi
i could probably do the same thing......with less mess even
__________________
Reply With Quote
  #6  
Old 05-27-2001, 06:51 PM
SSmutz SSmutz is offline
I hate me. :(
Join Date: Mar 2001
Posts: 2,633
SSmutz will become famous soon enough
That the most complex script I have ever made in my life...
__________________
I hate graal.

NO! FOR THE MILLIONTH TIME, I AM NOT GOING TO PLAY GRAAL AGAIN! I HANGOUT IN THE NOT GRAAL RELATED FORUM, BECAUSE IT HAS NOTHING TO DO WITH GRAAL.
The End
Reply With Quote
  #7  
Old 05-27-2001, 06:52 PM
greezi greezi is offline
kidtaf.net
greezi's Avatar
Join Date: Mar 2001
Posts: 2,842
greezi will become famous soon enough
Send a message via ICQ to greezi Send a message via AIM to greezi
is this for your server or something?
__________________


Reply With Quote
  #8  
Old 05-27-2001, 06:53 PM
SSmutz SSmutz is offline
I hate me. :(
Join Date: Mar 2001
Posts: 2,633
SSmutz will become famous soon enough
Quote:
Originally posted by G_yoshi
i could probably do the same thing......with less mess even
simple:
NPC Code:

// NPC made by SSmutz (Frolic Levels Admin)
if (playerenters) {
timeout=random(1,5);
}
if (timeout) {
x=random(1,64);
y=random(1,64);
drawaslight;
dontblock;
setzoomeffect random(0.5,6);
setcoloreffect random(0,1),random(0,1),random(0,1),random(0,1);
timeout=random(1,3);
}


it just that the i first made that script, i didn't know as much about scripts that i do now.
__________________
I hate graal.

NO! FOR THE MILLIONTH TIME, I AM NOT GOING TO PLAY GRAAL AGAIN! I HANGOUT IN THE NOT GRAAL RELATED FORUM, BECAUSE IT HAS NOTHING TO DO WITH GRAAL.
The End
Reply With Quote
  #9  
Old 05-27-2001, 06:54 PM
SSmutz SSmutz is offline
I hate me. :(
Join Date: Mar 2001
Posts: 2,633
SSmutz will become famous soon enough
Quote:
Originally posted by greezi
is this for your server or something?
whos? not mine. I made that script as a light demo for the tutorial world, which is now in CloudX's hands.
__________________
I hate graal.

NO! FOR THE MILLIONTH TIME, I AM NOT GOING TO PLAY GRAAL AGAIN! I HANGOUT IN THE NOT GRAAL RELATED FORUM, BECAUSE IT HAS NOTHING TO DO WITH GRAAL.
The End
Reply With Quote
  #10  
Old 05-27-2001, 06:54 PM
omni-m00gle omni-m00gle is offline
delete all proofs
omni-m00gle's Avatar
Join Date: Apr 2001
Location: United Kingdom
Posts: 2,528
omni-m00gle is on a distinguished road
Send a message via AIM to omni-m00gle
i just needed the script for a second since im working on Samurai castle ;P
__________________
-+ Malak +-

Never taste of the fruit...

Quote:
Originally posted by Stefan
on andor i got jailed for
impersonating me
Reply With Quote
  #11  
Old 05-27-2001, 07:00 PM
G_yoshi G_yoshi is offline
Forbidden
G_yoshi's Avatar
Join Date: Mar 2001
Posts: 7,206
G_yoshi will become famous soon enough
Send a message via AIM to G_yoshi
Quote:
Originally posted by SSmutz

simple:
NPC Code:

// NPC made by SSmutz (Frolic Levels Admin)
if (playerenters) {
timeout=random(1,5);
}
if (timeout) {
x=random(1,64);
y=random(1,64);
drawaslight;
dontblock;
setzoomeffect random(0.5,6);
setcoloreffect random(0,1),random(0,1),random(0,1),random(0,1);
timeout=random(1,3);
}


it just that the i first made that script, i didn't know as much about scripts that i do now.
i can still *possibly* make it smaller

my most complex script.....hmm.....that would have to be my meter script.....the next one will be my ball.....oops....almost spilled the beans
__________________
Reply With Quote
  #12  
Old 05-27-2001, 07:00 PM
greezi greezi is offline
kidtaf.net
greezi's Avatar
Join Date: Mar 2001
Posts: 2,842
greezi will become famous soon enough
Send a message via ICQ to greezi Send a message via AIM to greezi
Quote:
Originally posted by omni-m00gle
i just needed the script for a second since im working on Samurai castle ;P
oh, cool! i don't have DirectX enabled cause it is too laggy, do yuio have it enabled?
__________________


Reply With Quote
  #13  
Old 05-27-2001, 07:02 PM
SSmutz SSmutz is offline
I hate me. :(
Join Date: Mar 2001
Posts: 2,633
SSmutz will become famous soon enough
Even with driectx on, I can't see lighting effects. My computer sucks.
__________________
I hate graal.

NO! FOR THE MILLIONTH TIME, I AM NOT GOING TO PLAY GRAAL AGAIN! I HANGOUT IN THE NOT GRAAL RELATED FORUM, BECAUSE IT HAS NOTHING TO DO WITH GRAAL.
The End
Reply With Quote
  #14  
Old 05-27-2001, 07:04 PM
greezi greezi is offline
kidtaf.net
greezi's Avatar
Join Date: Mar 2001
Posts: 2,842
greezi will become famous soon enough
Send a message via ICQ to greezi Send a message via AIM to greezi
Quote:
Originally posted by SSmutz
Even with driectx on, I can't see lighting effects. My computer sucks.
*sigh* www.microsoft.com and seach for DirectX ... i have DirectX 8!
__________________


Reply With Quote
  #15  
Old 05-27-2001, 07:06 PM
SSmutz SSmutz is offline
I hate me. :(
Join Date: Mar 2001
Posts: 2,633
SSmutz will become famous soon enough
I have dx8. Infact, the install program is still sitting in the My Documents folder.
__________________
I hate graal.

NO! FOR THE MILLIONTH TIME, I AM NOT GOING TO PLAY GRAAL AGAIN! I HANGOUT IN THE NOT GRAAL RELATED FORUM, BECAUSE IT HAS NOTHING TO DO WITH GRAAL.
The End
Reply With Quote
  #16  
Old 05-27-2001, 07:08 PM
greezi greezi is offline
kidtaf.net
greezi's Avatar
Join Date: Mar 2001
Posts: 2,842
greezi will become famous soon enough
Send a message via ICQ to greezi Send a message via AIM to greezi
Quote:
Originally posted by SSmutz
I have dx8. Infact, the install program is still sitting in the My Documents folder.
WELL THEN:

Shouldn't you go install it, mabye?
__________________


Reply With Quote
  #17  
Old 05-27-2001, 07:08 PM
omni-m00gle omni-m00gle is offline
delete all proofs
omni-m00gle's Avatar
Join Date: Apr 2001
Location: United Kingdom
Posts: 2,528
omni-m00gle is on a distinguished road
Send a message via AIM to omni-m00gle
Now I need to know the gif of the pillar with moss on it (Refer to Santerrian)
__________________
-+ Malak +-

Never taste of the fruit...

Quote:
Originally posted by Stefan
on andor i got jailed for
impersonating me
Reply With Quote
  #18  
Old 05-27-2001, 07:09 PM
SSmutz SSmutz is offline
I hate me. :(
Join Date: Mar 2001
Posts: 2,633
SSmutz will become famous soon enough
Quote:
Originally posted by greezi
WELL THEN:

Shouldn't you go install it, mabye?
What I meant was that I still have it, even after I already installed it.
__________________
I hate graal.

NO! FOR THE MILLIONTH TIME, I AM NOT GOING TO PLAY GRAAL AGAIN! I HANGOUT IN THE NOT GRAAL RELATED FORUM, BECAUSE IT HAS NOTHING TO DO WITH GRAAL.
The End
Reply With Quote
  #19  
Old 05-27-2001, 07:10 PM
SSmutz SSmutz is offline
I hate me. :(
Join Date: Mar 2001
Posts: 2,633
SSmutz will become famous soon enough
Quote:
Originally posted by omni-m00gle
Now I need to know the gif of the pillar with moss on it (Refer to Santerrian)
Attached Images
 
__________________
I hate graal.

NO! FOR THE MILLIONTH TIME, I AM NOT GOING TO PLAY GRAAL AGAIN! I HANGOUT IN THE NOT GRAAL RELATED FORUM, BECAUSE IT HAS NOTHING TO DO WITH GRAAL.
The End
Reply With Quote
  #20  
Old 05-27-2001, 07:10 PM
greezi greezi is offline
kidtaf.net
greezi's Avatar
Join Date: Mar 2001
Posts: 2,842
greezi will become famous soon enough
Send a message via ICQ to greezi Send a message via AIM to greezi
Quote:
Originally posted by SSmutz

What I meant was that I still have it, even after I already installed it.
haha, then your computer is screwed
__________________


Reply With Quote
  #21  
Old 05-27-2001, 07:12 PM
SSmutz SSmutz is offline
I hate me. :(
Join Date: Mar 2001
Posts: 2,633
SSmutz will become famous soon enough
Quote:
Originally posted by greezi
haha, then your computer is screwed
No, I just don't have a 3d graphics card. And I'm too lazy to clean the crap out of my My Documents folder.
__________________
I hate graal.

NO! FOR THE MILLIONTH TIME, I AM NOT GOING TO PLAY GRAAL AGAIN! I HANGOUT IN THE NOT GRAAL RELATED FORUM, BECAUSE IT HAS NOTHING TO DO WITH GRAAL.
The End
Reply With Quote
  #22  
Old 05-27-2001, 07:14 PM
omni-m00gle omni-m00gle is offline
delete all proofs
omni-m00gle's Avatar
Join Date: Apr 2001
Location: United Kingdom
Posts: 2,528
omni-m00gle is on a distinguished road
Send a message via AIM to omni-m00gle
Thanks again
__________________
-+ Malak +-

Never taste of the fruit...

Quote:
Originally posted by Stefan
on andor i got jailed for
impersonating me
Reply With Quote
  #23  
Old 05-27-2001, 07:16 PM
greezi greezi is offline
kidtaf.net
greezi's Avatar
Join Date: Mar 2001
Posts: 2,842
greezi will become famous soon enough
Send a message via ICQ to greezi Send a message via AIM to greezi
Quote:
Originally posted by SSmutz

No, I just don't have a 3d graphics card. And I'm too lazy to clean the crap out of my My Documents folder.
tsk tsk tsk ... everyone is too lazy these days
__________________


Reply With Quote
  #24  
Old 05-27-2001, 07:18 PM
omni-m00gle omni-m00gle is offline
delete all proofs
omni-m00gle's Avatar
Join Date: Apr 2001
Location: United Kingdom
Posts: 2,528
omni-m00gle is on a distinguished road
Send a message via AIM to omni-m00gle
Wow! This is already looking great and Im only 25% done with the first level
__________________
-+ Malak +-

Never taste of the fruit...

Quote:
Originally posted by Stefan
on andor i got jailed for
impersonating me
Reply With Quote
  #25  
Old 05-27-2001, 09:19 PM
Nai Nai is offline
Back!
Join Date: Mar 2001
Location: USA
Posts: 1,489
Nai is on a distinguished road
Send a message via AIM to Nai
To see light effects you have to have a 3D Card like a GeForce or Voodoo. Not DirectX..
__________________
Reply With Quote
  #26  
Old 05-27-2001, 09:23 PM
LordMax LordMax is offline
Registered User
LordMax's Avatar
Join Date: Mar 2001
Location: USA
Posts: 590
LordMax is on a distinguished road
i have directx8 on and it dont do nothing for graal
i still cant see the lights glow
__________________


Owner of Santerrian Samurais The Football Team
Reply With Quote
  #27  
Old 05-27-2001, 09:25 PM
LordMax LordMax is offline
Registered User
LordMax's Avatar
Join Date: Mar 2001
Location: USA
Posts: 590
LordMax is on a distinguished road
i even have a good gfx card cause i can play any game that involves one!
__________________


Owner of Santerrian Samurais The Football Team
Reply With Quote
  #28  
Old 05-28-2001, 12:09 AM
Guest
Posts: n/a
Quote:
Originally posted by Nai
To see light effects you have to have a 3D Card like a GeForce or Voodoo. Not DirectX..
Actually, I have a Voodoo4 and the lights don't work for me.
Reply With Quote
  #29  
Old 05-28-2001, 12:11 AM
Nai Nai is offline
Back!
Join Date: Mar 2001
Location: USA
Posts: 1,489
Nai is on a distinguished road
Send a message via AIM to Nai
I have a GeForce and I can see them. You have to have Voodoo 5.
__________________
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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:39 AM.


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