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 01-31-2002, 11:49 PM
Andor_RC14 Andor_RC14 is offline
Registered User
Join Date: Jan 2002
Location: U.S.A - Ohio
Posts: 101
Andor_RC14 is on a distinguished road
Send a message via ICQ to Andor_RC14 Send a message via AIM to Andor_RC14 Send a message via Yahoo to Andor_RC14
Thumbs up Changeinh head system

How can i make it so theat when you press the left arrow key it eill show the head on the NPC and when u press right it will go back and when u press enter it will select that head
by
Mystical Dragon (Guild Admin on Andor)
__________________


Statistics show that 60% of all statistics are made-up
Manager of Norin.
EX Co-Manager of Bravo Online.
Reply With Quote
  #2  
Old 02-01-2002, 08:31 PM
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
?
Well I'd guess this is what you want:
NPC Code:

if (playertouchsme) {
disabledefmovement;
timeout=0.05;
}
if (timeout) {
showimgpart head#v(this.head).gif,0,64,32,32;
if (keydown(5)) {
enabledefmovement;
}
if (keydown(1)) {
if (this.head<=0) {
this.head=1000;
}
if (this.head>=1) {
this.head=this.head-1;
}
}
if (keydown(3)) {
if (this.head>=1000) {
this.head=0;
}
if (this.head>=1) {
this.head=this.head+1;
}
}
timeout=0.05;
}


Dunno..maybe that'd work.
__________________

-=Shard IceFire=-
Reply With Quote
  #3  
Old 02-01-2002, 09:18 PM
joseyisleet joseyisleet is offline
Registered User
Join Date: Aug 2001
Posts: 378
joseyisleet is on a distinguished road
Quote:
Originally posted by Kaimetsu
"variable++"
variable+=1;

Oh yeah baby!
Damn, I need sleep. ;\
__________________
Account used by Josey and Howard.
Ali G: 'Is it cause i Black?'
Reply With Quote
  #4  
Old 02-02-2002, 02:19 AM
TDO2000 TDO2000 is offline
Registered User
TDO2000's Avatar
Join Date: Jul 2001
Location: Germany
Posts: 655
TDO2000 is on a distinguished road
Quote:
Originally posted by Kaimetsu


Well now that's just silly.

And to the creator of the thread: For the sake of sanity, take that ridiculous "Elite Scripter" stuff out of your sig.
He wrote Scriter, not scripter... could mean anything else
__________________
No Webhost at the moment
Reply With Quote
  #5  
Old 02-02-2002, 04:38 AM
TDK_RC6 TDK_RC6 is offline
Registered User
TDK_RC6's Avatar
Join Date: Jan 2002
Location: Earth
Posts: 0
TDK_RC6 is on a distinguished road
Quote:
Originally posted by Kaimetsu


Well now that's just silly.

And to the creator of the thread: For the sake of sanity, take that ridiculous "Elite Scripter" stuff out of your sig.
i agree totally
__________________
Staff on Renegade


email: [email protected]
aim: papivicente
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 12:47 PM.


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