As a long time FXS user and now a WCS user.... i missed the ability
of leveling a user via the right click command in the user list (using winmx)
rather than having to type in /stats <user> (ya... call me lazy)
So this modification of Omegas "User Stats" script will enable you to
once again level a user via right click.Some other old FXS users
who have recently switched might enjoy having this ability back as well.
First of all you need to add this custom command to your WCS config
CustomCommand=/LEVEL=YOURBOTSLOGIN
Now add the below script to your bots MXC file or create a new .xml file.
(Script was tested on RoboMX 2.06 - Metis270-test6)
*If you add it straight into your MXC.xml file,remove <config> and
</config> from the script.
<config>
///Change ADMIN1 etc to your admins names
<usergroup name="levelers">
*ADMIN1*
*ADMIN2*
*ADMIN3*
ADDMORE
</usergroup>
<command type="script" mode="thread" usergroup="levelers">
<in>/level %PARAM%</in>
<out type="push" extdata="LEVELER">%NAME%</out>
<out>/stats %PARAM%</out>
</command>
<command type="script" mode="thread">
<in>Username: %PARAM%</in>
<out type="push" extdata="USERNAME">%PARAM%</out>
</command>
<command type="script" mode="thread">
<in>IP Address: %PARAM%</in>
<out type="push" extdata="IP">%PARAM%</out>
</command>
<command type="script" mode="thread">
<in>Hostname: %PARAM%</in>
<out type="push" extdata="HOSTNAME">%PARAM%</out>
</command>
<command type="script" mode="thread">
<in>Access: %PARAM%</in>
<out type="push" extdata="ACCESS">%PARAM%</out>
</command>
<command type="script" mode="thread">
<in>Files: %PARAM%</in>
<out type="push" extdata="FILES">%PARAM%</out>
</command>
<command type="script" mode="thread">
<in>Total Messages: %PARAM%</in>
<out type="push" extdata="MSGTALLY">%PARAM%</out>
</command>
<command type="script" mode="thread">
<in>Stay Time: %PARAM%</in>
<out type="push" extdata="STAYTIME">%PARAM%</out>
</command>
<command type="script" mode="thread">
<in>Idle Time: %PARAM%</in>
<out type="push" extdata="IDLETIME">%PARAM%</out>
</command>
<command type="script" mode="thread">
<in>WPN Connect Time: %PARAM%</in>
<out type="push" extdata="WPNCONNECT">%PARAM%</out>
</command>
<command type="script" mode="thread">
<in>Transfer Status: %PARAM%</in>
<out type="push" extdata="TRANSFERS">%PARAM%</out>
</command>
<command type="script" mode="thread">
<in>Client: %PARAM%</in>
<out type="push" extdata="CLIENT">%PARAM%</out>
</command>
<command type="script" mode="thread">
<in>Text Format: %PARAM%</in>
<out type="push" extdata="TFORMAT">%PARAM%</out>
<out delay="100">/hidecmd /privnotice $LEVELER$ #c12#[Private] #c7#[OpMsg] #c1#User#c1#name: #c8#$USERNAME$</out>
<out delay="100">/hidecmd /privnotice $LEVELER$ #c12#[Private] #c7#[OpMsg] #c1#I#c1#P Address: #c8#$IP$</out>
<out delay="100">/hidecmd /privnotice $LEVELER$ #c12#[Private] #c7#[OpMsg] #c1#Host#c1#name: #c8#$HOSTNAME$</out>
<out delay="100">/hidecmd /privnotice $LEVELER$ #c12#[Private] #c7#[OpMsg] #c1#Acc#c1#ess: #c8#$ACCESS$</out>
<out delay="100">/hidecmd /privnotice $LEVELER$ #c12#[Private] #c7#[OpMsg] #c1#Fil#c1#es: #c8#$FILES$</out>
<out delay="100">/hidecmd /privnotice $LEVELER$ #c12#[Private] #c7#[OpMsg] #c1#Tot#c1#al Mess#c1#ages: #c8#$MSGTALLY$</out>
<out delay="100">/hidecmd /privnotice $LEVELER$ #c12#[Private] #c7#[OpMsg] #c1#Sta#c1#y Ti#c1#me: #c8#$STAYTIME$</out>
<out delay="100">/hidecmd /privnotice $LEVELER$ #c12#[Private] #c7#[OpMsg] #c1#Id#c1#le Ti#c1#me: #c8#$IDLETIME$</out>
<out delay="100">/hidecmd /privnotice $LEVELER$ #c12#[Private] #c7#[OpMsg] #c1#WP#c1#N Conn#c1#ect Ti#c1#me: #c8#$WPNCONNECT$</out>
<out delay="100">/hidecmd /privnotice $LEVELER$ #c12#[Private] #c7#[OpMsg] #c1#Trans#c1#fer Stat#c1#us: #c8#$TRANSFERS$</out>
<out delay="100">/hidecmd /privnotice $LEVELER$ #c12#[Private] #c7#[OpMsg] #c1#Cli#c1#ent: #c8#$CLIENT$</out>
<out delay="100">/hidecmd /privnotice $LEVELER$ #c12#[Private] #c7#[OpMsg] #c1#Te#c1#xt #c1#For#c1#mat: #c8#$TFORMAT$</out>
<out type="pop" extdata="LEVELER"/>
<out type="pop" extdata="USERNAME"/>
<out type="pop" extdata="IP"/>
<out type="pop" extdata="HOSTNAME"/>
<out type="pop" extdata="ACCESS"/>
<out type="pop" extdata="FILES"/>
<out type="pop" extdata="MSGTALLY"/>
<out type="pop" extdata="STAYTIME"/>
<out type="pop" extdata="IDLETIME"/>
<out type="pop" extdata="WPNCONNECT"/>
<out type="pop" extdata="TRANSFERS"/>
<out type="pop" extdata="CLIENT"/>
<out type="pop" extdata="TFORMAT"/>
</command>
</config>
P.S. Bot will need Admin access (of course)