- or download this
# 0=>A, B=>1, C=>2, D=>3, E=>4, F=>5
# A joins
...
# Get the colors:
local $_;
print "$_: " . join ", ", $chat->color($_) for 0..5;
- or download this
# 0=>A, B=>1, C=>2, D=>3, E=>4, F=>5
# A joins
...
$chat->tick(1, $stamp+1);
print "B: " . join ", ", $chat->color(1);
# etc.
- or download this
package Heinz::Colors;
...
sub col : lvalue { $_[0]->[3] }
1;