Graal Forums  

Go Back   Graal Forums > Development Forums > NPC Scripting
FAQ Members List Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 04-22-2002, 09:08 PM
prozacboy666 prozacboy666 is offline
Registered User
Join Date: Mar 2002
Posts: 130
prozacboy666 will become famous soon enough
Lights

I have tryed to make lights zoom in and out but i cant figure it out.

this is the script i tryed.

if (created){
setzoomeffect 1;
sleep .2;
setzoomeffect 2;
sleep .2;
setzoomeffect 3;
timeout=.2;
}
I have no idea if i did it wrong -_- I am so bad at scripting...
Reply With Quote
  #2  
Old 04-22-2002, 10:49 PM
SaijinGohan SaijinGohan is offline
Registered User
SaijinGohan's Avatar
Join Date: Jul 2001
Location: U.S.A - Ohio
Posts: 536
SaijinGohan is on a distinguished road
Send a message via AIM to SaijinGohan Send a message via MSN to SaijinGohan
NPC Code:

<stolen(?) script>



Try that
__________________

Job: A Legend

And you think that you have played Graal forever? Ha!

Last edited by Kaimetsu; 04-23-2002 at 08:12 PM..
Reply With Quote
  #3  
Old 04-22-2002, 11:11 PM
Saga2001 Saga2001 is offline
Wishing he had 3 feet
Join Date: Aug 2001
Location: Basement
Posts: 1,565
Saga2001 is on a distinguished road
Send a message via ICQ to Saga2001 Send a message via AIM to Saga2001 Send a message via Yahoo to Saga2001
Quote:
Originally posted by SaijinGohan
NPC Code:

<script>



Try that
Its music to my ears...
__________________

!Wan ( 11:27:55 AM):
can i c ur scripts please?
Zorg (RC): If I hear NPC Server call Ne0, Past Austin or Brent sexy one more time im disconnecting it

Last edited by Kaimetsu; 04-23-2002 at 08:10 PM..
Reply With Quote
  #4  
Old 04-23-2002, 12:11 AM
prozacboy666 prozacboy666 is offline
Registered User
Join Date: Mar 2002
Posts: 130
prozacboy666 will become famous soon enough
Thanks..
Reply With Quote
  #5  
Old 04-23-2002, 06:49 PM
SaijinGohan SaijinGohan is offline
Registered User
SaijinGohan's Avatar
Join Date: Jul 2001
Location: U.S.A - Ohio
Posts: 536
SaijinGohan is on a distinguished road
Send a message via AIM to SaijinGohan Send a message via MSN to SaijinGohan
np. Just glad I can actually help someone with scripts!
__________________

Job: A Legend

And you think that you have played Graal forever? Ha!
Reply With Quote
  #6  
Old 04-23-2002, 07:29 PM
prozacboy666 prozacboy666 is offline
Registered User
Join Date: Mar 2002
Posts: 130
prozacboy666 will become famous soon enough
Would you like to be my NAT Admin for my server Eden?
Reply With Quote
  #7  
Old 04-23-2002, 07:56 PM
Kadar Kadar is offline
Registered User
Join Date: Jan 2002
Posts: 636
Kadar is on a distinguished road
Quote:
Originally posted by Kaimetsu


That looks familiar.
its the one used on graal2001
__________________
Reply With Quote
  #8  
Old 04-23-2002, 09:10 PM
prozacboy666 prozacboy666 is offline
Registered User
Join Date: Mar 2002
Posts: 130
prozacboy666 will become famous soon enough
-_- i hate when people take server scripts.. I will change it some to make it different...
Reply With Quote
  #9  
Old 04-23-2002, 10:51 PM
Saga2001 Saga2001 is offline
Wishing he had 3 feet
Join Date: Aug 2001
Location: Basement
Posts: 1,565
Saga2001 is on a distinguished road
Send a message via ICQ to Saga2001 Send a message via AIM to Saga2001 Send a message via Yahoo to Saga2001
Quote:
Originally posted by Kaimetsu
Something like this?

NPC Code:

<script>



Could be some bugs in there. I've not tested it.
Thats the one I use.
__________________

!Wan ( 11:27:55 AM):
can i c ur scripts please?
Zorg (RC): If I hear NPC Server call Ne0, Past Austin or Brent sexy one more time im disconnecting it
Reply With Quote
  #10  
Old 04-24-2002, 03:47 AM
SaijinGohan SaijinGohan is offline
Registered User
SaijinGohan's Avatar
Join Date: Jul 2001
Location: U.S.A - Ohio
Posts: 536
SaijinGohan is on a distinguished road
Send a message via AIM to SaijinGohan Send a message via MSN to SaijinGohan
ack sry I didnt reply earlier. I scriped that NPC in school and no I didnt copy. I made that on my own. And heres one I also made on my own

NPC Code:

//#CLIENTSIDE
if(playerenters) {
setimg light2.png;
drawaslight;
dontblock;
setcoloreffect 1,1,1,0.99;
this.initial=.5;
this.additive=0.1;
timeout=0.1;
}
if(timeout) {
setzoomeffect this.initial;
if(this.initial==1.5)
this.additive=-0.1;
if(this.initial==0.5)
this.additive=0.1;
this.initial=this.initial+this.additive;
timeout=0.1;
}


its a lil more complex cause I have time to play around with it at home.
__________________

Job: A Legend

And you think that you have played Graal forever? Ha!
Reply With Quote
  #11  
Old 04-24-2002, 04:58 AM
Saga2001 Saga2001 is offline
Wishing he had 3 feet
Join Date: Aug 2001
Location: Basement
Posts: 1,565
Saga2001 is on a distinguished road
Send a message via ICQ to Saga2001 Send a message via AIM to Saga2001 Send a message via Yahoo to Saga2001
Quote:
Originally posted by Kaimetsu


I actually made a stupid mistake that leads to negative alpha values, but let's not talk about that
Well we all make mistakes, you just tend to make less of them.
__________________

!Wan ( 11:27:55 AM):
can i c ur scripts please?
Zorg (RC): If I hear NPC Server call Ne0, Past Austin or Brent sexy one more time im disconnecting it
Reply With Quote
  #12  
Old 04-24-2002, 09:16 PM
prozacboy666 prozacboy666 is offline
Registered User
Join Date: Mar 2002
Posts: 130
prozacboy666 will become famous soon enough
-_- ya the first one didn't work. I tryed to fix it but i kept getting worse.
Reply With Quote
  #13  
Old 04-24-2002, 11:47 PM
SaijinGohan SaijinGohan is offline
Registered User
SaijinGohan's Avatar
Join Date: Jul 2001
Location: U.S.A - Ohio
Posts: 536
SaijinGohan is on a distinguished road
Send a message via AIM to SaijinGohan Send a message via MSN to SaijinGohan
well I can guarentee the second one works.
__________________

Job: A Legend

And you think that you have played Graal forever? Ha!
Reply With Quote
  #14  
Old 04-27-2002, 09:08 PM
osrs osrs is offline
Graalian since 1998
osrs's Avatar
Join Date: Mar 2002
Location: Brazil
Posts: 2,724
osrs is on a distinguished road
Send a message via ICQ to osrs Send a message via AIM to osrs Send a message via MSN to osrs Send a message via Yahoo to osrs
Exclamation ..

Try that, maybe will be correct
__________________
"Ability is what you are capable of doing. Motivation determines what you do. Attitude determines how well you do it."
Facebook: facebook.com/raysilvadotnet /
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:26 PM.


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