<?xml version="1.0"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
 <channel>
  <title>AT2k Design BBS - VBBS/VADV Script Discussion</title>
  <description>AT2k Design BBS</description>
  <link>http://mail.vadvbbs.com/web-bbs/forums/forum-dispmsg.php?t=33&amp;d=3</link>
  <pubDate>Thu, 04 Jun 2026 01:12:22 -0500</pubDate>
  <item>
   <title>Script idea</title>
   <description>From:    Lorrim @1 *1&lt;br /&gt;&#13;
To:      Lorrim @1 *1&lt;br /&gt;&#13;
Subject: Script idea&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
Re: Script idea&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
Forgot something. There needs to be a CLOSE statement here to close the file:&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
&amp;gt; &amp;#039;Open the file we created with the REXX script in output mode&amp;#039;&lt;br /&gt;&#13;
&amp;gt; OPEN C:\VADV\TXT\TIMER.TXT, O&lt;br /&gt;&#13;
&amp;gt; READ C:\VADV\TXT\TIMER.TXT d0&lt;br /&gt;&#13;
CLOSE&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
--&lt;br /&gt;&#13;
[AT2k] -- Your VBBS/VADV Support Center -- [&lt;a href=&quot;http://www.at2k.org&quot;&gt;www.at2k.org&lt;/a&gt;] -- [bbs.at2k.org]</description>
   <pubDate>Sat, 20 Jun 2020 07:48:43 -0500</pubDate>
   <link>http://mail.vadvbbs.com/web-bbs/forums/forum-viewmsg.php?t=33&amp;d=3&amp;m=233</link>
   <guid>http://mail.vadvbbs.com/web-bbs/forums/forum-viewmsg.php?t=33&amp;d=3&amp;m=233</guid>
  </item>
  <item>
   <title>Script idea</title>
   <description>From:    Lorrim @1 *1&lt;br /&gt;&#13;
To:      jahmas @1410000 *1&lt;br /&gt;&#13;
Subject: Script idea&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
Re: Script idea&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
&amp;gt; If I could write a script, it would be a countdown until the November&lt;br /&gt;&#13;
&amp;gt; presidential election.&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
My board is down because of packing to move so I can&amp;#039;t test the vscript part of&lt;br /&gt;&#13;
this but here is a quick and dirty way to pull it off. Vscript doesn&amp;#039;t have a&lt;br /&gt;&#13;
way to calculate dates, but you can have an external program convert date x to&lt;br /&gt;&#13;
day-of-the-year format (sometimes called Julian or epoch) and do simple math on&lt;br /&gt;&#13;
it. I used REXX for this example and vscript to do the bbs output part of it.&lt;br /&gt;&#13;
You can replace the text with calls to display ANSI files or what have you to&lt;br /&gt;&#13;
pretty it up.&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
/* REXX script to do coundown calculation */&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
day = Date(&amp;#039;Days&amp;#039;)&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
/* Write the output to a text file. Overwrite if it already exists */&lt;br /&gt;&#13;
rc = LINEOUT(&amp;quot;C:\VADV\TXT\TIMER.TXT&amp;quot;, day, 1)&lt;br /&gt;&#13;
IF rc \== 0 THEN DO&lt;br /&gt;&#13;
Error:&lt;br /&gt;&#13;
	SAY &amp;quot;ERROR:&amp;quot; STREAM(&amp;quot;C:\VADV\TXT\TIMER.TXT&amp;quot;, &amp;quot;D&amp;quot;)&lt;br /&gt;&#13;
	RETURN&lt;br /&gt;&#13;
END&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
RETURN&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
================================&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
&amp;#039;VADV Countdown Script&amp;#039;&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
&amp;#039;This is the target day of the year from 1-365. Nov. 3 2020 in this case&amp;#039;&lt;br /&gt;&#13;
let t0=308&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
&amp;#039;Open the file we created with the REXX script in output mode&amp;#039;&lt;br /&gt;&#13;
OPEN C:\VADV\TXT\TIMER.TXT, O&lt;br /&gt;&#13;
READ C:\VADV\TXT\TIMER.TXT d0&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
IFVAL t0 = d0 GOTO EDay&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
let x0 = t0-d0&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
IFVAL x0 &amp;gt; 0 GOTO CTimer&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
PRINT &amp;quot;The election is over. Did you vote?&amp;quot;&lt;br /&gt;&#13;
END&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
EDay:&lt;br /&gt;&#13;
PRINT &amp;quot;Today is election day. Be sure to vote!&amp;quot;&lt;br /&gt;&#13;
END&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
CTimer:&lt;br /&gt;&#13;
PRINT &amp;quot;It is &amp;quot; x0 &amp;quot; days until election day.&amp;quot;&lt;br /&gt;&#13;
END&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
--&lt;br /&gt;&#13;
[AT2k] -- Your VBBS/VADV Support Center -- [&lt;a href=&quot;http://www.at2k.org&quot;&gt;www.at2k.org&lt;/a&gt;] -- [bbs.at2k.org]</description>
   <pubDate>Sat, 20 Jun 2020 07:32:27 -0500</pubDate>
   <link>http://mail.vadvbbs.com/web-bbs/forums/forum-viewmsg.php?t=33&amp;d=3&amp;m=232</link>
   <guid>http://mail.vadvbbs.com/web-bbs/forums/forum-viewmsg.php?t=33&amp;d=3&amp;m=232</guid>
  </item>
  <item>
   <title>Script idea</title>
   <description>From:    jahmas @1410000 *1&lt;br /&gt;&#13;
To:      All @ *0&lt;br /&gt;&#13;
Subject: Script idea&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
If I could write a script, it would be a countdown until the November&lt;br /&gt;&#13;
presidential election.&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
Mysteria Majicka BBS: Cape Cod Massachusetts. Running Virtual Advanced BBS on &lt;br /&gt;&#13;
10 Nodes.  VirtualNet / AspectNet,&lt;a href=&quot;telnet://majicka.at2k.org&quot;&gt;telnet://majicka.at2k.org&lt;/a&gt; or majicka,no-ip.org&lt;br /&gt;&#13;
                                    </description>
   <pubDate>Wed, 17 Jun 2020 05:56:31 -0500</pubDate>
   <link>http://mail.vadvbbs.com/web-bbs/forums/forum-viewmsg.php?t=33&amp;d=3&amp;m=231</link>
   <guid>http://mail.vadvbbs.com/web-bbs/forums/forum-viewmsg.php?t=33&amp;d=3&amp;m=231</guid>
  </item>
  <item>
   <title>TelView v1.11</title>
   <description>From:    Havok @1352000 *1&lt;br /&gt;&#13;
To:      Steve Winn @1 *1&lt;br /&gt;&#13;
Subject: TelView v1.11&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
Re: TelView v1.11&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
&amp;gt; TelView has been updated to fix the issues it had with SSL connections. It&lt;br /&gt;&#13;
&amp;gt; contains a new wget.exe as well as an updated ibbsupd.bat.&lt;br /&gt;&#13;
&amp;gt;&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
Works just like it should, good job Steve!&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
Thanks&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
-= Havok =-</description>
   <pubDate>Tue, 08 Oct 2019 14:11:43 -0500</pubDate>
   <link>http://mail.vadvbbs.com/web-bbs/forums/forum-viewmsg.php?t=33&amp;d=3&amp;m=230</link>
   <guid>http://mail.vadvbbs.com/web-bbs/forums/forum-viewmsg.php?t=33&amp;d=3&amp;m=230</guid>
  </item>
  <item>
   <title>TelView v1.11</title>
   <description>From:    Havok @1352000 *1&lt;br /&gt;&#13;
To:      Steve Winn @1 *1&lt;br /&gt;&#13;
Subject: TelView v1.11&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
Re: TelView v1.11&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
&amp;gt; TelView has been updated to fix the issues it had with SSL connections. It&lt;br /&gt;&#13;
&amp;gt; contains a new wget.exe as well as an updated ibbsupd.bat.&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
Thanks, I&amp;#039;ll give it a spin today!&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
</description>
   <pubDate>Fri, 04 Oct 2019 04:09:26 -0500</pubDate>
   <link>http://mail.vadvbbs.com/web-bbs/forums/forum-viewmsg.php?t=33&amp;d=3&amp;m=229</link>
   <guid>http://mail.vadvbbs.com/web-bbs/forums/forum-viewmsg.php?t=33&amp;d=3&amp;m=229</guid>
  </item>
  <item>
   <title>TelView v1.11</title>
   <description>From:    jahmas @1410000 *1&lt;br /&gt;&#13;
To:      Steve Winn @1 *1&lt;br /&gt;&#13;
Subject: TelView v1.11&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
Re: TelView v1.11&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
&amp;gt; TelView has been updated to fix the issues it had with SSL connections. It&lt;br /&gt;&#13;
&amp;gt; contains a new wget.exe as well as an updated ibbsupd.bat.&lt;br /&gt;&#13;
&amp;gt; It is available on my BBS or at:&lt;br /&gt;&#13;
&amp;gt; &lt;a href=&quot;https://www.vadvbbs.com/web-bbs/forums/files-viewmsg.php?t=42&amp;d=1&amp;m=1&quot;&gt;https://www.vadvbbs.com/web-bbs/forums/files-...&lt;/a&gt;&lt;br /&gt;&#13;
&amp;gt; --&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
Kewl!&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
Mysteria Majicka BBS: Cape Cod Massachusetts. Running Virtual Advanced BBS on &lt;br /&gt;&#13;
10 Nodes.  VirtualNet / AspectNet,&lt;a href=&quot;telnet://majicka.at2k.org&quot;&gt;telnet://majicka.at2k.org&lt;/a&gt; or majicka,no-ip.org&lt;br /&gt;&#13;
                                    </description>
   <pubDate>Thu, 03 Oct 2019 05:23:49 -0500</pubDate>
   <link>http://mail.vadvbbs.com/web-bbs/forums/forum-viewmsg.php?t=33&amp;d=3&amp;m=228</link>
   <guid>http://mail.vadvbbs.com/web-bbs/forums/forum-viewmsg.php?t=33&amp;d=3&amp;m=228</guid>
  </item>
  <item>
   <title>TelView v1.11</title>
   <description>From:    Steve Winn @1 *1&lt;br /&gt;&#13;
To:      All @ *0&lt;br /&gt;&#13;
Subject: TelView v1.11&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
TelView has been updated to fix the issues it had with SSL connections. It&lt;br /&gt;&#13;
contains a new wget.exe as well as an updated ibbsupd.bat.&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
It is available on my BBS or at:&lt;br /&gt;&#13;
&lt;a href=&quot;https://www.vadvbbs.com/web-bbs/forums/files-viewmsg.php?t=42&amp;d=1&amp;m=1&quot;&gt;https://www.vadvbbs.com/web-bbs/forums/files-...&lt;/a&gt;&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
--&lt;br /&gt;&#13;
[AT2k] -- Your VBBS/VADV Support Center -- [&lt;a href=&quot;http://www.at2k.org&quot;&gt;www.at2k.org&lt;/a&gt;] -- [bbs.at2k.org]</description>
   <pubDate>Wed, 02 Oct 2019 21:33:05 -0500</pubDate>
   <link>http://mail.vadvbbs.com/web-bbs/forums/forum-viewmsg.php?t=33&amp;d=3&amp;m=227</link>
   <guid>http://mail.vadvbbs.com/web-bbs/forums/forum-viewmsg.php?t=33&amp;d=3&amp;m=227</guid>
  </item>
  <item>
   <title>TelView</title>
   <description>From:    Havok @1352000 *1&lt;br /&gt;&#13;
To:      Steve Winn @1 *1&lt;br /&gt;&#13;
Subject: TelView&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
&amp;gt; TelView is currently broken and can&amp;#039;t download the listing. I am hoping to ha&lt;br /&gt;&#13;
&amp;gt; a fix soon.&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
Morning Steve&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
Thanks I&amp;#039;ll be looking forward to the update.&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
-Havok</description>
   <pubDate>Sat, 11 May 2019 02:51:08 -0500</pubDate>
   <link>http://mail.vadvbbs.com/web-bbs/forums/forum-viewmsg.php?t=33&amp;d=3&amp;m=226</link>
   <guid>http://mail.vadvbbs.com/web-bbs/forums/forum-viewmsg.php?t=33&amp;d=3&amp;m=226</guid>
  </item>
  <item>
   <title>TelView</title>
   <description>From:    Steve Winn @1 *1&lt;br /&gt;&#13;
To:      Havok @1352000 *1&lt;br /&gt;&#13;
Subject: TelView&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
Re: TelView&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
&amp;gt; Hello Steve&lt;br /&gt;&#13;
&amp;gt;&lt;br /&gt;&#13;
&amp;gt; I keep getting this error: ERROR! &amp;#8745;&amp;#9488;&amp;#9564; The latest listing was not downloaded&lt;br /&gt;&#13;
&amp;gt; due to an error.&lt;br /&gt;&#13;
&amp;gt;&lt;br /&gt;&#13;
&amp;gt; The only thing I changed was the path statement in the script.&lt;br /&gt;&#13;
&amp;gt;&lt;br /&gt;&#13;
&amp;gt; c:\va\.....&lt;br /&gt;&#13;
&amp;gt;&lt;br /&gt;&#13;
&amp;gt; Stock was:&lt;br /&gt;&#13;
&amp;gt; d:\va\.....&lt;br /&gt;&#13;
&amp;gt;&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
TelView is currently broken and can&amp;#039;t download the listing. I am hoping to have&lt;br /&gt;&#13;
a fix soon.&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
--&lt;br /&gt;&#13;
[AT2k] -- Your VBBS/VADV Support Center -- [&lt;a href=&quot;http://www.at2k.org&quot;&gt;www.at2k.org&lt;/a&gt;] -- [bbs.at2k.org]</description>
   <pubDate>Fri, 10 May 2019 20:00:25 -0500</pubDate>
   <link>http://mail.vadvbbs.com/web-bbs/forums/forum-viewmsg.php?t=33&amp;d=3&amp;m=225</link>
   <guid>http://mail.vadvbbs.com/web-bbs/forums/forum-viewmsg.php?t=33&amp;d=3&amp;m=225</guid>
  </item>
  <item>
   <title>TelView</title>
   <description>From:    Havok @1352000 *1&lt;br /&gt;&#13;
To:      All @ *0&lt;br /&gt;&#13;
Subject: TelView&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
Hello Steve&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
I keep getting this error: ERROR! &amp;#8745;&amp;#9488;&amp;#9564; The latest listing was not downloaded&lt;br /&gt;&#13;
due to an error.&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
The only thing I changed was the path statement in the script.&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
c:\va\.....&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
Stock was:&lt;br /&gt;&#13;
d:\va\.....&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
-=Havok The Ghetto BBS theghettobbs.com:2323&lt;br /&gt;&#13;
VirtualNET 1352000 Fidonet 1:123/131 Micronet 618:250/21 Survnet 9:91/6</description>
   <pubDate>Fri, 10 May 2019 08:23:35 -0500</pubDate>
   <link>http://mail.vadvbbs.com/web-bbs/forums/forum-viewmsg.php?t=33&amp;d=3&amp;m=224</link>
   <guid>http://mail.vadvbbs.com/web-bbs/forums/forum-viewmsg.php?t=33&amp;d=3&amp;m=224</guid>
  </item>
  <item>
   <title>TelView</title>
   <description>From:    Bones @1352000 *1&lt;br /&gt;&#13;
To:      All @ *0&lt;br /&gt;&#13;
Subject: TelView&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
Hello Steve&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
Any idea on this error message.&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
ERROR! &amp;#8745;&amp;#9488;&amp;#9564; The latest listing was not downloaded due to an error.&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
The only thing I changed was the path statement in the script.&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
c:\va&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
Stock it was&lt;br /&gt;&#13;
d:\va&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
Thanks as always.</description>
   <pubDate>Fri, 10 May 2019 08:20:42 -0500</pubDate>
   <link>http://mail.vadvbbs.com/web-bbs/forums/forum-viewmsg.php?t=33&amp;d=3&amp;m=223</link>
   <guid>http://mail.vadvbbs.com/web-bbs/forums/forum-viewmsg.php?t=33&amp;d=3&amp;m=223</guid>
  </item>
  <item>
   <title>Variable name restrictions?</title>
   <description>From:    Weird Al @1740000 *1&lt;br /&gt;&#13;
To:      Steve Winn @1 *1&lt;br /&gt;&#13;
Subject: Variable name restrictions?&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
Re: Variable name restrictions?&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
&amp;gt; No, we can assign A0 the value of 1 then we can use that to work with the&lt;br /&gt;&#13;
&amp;gt; array. In VADV, variables do not have a prefixed dollar sign. The dollar sign&lt;br /&gt;&#13;
&amp;gt; is used to specify the array.&lt;br /&gt;&#13;
&amp;gt; &amp;#039; Assign variable A0 the value of 1&lt;br /&gt;&#13;
&amp;gt; LET A0 = 1&lt;br /&gt;&#13;
&amp;gt; &amp;#039; Assign array element 1, a string value.&lt;br /&gt;&#13;
&amp;gt; LET $1 = &amp;quot;This is a test&amp;quot;&lt;br /&gt;&#13;
&amp;gt; &amp;#039; Print the array by referencing the value of A0.&lt;br /&gt;&#13;
&amp;gt; ? $A0&lt;br /&gt;&#13;
&amp;gt; That should print &amp;quot;This is a test&amp;quot;.&lt;br /&gt;&#13;
&amp;gt; This concept allows you to use loops with the array.&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
That clears up a lot.  No wonder I was having issues with variables.</description>
   <pubDate>Wed, 08 May 2019 09:36:00 -0500</pubDate>
   <link>http://mail.vadvbbs.com/web-bbs/forums/forum-viewmsg.php?t=33&amp;d=3&amp;m=222</link>
   <guid>http://mail.vadvbbs.com/web-bbs/forums/forum-viewmsg.php?t=33&amp;d=3&amp;m=222</guid>
  </item>
  <item>
   <title>Variable name restrictions?</title>
   <description>From:    Steve Winn @1 *1&lt;br /&gt;&#13;
To:      Weird Al @1740000 *1&lt;br /&gt;&#13;
Subject: Variable name restrictions?&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
Re: Variable name restrictions?&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
&amp;gt; Re: Variable name restrictions?&lt;br /&gt;&#13;
&amp;gt;&lt;br /&gt;&#13;
&amp;gt; &amp;gt; In VADV, you can use A0, A1, B0, etc. There are no descriptive named var&lt;br /&gt;&#13;
&amp;gt; &amp;gt; Some are reserved like X0, Y0, Z0.&lt;br /&gt;&#13;
&amp;gt; &amp;gt; You also have an array you can use $1-$255.. which is a really nice addi&lt;br /&gt;&#13;
&amp;gt; &amp;gt; from VBBS. You can use variables to reference the array, such as LET A0&lt;br /&gt;&#13;
&amp;gt; &amp;gt; LET $A0 = &amp;quot;BLAH&amp;quot; will set $1 to &amp;quot;BLAH&amp;quot;.&lt;br /&gt;&#13;
&amp;gt; &amp;gt; Once you figure out a system on what letters to use for things, you can&lt;br /&gt;&#13;
&amp;gt; &amp;gt; track of what they are. You can look at my ATMatrix script for possibly&lt;br /&gt;&#13;
&amp;gt; &amp;gt; best example of what I do.&lt;br /&gt;&#13;
&amp;gt;&lt;br /&gt;&#13;
&amp;gt; Did you mean LET $A0 = $1?&lt;br /&gt;&#13;
&amp;gt;&lt;br /&gt;&#13;
&amp;gt; I&amp;#039;ll have a look.  I&amp;#039;m surprised my script works with the variable names I&amp;#039;ve&lt;br /&gt;&#13;
&amp;gt; used.&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
No, we can assign A0 the value of 1 then we can use that to work with the&lt;br /&gt;&#13;
array. In VADV, variables do not have a prefixed dollar sign. The dollar sign&lt;br /&gt;&#13;
is used to specify the array.&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
&amp;#039; Assign variable A0 the value of 1&lt;br /&gt;&#13;
LET A0 = 1&lt;br /&gt;&#13;
&amp;#039; Assign array element 1, a string value.&lt;br /&gt;&#13;
LET $1 = &amp;quot;This is a test&amp;quot;&lt;br /&gt;&#13;
&amp;#039; Print the array by referencing the value of A0.&lt;br /&gt;&#13;
? $A0&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
That should print &amp;quot;This is a test&amp;quot;.&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
This concept allows you to use loops with the array.&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
--&lt;br /&gt;&#13;
[AT2k] -- Your VBBS/VADV Support Center -- [&lt;a href=&quot;http://www.at2k.org&quot;&gt;www.at2k.org&lt;/a&gt;] -- [bbs.at2k.org]</description>
   <pubDate>Wed, 08 May 2019 08:19:53 -0500</pubDate>
   <link>http://mail.vadvbbs.com/web-bbs/forums/forum-viewmsg.php?t=33&amp;d=3&amp;m=221</link>
   <guid>http://mail.vadvbbs.com/web-bbs/forums/forum-viewmsg.php?t=33&amp;d=3&amp;m=221</guid>
  </item>
  <item>
   <title>Ah yes.</title>
   <description>From:    Weird Al @1740000 *1&lt;br /&gt;&#13;
To:      All @ *0&lt;br /&gt;&#13;
Subject: Ah yes.&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
Somehow I skimmed over the part in the script doc that explains variables.&lt;br /&gt;&#13;
It&amp;#039;s starting to come back to me why I never upgraded from VBBS 6.12b to VADV.&lt;br /&gt;&#13;
The changes in the script language.&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
I was able to download your matrix script and see some examples of usage.</description>
   <pubDate>Tue, 07 May 2019 21:44:57 -0500</pubDate>
   <link>http://mail.vadvbbs.com/web-bbs/forums/forum-viewmsg.php?t=33&amp;d=3&amp;m=220</link>
   <guid>http://mail.vadvbbs.com/web-bbs/forums/forum-viewmsg.php?t=33&amp;d=3&amp;m=220</guid>
  </item>
  <item>
   <title>Variable name restrictions?</title>
   <description>From:    Weird Al @1740000 *1&lt;br /&gt;&#13;
To:      Steve Winn @1 *1&lt;br /&gt;&#13;
Subject: Variable name restrictions?&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
Re: Variable name restrictions?&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
&amp;gt; In VADV, you can use A0, A1, B0, etc. There are no descriptive named variable&lt;br /&gt;&#13;
&amp;gt; Some are reserved like X0, Y0, Z0.&lt;br /&gt;&#13;
&amp;gt; You also have an array you can use $1-$255.. which is a really nice addition&lt;br /&gt;&#13;
&amp;gt; from VBBS. You can use variables to reference the array, such as LET A0 = 1;&lt;br /&gt;&#13;
&amp;gt; LET $A0 = &amp;quot;BLAH&amp;quot; will set $1 to &amp;quot;BLAH&amp;quot;.&lt;br /&gt;&#13;
&amp;gt; Once you figure out a system on what letters to use for things, you can keep&lt;br /&gt;&#13;
&amp;gt; track of what they are. You can look at my ATMatrix script for possibly the&lt;br /&gt;&#13;
&amp;gt; best example of what I do.&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
Did you mean LET $A0 = $1?&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
I&amp;#039;ll have a look.  I&amp;#039;m surprised my script works with the variable names I&amp;#039;ve&lt;br /&gt;&#13;
used.</description>
   <pubDate>Tue, 07 May 2019 21:20:25 -0500</pubDate>
   <link>http://mail.vadvbbs.com/web-bbs/forums/forum-viewmsg.php?t=33&amp;d=3&amp;m=219</link>
   <guid>http://mail.vadvbbs.com/web-bbs/forums/forum-viewmsg.php?t=33&amp;d=3&amp;m=219</guid>
  </item>
 </channel>
</rss>
