<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
	<link rel="self" type="application/atom+xml" href="https://forum.eggheads.org/app.php/feed/topic/6591" />

	<title>egghelp/eggheads community</title>
	<subtitle>Discussion of eggdrop bots, shell accounts and tcl scripts.</subtitle>
	<link href="https://forum.eggheads.org/index.php" />
	<updated>2004-03-21T16:54:14-04:00</updated>

	<author><name><![CDATA[egghelp/eggheads community]]></name></author>
	<id>https://forum.eggheads.org/app.php/feed/topic/6591</id>

		<entry>
		<author><name><![CDATA[Buffy_25]]></name></author>
		<updated>2004-03-21T16:54:14-04:00</updated>

		<published>2004-03-21T16:54:14-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34841#p34841</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34841#p34841"/>
		<title type="html"><![CDATA[transfer of variables]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34841#p34841"><![CDATA[
Hi stdragon,<br><br>The point is that i also tried to work with the var mychanjoin (cfr some msg's before in this post), but even with that i got on bot2 the value "0" iso having the right time stamp from bot1  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_sad.gif" width="15" height="15" alt=":(" title="Sad"> <br><br>Do you or anyone else know how i could solve this matter of transferring the [getchanjoin $nick #channel] to my bot2?<br><br>I tried arrays, putbot and var mychanjoin but still without luck  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_confused.gif" width="15" height="15" alt=":-?" title="Confused"> <br><br>Thnx in advance.<br><br>Regards,<br>Buffy<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4178">Buffy_25</a> — Sun Mar 21, 2004 4:54 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[stdragon]]></name></author>
		<updated>2004-03-21T16:10:08-04:00</updated>

		<published>2004-03-21T16:10:08-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34840#p34840</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34840#p34840"/>
		<title type="html"><![CDATA[transfer of variables]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34840#p34840"><![CDATA[
<blockquote class="uncited"><div><br>bot2: <div class="codebox"><p>Code: </p><pre><code>bind bot - "accept" procbot proc procbot {bot command text} { global mychanjoin set nick [lindex [split $text] 0] set jointime [lindex [split $text] 1] set [getchanjoin $nick #channel] jointime } </code></pre></div></div></blockquote>I think the point of this code was to use the var mychanjoin, not [getchanjoin].<br><blockquote class="uncited"><div><br>So it seems that getchanjoin hasn't been transferred to bot2  <br>I don't know if this is a correct statement : set [getchanjoin $nick #flightsim] jointime (i think we can't modify a getchanjoin...or am i wrong?). But i don't know what else i can try to get that getchanjoin from bot1 to bot2  <br><br>I hope with this information you can help me a bit more. <br><br>Thnx in advance. <br><br>Best regards, <br><br>Buffy</div></blockquote>You are right, set [getchanjoin ...] blah does not modify the getchanjoin. You have to store it in your own variable and use that instead.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8">stdragon</a> — Sun Mar 21, 2004 4:10 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Buffy_25]]></name></author>
		<updated>2004-03-21T04:01:38-04:00</updated>

		<published>2004-03-21T04:01:38-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34818#p34818</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34818#p34818"/>
		<title type="html"><![CDATA[transfer of variables]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34818#p34818"><![CDATA[
GodOfSuicide, <br><br>I tried as you said with bind/putbot, but still didn't work. <br><br>I did like this: <br>1) Added the code on both bots <br><br>bot1: <div class="codebox"><p>Code: </p><pre><code>bind join - * joinproc proc joinproc {nick uhost hand chan} { if {[string equal -nocase $nick "bot1"] || [string match -nocase "*@blabla.com" $uhost]} { foreach nick [chanlist #channel] { putbot bot2 [list accept $nick [getchanjoin $nick #channel]] puthelp "PRIVMSG #controlchan : [list accept $nick [getchanjoin $nick #channel]]" } } } </code></pre></div><br>bot2: <div class="codebox"><p>Code: </p><pre><code>bind bot - "accept" procbot proc procbot {bot command text} { global mychanjoin set nick [lindex [split $text] 0] set jointime [lindex [split $text] 1] set [getchanjoin $nick #channel] jointime } </code></pre></div><br>3) Then i rehashed both of them (and restarted bot1...and bot1 rejoined in the mean time) <br>4) I quited my mirc <br>5) I restarted bot2 <br>6) My mirc joined the channel (bot1 got his getchanjoin) <br>7) My bot2 rejoined the channel <br> I saw in #controlchan -&gt; <br>[09:37] Tcl error [procbot]: nick1 is not on #channel <br>[09:37] Tcl error [procbot]: nick2 is not on #channel <br>[09:37] Tcl error [procbot]: nick3 is not on #channel <br>[09:37] Tcl error [procbot]: nick4 is not on #channel <br>... (for all the nicks in my channel) <br><br>9) But then i was in my #controlchan: <br>&lt;bot1&gt; accept my_mirc_nick 1079853981 <br>&lt;bot1&gt; accept bot2 1079854108 <br>&lt;bot1&gt; accept bot1 1079853942 <br>&lt;bot1&gt; accept nick1 0 <br>&lt;bot1&gt; accept nick2 0 <br>&lt;bot1&gt; accept nick3 0 <br>(all the other nicks got "0" 'cause my bot1 has been restarted and doesn't have a getchanjoin for them...isn't it?) <br><br>Now i would like to see if both bots would have the same getchanjoin for my join (mirc). So i would have hoped that bot1 would have passed his getchanjoin of me to bot2... <br><br>so i did like this to check the getchanjoin of my_mirc_nick on both bots: <br><br>bot1: <div class="codebox"><p>Code: </p><pre><code>bind pub - "test1" chantest proc chantest {nick uhost hand chan arg} { global mychanjoin set channel #channel set nick [lindex [split $arg] 0] puthelp "PRIVMSG #controlchan : [getchanjoin $nick #channel]" } </code></pre></div><br>bot2: <div class="codebox"><p>Code: </p><pre><code>bind pub - "test" chantest proc chantest {nick uhost hand chan arg} { global mychanjoin set channel #channel set nick [lindex [split $arg] 0] puthelp "PRIVMSG #controlchan : [getchanjoin $nick #channel]" } </code></pre></div><br>So i typed in #controlchan : <br>test1 my_mick (-&gt; i got as response : &lt;bot1&gt; 1079853981) <br>test my_nick (-&gt; i got as response : &lt;bot2&gt; 0) <br><br>So it seems that getchanjoin hasn't been transferred to bot2  <br>I don't know if this is a correct statement : set [getchanjoin $nick #flightsim] jointime (i think we can't modify a getchanjoin...or am i wrong?). But i don't know what else i can try to get that getchanjoin from bot1 to bot2  <br><br>I hope with this information you can help me a bit more. <br><br>Thnx in advance. <br><br>Best regards, <br><br>Buffy<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4178">Buffy_25</a> — Sun Mar 21, 2004 4:01 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Buffy_25]]></name></author>
		<updated>2004-02-29T07:08:39-04:00</updated>

		<published>2004-02-29T07:08:39-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=34108#p34108</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=34108#p34108"/>
		<title type="html"><![CDATA[transfer of variables]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=34108#p34108"><![CDATA[
Hi,<br><br>Strikelight, thnx for that info. I changed it. But it still doesn't work the transfert of variables...i got all the time the error:<br>[12:57] Tcl error [chantest]: can't read "mychanjoin(a_nickname,#channel)": no such element inrray<br><br>So i tried another way of working. Can you guys pls check if this is possible?<br><br>Let's say i have one bot1 in my channel #blabla.<br>Persons are joining and my bot1 takes their [getchanjoin $nick #channel] in an array:<br>(script on bot1)<br>bind join - * joinproc<br>proc joinproc {nick uhost hand chan} {<br>if {[onchan bot2 #blabla]} {return 0}<br> array set mychanjoin {<br>  $nick [getchanjoin $nick #blabla]<br>  }<br>}<br><br>Now when bot2 get's online, i would like that bot1 sends all the info, in his array mychanjoin, to bot2:<br>(script on bot1)<br>bind link - * detect:bot<br>proc detect:bot {botname via} {<br>if {[islinked "bot2"]} {<br> foreach {$nick} [array get mychanjoin] {<br>  putbot bot2 "accept $nick [getchanjoin $nick #blabla]"<br>  }<br> }<br>}<br><br>Now bot2 recieves this info, and i would like to put it in an array on bot2:<br>(script on bot2)<br>bind bot - "accept" procbot<br>proc procbot {bot command text} {<br> set nick [lindex [split $text] 0]<br> set timein [lindex [split $text] 1]<br> set array mychanjoin {<br>  $nick $timein<br> }<br>}<br><br>Will now bot2 have the same value of [getchanjoin $nick #blabla] as my bot1?<br><br>Is this the right way to work?<br>Thnx.<br><br>Best regards,<br>Buffy<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4178">Buffy_25</a> — Sun Feb 29, 2004 7:08 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[GodOfSuicide]]></name></author>
		<updated>2004-02-19T09:41:50-04:00</updated>

		<published>2004-02-19T09:41:50-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=33728#p33728</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=33728#p33728"/>
		<title type="html"><![CDATA[transfer of variables]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=33728#p33728"><![CDATA[
why not transfer the data via putbot / bind bot ?<br>i do it the same way with my scripts since a leaf bot does all the HTML parsing / exec's and so on...a quick&amp;dirty multithread workaround <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_wink.gif" width="15" height="15" alt=";)" title="Wink"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=1433">GodOfSuicide</a> — Thu Feb 19, 2004 9:41 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[strikelight]]></name></author>
		<updated>2004-02-18T23:12:59-04:00</updated>

		<published>2004-02-18T23:12:59-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=33725#p33725</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=33725#p33725"/>
		<title type="html"><![CDATA[transfer of variables]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=33725#p33725"><![CDATA[
One thing that jumps out at me is that you can not read from a file that you have opened in write mode (w)..... open the file in read mode (r) to get the contents.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2005">strikelight</a> — Wed Feb 18, 2004 11:12 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Buffy_25]]></name></author>
		<updated>2004-02-18T18:03:07-04:00</updated>

		<published>2004-02-18T18:03:07-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=33707#p33707</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=33707#p33707"/>
		<title type="html"><![CDATA[transfer of variables]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=33707#p33707"><![CDATA[
I tried the following:<br><br>on Bot1 (that is already online, and Bot2 is temporarily not online):<br><div class="codebox"><p>Code: </p><pre><code>bind link - * detect:botbind bot - "!Transferftpinfo" ftp:transferinfobind bot - "!Transferuserinfo" user:transferinfobind link - * getchanjoin:transfertbind pub - "test" chantestbind bot - "jointime" procbotbind join - * joinproc#when a person joins, his getchanjoin is added into $mychanjoin(with nick and channel info also) from Bot1proc joinproc {nick uhost hand chan} {global mychanjoinset channel #channelset mychanjoin($nick,$channel) [getchanjoin $nick $channel]}#when Bot2 was online, and Bot1 came online (opposite as normal), then Bot2 will send his getchanjoins to Bot1, starting with "jointime". Bot1 will store those info's into variablesproc procbot {bot command text} {global mychanjoinset nick [lindex [split $text] 0]set channel [lindex [split $text] 1]set mychanjoin($nick,$channel) [lindex [split $text] 2]}#This is for testing. When i type in #channel : test1 a_nickname_online , then i should get the getchanjoin value from that nickproc chantest {nick uhost hand chan arg} {global mychanjoinset channel #channelset nick [lindex [split $arg] 0]puthelp "PRIVMSG #channel : $mychanjoin($nick,$channel)"}#If Bot2 (that was not on #channel) and joins #channel, then Bot1 sends all the getchanjoins that he had, to Bot2 (so that Bot2, get all the getchanjoins too). Is same as "proc procbot", but then for Bot1proc getchanjoin:transfert {botname via} {if {[islinked "Bot2"]} {global mychanjoinset channel #channelforeach user [chanlist #channel] {putbot Bot2 "jointime $user $channel $mychanjoin($user,$channel)"puthelp "PRIVMSG #channel1 : jointime $user $channel $mychanjoin($user,$channel)"}}}#If Bot2 wasn't online, and then comes online, then Bot1 will send all his info that is in "usersuptime_backup.txt" to Bot2 (those are send in privmsg beginning with !transferuserinfo or !transferftpinfo). Bot2 will detect those first words, and will write them down in a txt file.proc detect:bot {botname via} {if {[islinked "Bot2"]} {timer 10 {set file [open /usr/home/eggdrop/logs/usersuptime_backup.txt w+]set buf [read $file]foreach line [split $buf \n] {set line [string trim $line " "]if {$line == ""} {continue}#putserv "PRIVMSG Bot1 :\001!Transferuserinfo $line"putbot Bot1 !Transferuserinfo $line}set file [open /usr/home/eggdrop/logs/ftpsuptime_backup.txt w+]set buf1 [read $file]foreach line [split $buf1 \n] {set line [string trim $line " "]if {$line == ""} {continue}#putserv "PRIVMSG Bot2 :\001!Transferftpinfo $line"putbot Bot1 !Transferftpinfo $line}timer 60 { file delete /usr/home/eggdrop/logs/usersuptime_backup.txtfile delete /usr/home/eggdrop/logs/ftpsuptime_backup.txt }}}}#Bot1 will write down info coming from Bot2 starting with !tTransferftpinfoproc ftp:transferinfo {botnick command arg} {set file [open /home/eggdrop/logs/ftpsuptime.txt a+]puts $file "$arg"close $file}#Bot1 will write down info coming from Bot2 starting with !Transferuserinfoproc user:transferinfo {botnick command arg} {set file [open /home/eggdrop/logs/usersuptime.txt a+]puts $file "$arg"close $file}</code></pre></div>Now my questions are:<br>How come i don't get a file getting created when i get from another bot the msg starting with !Transferftpinfo , and then in getting in useruptime.txt some info in it :-/<br>Secondly, how come, when i do on the bot that joined as Bot2, and i want to see the value in $mychanjoin($nick,$channel), this value gives me all the time "0" and not the right getchanjoin (i.e. 1077132933)?<br><br>Is there anything wrong in my coding plz?<br><br>Thnx in advance.<br><br>Best regards,<br><br>Buffy<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4178">Buffy_25</a> — Wed Feb 18, 2004 6:03 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Buffy_25]]></name></author>
		<updated>2004-01-20T08:43:41-04:00</updated>

		<published>2004-01-20T08:43:41-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=32683#p32683</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=32683#p32683"/>
		<title type="html"><![CDATA[transfer of variables]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=32683#p32683"><![CDATA[
So let's say i can add in my procedures the following:<br><br>"set jointime($nick) [getchanjoin $nick #channel]"<br><br>How can i send for each $nick, the jointime to my second bot pls?<br>So that my 2nd bot will get the following information:<br>%jointime(David) xxxxxxxxx<br>%jointime(Belle) xxxxxxxx<br>....<br><br>Is that with a for each loop? Or another way to do it?<br>So i presume that my 1st bot has all the getchanjoins of each nick in his memory and need to send it to my 2nd bot (maybe through putbot or bind msg). Can i put this into a islinked command, so when 2nd bot joins, he gets automatically all my %jointime($nick's)<br><br>Thnx.<br><br>Best regards,<br><br>Buffy<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4178">Buffy_25</a> — Tue Jan 20, 2004 8:43 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Buffy_25]]></name></author>
		<updated>2004-01-17T23:06:29-04:00</updated>

		<published>2004-01-17T23:06:29-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=32622#p32622</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=32622#p32622"/>
		<title type="html"><![CDATA[transfer of variables]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=32622#p32622"><![CDATA[
Hi guys,<br><br>I tried to use Sir_Fz's method, but my problem is:<br>Let's say i have in my first bot in a certain procedure:<br><br>set usertotaltime($nick) [duration [expr [clock seconds] - [getchanjoin nickname #channel]]]<br><br>So i would like that the variable %usertotaltime for that specific nick is sent to my second bot.<br><br>Will that work with:<br>putbot bot2_name var %usertotaltime(%nick)  -&gt; so my second bot will react on that putbot starting with "var"...(as Sir_Fz initiated)<br>BUT let's say if my bot has in his memory 5 nicks with their uptime, how can i get those 5 nick uptimes into my second bot?<br>This is my problem.<br><br>Also, for those var exchanges, this will only happen between the bots...so do i need to put as flag b ?<br><br>Thnx in advance!<br><br>Best regards,<br><br>Buffy<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4178">Buffy_25</a> — Sat Jan 17, 2004 11:06 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[stdragon]]></name></author>
		<updated>2004-01-16T19:02:47-04:00</updated>

		<published>2004-01-16T19:02:47-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=32587#p32587</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=32587#p32587"/>
		<title type="html"><![CDATA[transfer of variables]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=32587#p32587"><![CDATA[
If you share user files, maybe the easiest way is to create a fake user, and use setuser xtra to add whatever variables you want to him. Then they will be transferred automatically when the bots link.<br><br>Actually I'm not sure if xtra vars are transferred or not... but they might be!<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8">stdragon</a> — Fri Jan 16, 2004 7:02 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Buffy_25]]></name></author>
		<updated>2004-01-15T08:03:47-04:00</updated>

		<published>2004-01-15T08:03:47-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=32527#p32527</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=32527#p32527"/>
		<title type="html"><![CDATA[transfer of variables]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=32527#p32527"><![CDATA[
Thnx guys to try to help me out with this item.<br><br>I will try with those remarks written above.<br>I'll keep you advised! <br><br>Best regards,<br><br>Buffy<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4178">Buffy_25</a> — Thu Jan 15, 2004 8:03 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2004-01-11T19:50:59-04:00</updated>

		<published>2004-01-11T19:50:59-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=32452#p32452</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=32452#p32452"/>
		<title type="html"><![CDATA[transfer of variables]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=32452#p32452"><![CDATA[
I never used those two, So I don't have any experiance with them to offer them in the solution. But, I'm sure there can be a better solution.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Sun Jan 11, 2004 7:50 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[strikelight]]></name></author>
		<updated>2004-01-11T17:55:04-04:00</updated>

		<published>2004-01-11T17:55:04-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=32447#p32447</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=32447#p32447"/>
		<title type="html"><![CDATA[transfer of variables]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=32447#p32447"><![CDATA[
From reading the initial problem... I don't even understand how the solution provided was remotely related to the original quandry...<br><br>  I would have suspected a solution along the lines consisting of "bind link", "putbot", etc...<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2005">strikelight</a> — Sun Jan 11, 2004 5:55 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2004-01-11T17:36:42-04:00</updated>

		<published>2004-01-11T17:36:42-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=32445#p32445</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=32445#p32445"/>
		<title type="html"><![CDATA[transfer of variables]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=32445#p32445"><![CDATA[
He doesn't seem to care ?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Sun Jan 11, 2004 5:36 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2004-01-11T16:28:10-04:00</updated>

		<published>2004-01-11T16:28:10-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=32444#p32444</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=32444#p32444"/>
		<title type="html"><![CDATA[transfer of variables]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=32444#p32444"><![CDATA[
Not telling anybody is a very idiotic way to look at security.<br><br>What would make more sence is to use what Tcl calls an array. IE, you only populate a single array, where the name is an array key and then the value.<br><br>Although chaging settings at will is still insecure, damage limitation is for more managable<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Sun Jan 11, 2004 4:28 pm</p><hr />
]]></content>
	</entry>
	</feed>
