Hi guys, Another question..
I am using:
on *:dialog:check:sclick:3:{
 did -r $dname 13
 var %f 1
 while ($lines( $+ $did(3).seltext $+ .txt) >= %f) {
  did -a $dname 13 $gettok($read( $+ $did(3).seltext $+ .txt,%f),1,32)
  inc %f
 }
 else break
}
so I get the data in the list like this:
Dream
Super
High
Super
Dream
Power
.
.
I want the bot to don't duplicate the name so I want to get:
Dream
Super
High
Power
.
.
how to do it guys?