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 09-05-2001, 04:13 AM
aesquivel aesquivel is offline
Registered User
Join Date: Sep 2001
Location: Whitewright
Posts: 346
aesquivel is on a distinguished road
Send a message via AIM to aesquivel
Question Tones!?

okay i need a little help i dont wanna know the script for the instuments onG2K1 but i would like ta know how ta make the tones and dot worry every 1 im not trying ta steal the npc so i would appreciate some thelp THANX
__________________
Reply With Quote
  #2  
Old 09-05-2001, 04:33 AM
joseyisleet joseyisleet is offline
Registered User
Join Date: Aug 2001
Posts: 378
joseyisleet is on a distinguished road
hmm.

i think it would be something like
if (keydown(1)){playmidi midifile;}

but i may be wrong
=X
__________________
Account used by Josey and Howard.
Ali G: 'Is it cause i Black?'
Reply With Quote
  #3  
Old 09-05-2001, 05:13 AM
General General is offline
Banned
Join Date: Apr 2001
Location: Station Square
Posts: 984
General is on a distinguished road
Send a message via ICQ to General Send a message via AIM to General Send a message via Yahoo to General
no its

if (keydown(0)) setani sex,1.wav;
Reply With Quote
  #4  
Old 09-05-2001, 06:26 AM
ownerofbabylon ownerofbabylon is offline
Lord Helmut
ownerofbabylon's Avatar
Join Date: Jun 2001
Location: Gainesville FL
Posts: 1,763
ownerofbabylon is on a distinguished road
Send a message via ICQ to ownerofbabylon Send a message via AIM to ownerofbabylon
i think he means the real tones. Umm I was wondering too. I guess from keyboards or websites =/
__________________


Warrior of Light

WWW.BABYLONSERVER.COM
Reply With Quote
  #5  
Old 09-05-2001, 07:40 AM
aesquivel aesquivel is offline
Registered User
Join Date: Sep 2001
Location: Whitewright
Posts: 346
aesquivel is on a distinguished road
Send a message via AIM to aesquivel
GAAaAAAAAAAAAAAAAAaaaaaaa

u ppl are stupid accept whats his face i mean teh real tones used fo the instruments :grrr: :grrr: :grrr:
__________________
Reply With Quote
  #6  
Old 09-05-2001, 08:43 AM
konidias konidias is offline
Old Bee
konidias's Avatar
Join Date: Jul 2001
Location: Orlando, FL
Posts: 7,222
konidias will become famous soon enough
Send a message via AIM to konidias
There are keyboard software programs that have over 200 instruments on them.. you could always look on download.com
__________________

Put this image in your sig if you support Bomy Island! (g2k1 revision)
play bomberman while you wait!


Reply With Quote
  #7  
Old 09-05-2001, 09:57 AM
aesquivel aesquivel is offline
Registered User
Join Date: Sep 2001
Location: Whitewright
Posts: 346
aesquivel is on a distinguished road
Send a message via AIM to aesquivel
Quote:
Originally posted by konidias
There are keyboard software programs that have over 200 instruments on them.. you could always look on download.com




well does any 1 know where i can get this at?
__________________
Reply With Quote
  #8  
Old 09-05-2001, 06:37 PM
Yakuna2001 Yakuna2001 is offline
Registered User
Yakuna2001's Avatar
Join Date: Jun 2001
Location: England U.K
Posts: 940
Yakuna2001 is on a distinguished road
Send a message via AIM to Yakuna2001
Quote:
Originally posted by Kaimetsu
I'm not gonna help you because of the stupidity of your sig.
lol
__________________

-Manager of the UnholyNation PlayerWorld-
UnholyNation Forums
Reply With Quote
  #9  
Old 09-06-2001, 02:46 AM
ownerofbabylon ownerofbabylon is offline
Lord Helmut
ownerofbabylon's Avatar
Join Date: Jun 2001
Location: Gainesville FL
Posts: 1,763
ownerofbabylon is on a distinguished road
Send a message via ICQ to ownerofbabylon Send a message via AIM to ownerofbabylon
my keyboard doesnt hook up to my comp =..(
__________________


Warrior of Light

WWW.BABYLONSERVER.COM
Reply With Quote
  #10  
Old 09-06-2001, 03:04 AM
Yakuna2001 Yakuna2001 is offline
Registered User
Yakuna2001's Avatar
Join Date: Jun 2001
Location: England U.K
Posts: 940
Yakuna2001 is on a distinguished road
Send a message via AIM to Yakuna2001
Quote:
Originally posted by ownerofbabylon
my keyboard doesnt hook up to my comp =..(
most modern keyboards that have more than 4 pctaves have a midi port on the back which you can use to hook to your comp. if you have more than 4 octaves and it doesnt have a midi port, it is either 50 years old, or just really ****.
__________________

-Manager of the UnholyNation PlayerWorld-
UnholyNation Forums
Reply With Quote
  #11  
Old 09-06-2001, 03:41 AM
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
~AlphaFlame~

If you make an instrument script... for the love of god, don't use if (keydown(1)) and if (keydown(2)) and so on x.x

If you want a nice script... ah hell, here...

NPC Code:
if (playertouchsme){
toweapons ¤ Ocarina;
}
if (weaponfired || keydown(4) && strequals(#w,¤ Ocarina)){
this.mode=1-this.mode;
timeout=.05;
}
if (timeout && this.mode=1){
freezeplayer .05;
for (i=0;i<4;i++){
if (keydown(i) && !keydown(5)){play ocarina#v(i+1).wav;}
if (keydown(i) && keydown(5)){play ocarina#v(i+5).wav;}
}
timeout=.05;
}



This is, of course, assuming you have the .wav files of ocarina1 through ocarina8... you can modify the instrument, just make sure they all end in a number from 1-8

And to do instruments, I suggest doing something as simple as getting:
a) Good midi sound card
b) Good sound recording program
And then hooking the in/out sound ports together and recording the midi into a .wav

*sits back and waits for Kaimetsu to point something out that he did wrong or not exactly perfect in script*
__________________


If the post says ~AlphaFlame~, that's who's posting. If not, it's Entravial (owner)

Last edited by entravial; 09-06-2001 at 04:03 AM..
Reply With Quote
  #12  
Old 09-06-2001, 04:47 AM
aesquivel aesquivel is offline
Registered User
Join Date: Sep 2001
Location: Whitewright
Posts: 346
aesquivel is on a distinguished road
Send a message via AIM to aesquivel
oaky lets try this again how about des any 1 know the script for any of te instruments to i can do some serious remodleing of it and make it BETTER
and does any 1 have a program that generates different kinsd of sounds for different things or does any 1 know where i ca get 1 and i dont mean like www.download.com i mean the website name

thanx:grrr:
__________________
Reply With Quote
  #13  
Old 09-06-2001, 05:23 AM
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
Quote:
oaky lets try this again how about des any 1 know the script for any of te instruments to i can do some serious remodleing of it and make it BETTER
Look at my last post :-P

Even has a very minor lil buggy in it that you can work out XD

Unless you mean the G2k1 script
__________________


If the post says ~AlphaFlame~, that's who's posting. If not, it's Entravial (owner)
Reply With Quote
  #14  
Old 09-06-2001, 06:13 AM
SSj_Link SSj_Link is offline
Registered User
Join Date: Jul 2001
Location: i r live in texas
Posts: 244
SSj_Link is on a distinguished road
Send a message via ICQ to SSj_Link Send a message via AIM to SSj_Link
Quote:
Originally posted by aesquivel
oaky lets try this again how about des any 1 know the script for any of te instruments to i can do some serious remodleing of it and make it BETTER
and does any 1 have a program that generates different kinsd of sounds for different things or does any 1 know where i ca get 1 and i dont mean like www.download.com i mean the website name

thanx:grrr:
LoL http://zorgonline.cjb.net has all the instruments I believe


FrEaKy CaRnIe
__________________
-People with my Password: Me (Boozy), Ghostface Killa, bgraven, Freaky Carnie, Dark Warlock, and SoulReaver.
-So they can all post.-

-I hate my account name -

~Old Names: Link, Darklink, Neo, then Boozy when Bravo died. (So some people will recognize me)~

AIM: boozyneo
ICQ: 116030736
Msn: [email protected]
Email: [email protected]


-DANCE SPAM DANCE!- Dark Warlock
Reply With Quote
  #15  
Old 09-06-2001, 07:30 AM
ownerofbabylon ownerofbabylon is offline
Lord Helmut
ownerofbabylon's Avatar
Join Date: Jun 2001
Location: Gainesville FL
Posts: 1,763
ownerofbabylon is on a distinguished road
Send a message via ICQ to ownerofbabylon Send a message via AIM to ownerofbabylon
Quote:
Originally posted by Yakuna2001

most modern keyboards that have more than 4 pctaves have a midi port on the back which you can use to hook to your comp. if you have more than 4 octaves and it doesnt have a midi port, it is either 50 years old, or just really ****.
whats a...midi port look like? and do u need software?
__________________


Warrior of Light

WWW.BABYLONSERVER.COM
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 05:18 PM.


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