need help wrapping results i want this to show like
sample
Qualified User:Name1 has 5 tokens.,Name2 has 5 tokens.,Name3 has 5 tokens.,Name4 has 5 tokens.,End List.
instead of
Qualified User:Name1 has 5 Tokens.
Qualified User:Name2 has 8 Tokens.
Qualified User:Name3 has 9 Tokens.
Qualified User:Name4 has 5 Tokens.

Code:
[/code]

on *:input:*:{
  if (%busywithinput == yes) { halt }
  if ($1 == !tokens) { set %busywithinput yes
    var %i = 1
    while ($hget(TwitchChannelUsers,%i).data) {
      if ($v1 >= 4) { .timer 1 2 msg $active Qualified Users: $+ $hget(TwitchChannelUsers,%i).item has $hget(TwitchChannelUsers,%i).data Tokens. }
      inc %i
    }
    .timer 1 6 .set %busywithinput no
  }
}

[code]

Last edited by DaRkCaSTLe1974; 29/05/13 10:28 PM.