hi i have 3 "2-dimensional" arrays. array1(0,0-X) - 0-X max value is in var $limit1 array2(1,0-X) - 0-X max value is in var $limit2 array3(2,0-X) - 0-X max value is in var $limit3 i want same entries to be put in a new array, with the positions where it is in the original arrays newarray(v...
thanks, the array stuff worked, didnt thought about that :) another thing, is it possible to do a endless loop till a channel trigger breaks it? my example breakes my eggdrop (he times out) set chan "#channel" set blub "!blub" bind pub - $blub blub set running 0 set break "&...
thx for the reply. there are 3 vars countzeilen0 , countzeilen1, countzeilen2 each containing a number. if i < countzeilen0 if i < countzeilen1 ..... the tempstuff is not working : set temp $countzeilen$i for {set j 0} {$j<$temp} {incr j} { Tcl error [tsharing]: can't read "countzeilen": n...
Hi, for {set i 0} {$i<3} {incr i} { for {set j 0} {$j<$countzeilen$i} {incr j} { set zeile$i$j [string trim $zeile$i$j ":"] } } the problem is a puttogether variable "$countzeile$i" is not allowed, how can i fix it with the right syntax? also, same problem with the puttogether [s...