Jump to content

Question


Recommended Posts

ok

a few of things

you put

start loop

thers no such thing as start loop. i put "; start loop" as a comment to show you what was happening.

just change "start loop" to "Do" so you get

Do
...........
Until

Also the point of using an array is to cycle through it.

Dim $array[5]

is calling an array with 5 'slots' in it

so... if you have 7 accounts you want to access create an array with 7 slots.

Then you just assign values to your array slots like any other variable

Dim $array[3]
$array[0] = whatever
$array[1] = whatever
$array[2] = whatever

NOTE that you start at 0, ie for $array[3] there is NO such thing as $array[3]

Also, dont use "-" in your variables. just change "$mulerz-clpl"

Hope This helps

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...