Re: Program dilema

2001-11-30 Thread Scott R. Godin
In article <2E4528861499D41199D200A0C9B15BC031B624@FRISTX>, [EMAIL PROTECTED] (Bob Showalter) wrote: > > -Original Message- > > From: Andre` Niel Cameron [mailto:[EMAIL PROTECTED]] > > Sent: Friday, November 30, 2001 2:07 PM > > To: [EMAIL PROTECTED] > > Cc: [EMAIL PROTECTED] > > Subject

Re: Program dilema

2001-11-30 Thread Curtis Poe
--- Andre` Niel Cameron <[EMAIL PROTECTED]> wrote: > Can anyone think of a cleaner way to do this: > push(@Joiner, $ReadData[3]); > push(@Joiner, $PlayerData{'PlayerHeld'}); > push(@Joiner, $PlayerData{'PlayerCarried'}); > push(@Joiner, $PlayerData{'PlayerEquipped'}

Re: Program dilema

2001-11-30 Thread Andre` Niel Cameron
<[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Friday, November 30, 2001 3:40 PM Subject: Re: Program dilema > --- Andre` Niel Cameron <[EMAIL PROTECTED]> wrote: > > Hi, > > > > I am having a bit of a problem. Does anyone have any idea how I could have

Re: Program dilema

2001-11-30 Thread Curtis Poe
--- Andre` Niel Cameron <[EMAIL PROTECTED]> wrote: > Hi, > > I am having a bit of a problem. Does anyone have any idea how I could have > a variable and see if the value of that variable is also located in an array > and hash? IE: > > $myvar= 6 > > @myarray= ("4", "7", 10", 6") > > if (6 exi

Re: Program dilema

2001-11-30 Thread Brett W. McCoy
On Fri, 30 Nov 2001, Andre` Niel Cameron wrote: > I am having a bit of a problem. Does anyone have any idea how I could have > a variable and see if the value of that variable is also located in an array > and hash? IE: > > $myvar= 6 > > @myarray= ("4", "7", 10", 6") > > if (6 exists in @myarra

RE: Program dilema

2001-11-30 Thread Bob Showalter
> -Original Message- > From: Andre` Niel Cameron [mailto:[EMAIL PROTECTED]] > Sent: Friday, November 30, 2001 2:07 PM > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED] > Subject: Program dilema > > > Hi, > > I am having a bit of a problem. Does anyone have any idea > how I could have >