gfxgfx
 
Please login or register.

Login with username, password and session length
 
gfx gfx
gfx
76777 Posts in 13503 Topics by 1651 Members - Latest Member: insider4ever May 20, 2024, 09:43:55 pm
*
gfx*gfx
gfx
WinMX World :: Forum  |  Metis Scripts and Help  |  Other Metis scripts  |  WCS /level Command
gfx
gfxgfx
 

Author Topic: WCS /level Command  (Read 2599 times)

0 Members and 1 Guest are viewing this topic.

Offline reef

  • WMW Volunteer
  • *****
  • ***
WCS /level Command
« on: January 06, 2008, 12:45:08 am »
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)  :P

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.

Code: [Select]
<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)

WinMX World :: Forum  |  Metis Scripts and Help  |  Other Metis scripts  |  WCS /level Command
 

gfxgfx
gfx
©2005-2024 WinMXWorld.com. All Rights Reserved.
SMF 2.0.19 | SMF © 2021, Simple Machines | Terms and Policies
Page created in 0.012 seconds with 18 queries.
Helios Multi © Bloc
gfx
Powered by MySQL Powered by PHP Valid XHTML 1.0! Valid CSS!