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 07-19-2002, 03:59 PM
joseyisleet joseyisleet is offline
Registered User
Join Date: Aug 2001
Posts: 378
joseyisleet is on a distinguished road
checking arrays.

Aloha, how would i check if a array is at it's max like if i specify the max of it and it reaches that and it does something how would i do it, and how would i show it in showimg?, thanks anyone who can help.
- Chicken AKA Howard
__________________
Account used by Josey and Howard.
Ali G: 'Is it cause i Black?'

Last edited by joseyisleet; 07-19-2002 at 04:22 PM..
Reply With Quote
  #2  
Old 07-19-2002, 04:51 PM
GrowlZ1010 GrowlZ1010 is offline
defunct
Join Date: May 2002
Posts: 187
GrowlZ1010 is on a distinguished road
To find out the size (what I presume you mean by 'maximum') of an array, use the arraylen(var) function. This will return the number of individual slots inside the array itself. So to do something when a variable reaches the length of your array:

NPC Code:

if (yourvariable=arraylen(yourarray)){
// do stuff
}

Reply With Quote
  #3  
Old 07-19-2002, 04:57 PM
joseyisleet joseyisleet is offline
Registered User
Join Date: Aug 2001
Posts: 378
joseyisleet is on a distinguished road
yay

Thanks i appreciate that alot , how would i show an array in a message or some if possible.
-Chicken AKA Howard
__________________
Account used by Josey and Howard.
Ali G: 'Is it cause i Black?'
Reply With Quote
  #4  
Old 07-19-2002, 08:27 PM
screen_name screen_name is offline
is watching you
Join Date: Mar 2002
Location: The 3rd Dimension
Posts: 2,160
screen_name is on a distinguished road
Send a message via AIM to screen_name Send a message via MSN to screen_name
well, you could use a loop

NPC Code:

for (this.i=0;this.i<arraylen(myarray);this.i++) {
showimg this.i+1000,@#v(myarray[this.i]),5,80+(this.i*10);
changeimgzoom this.i+1000,.7;
changeimgvix this.i+1000,4;
}

__________________
[signature]insert here[/signature]
Reply With Quote
  #5  
Old 07-20-2002, 08:10 AM
joseyisleet joseyisleet is offline
Registered User
Join Date: Aug 2001
Posts: 378
joseyisleet is on a distinguished road
oo

ok kool thanks , i got it now .
__________________
Account used by Josey and Howard.
Ali G: 'Is it cause i Black?'
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 10:18 PM.


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