| TinTin++ Mud Client Scripts |
|
|
| Kill Counter |
| This script creates a list of mobs you've killed, as well as how many times you've killed them. |
#nop This script is written for v1.99.7 and higher
#var klist {}
#act {%1 is DEAD!!}
{
#math klist[%1] $klist[%1] + 1;
}
#alias {klist}
{
#echo {<ffb>%h} { KILL LIST };
#foreach {$klist[]} {item}
{
#regex {$item} {%0}
{
#echo {<178>%+4s<068>: <128>%s<088>} {$klist[$item]} {$item}
}
};
#echo {<ffb>%h} { KILL LIST }
}
#alias {test}
{
#foreach {{Smurf} {Kobolt} {Twinkie}} {name}
{
#loop 1 1d20 cnt
{
#showme $name is DEAD!!
}
}
}
|