Difference between revisions of "MQ2AutoDestroy" - MMOBugs Wiki

Line 1: Line 1:
 +
{{plugin}}
 
{{Pluginbox
 
{{Pluginbox
| name=MQ2AutoDestroy
+
| name = MQ2AutoDestroy
| author=Cr4zyb4rd
+
| author = Cr4zyb4rd
 +
| link = [http://www.mmobugs.com/wiki/index.php/MQ2AutoDestroy Wiki Link]
 +
| commands=Multiple
 +
| source = Yes
 +
| usesini = Yes
 
}}
 
}}
 +
==Description==
 +
<font class="highlight">MQ2AutoDestory</font> is a plugin that can be used to automatically keep or destroy items as they appear on the mouse cursor.  It also provies a command to handle these actions based on the same INI file, for those who feel the automatic handling is too risky or uses too much CPU.  The INI file is character/server specific.
  
[[Category: Incomplete Plugin Pages]]
+
==Commands==
{{stub}}
+
 
 +
* <span class="highlight2">/autodestroy</span> adds the item currently on your cursor to the [AutoDestroy] section of the ini file.
 +
* <span class="highlight2">/autodestroy auto</span> Toggles automatic destruction of items listed in the [AutoDestroy] section of the INI file as they appear on the mouse cursor.
 +
* <span class="highlight2">/autodrop</span> adds the item currently on your cursor to the [AutoDrop] section of the ini file.
 +
* <span class="highlight2">/autodrop auto</span> Toggles automatic dropping of items listed in the [AutoDrop] section of the INI file as they appear on the mouse cursor.
 +
* <span class="highlight2">/autokeep</span> adds the item currently on your cursor to the [AutoKeep] section of the ini file.
 +
* <span class="highlight2">/autokeep auto</span> Toggles automatic keeping of items listed in the [AutoKeep] section of the INI file as they appear on the mouse cursor.
 +
* <span class="highlight2">/handlecursor</span> Keep or destroy the item on the cursor, depending on which section of the INI file it appears.
 +
 
 +
==Example Usage==
 +
With "<font class="highlight">Fishing Grubs</font>" on the mouse cursor,
 +
* <span class="highlight2">/autokeep 28</span> will keep "<font class="highlight">Fishing Grubs</font>" until we have 28 of them
 +
* <span class="highlight2">/autokeep 2 stacks</span> will keep "<font class="highlight">Fishing Grubs</font>" until we have 40 (2 stacks)
 +
* <span class="highlight2">/autodestroy always</span> will destroy "<font class="highlight">Fishing Grubs</font>" whenever found on cursor
 +
* <span class="highlight2">/autodrop all</span> will drop "<font class="highlight">Fishing Grubs</font>" whenever found on cursor
 +
 
 +
==Configuration==
 +
 
 +
MQ2AutoDestroy provides configuration
 +
 
 +
===Sample Configuration===
 +
MQ2AutoDestroy_CharacterName_ServerName.ini
 +
<pre>[Settings]
 +
Quiet=off
 +
AutoKeep=off
 +
AutoDestroy=off
 +
AutoDrop=off
 +
[AutoKeep]
 +
Keep1=Sunshard Powder~28
 +
Keep2=Vegetables
 +
[AutoDestroy]
 +
Destroy1=Fishing Grubs~100
 +
Destroy2=Water Flask
 +
[AutoDrop]
 +
Drop1=Fish~20
 +
Drop2=Amber
 +
</pre>
 +
 
 +
===Configuration Explanation===
 +
 
 +
* <span class="highlight2">Quiet</span>: MQ2Window Notifications are on/off for Keep/Destroy/Drop messages.
 +
* <span class="highlight2">AutoKeep</span>: AutoKeeping is on/off.
 +
* <span class="highlight2">AutoDestroy</span>:  AutoDestroying is on/off.
 +
* <span class="highlight2">AutoDrop</span>:  AutoDropping is on/off.
 +
* <span class="highlight2">Keep1</span>:  Keep "Sunshard Powder" until we have 28 quantity.
 +
* <span class="highlight2">Keep2</span>:  Keep all "Vegetables".
 +
* <span class="highlight2">Destroy1</span>:  Destroy "Fishing Grubs" after we have 100.
 +
* <span class="highlight2">Destroy2</span>:  Destroy all "Water Flash".
 +
* <span class="highlight2">Drop1</span>:  Drop "Fish" after we have 20.
 +
* <span class="highlight2">Drop2</span>:  Drop all "Amber".
 +
 
 +
==Version History==
 +
 
 +
*<span class="highlight2">3.1.1</span> <span class="highlight">''brianMan'' @ 2005-10-07</span>
 +
** Fixed the /autodrop NoDrop check. You can now actually add droppables to to the INI file now ;)
 +
 
 +
*<span class="highlight2">3.1.0</span> <span class="highlight">''brianMan'' @ 2005-10-06</span>
 +
** Added /autodrop functionality
 +
** Changed the item/amount delimiter from colon ':' to tilde '~'.
 +
** Made it accept just "st" for stacks, or basically anything that begins with "st".
 +
 
 +
==Availability==
 +
 
 +
This plugin is included with the MMOBugs Compile.

Revision as of 05:31, 20 December 2008

Plugin Info
Name MQ2AutoDestroy
Author Cr4zyb4rd
Link Wiki Link
Commands Multiple
Source Available Yes
Uses INI File Yes

Description

MQ2AutoDestory is a plugin that can be used to automatically keep or destroy items as they appear on the mouse cursor. It also provies a command to handle these actions based on the same INI file, for those who feel the automatic handling is too risky or uses too much CPU. The INI file is character/server specific.

Commands

  • /autodestroy adds the item currently on your cursor to the [AutoDestroy] section of the ini file.
  • /autodestroy auto Toggles automatic destruction of items listed in the [AutoDestroy] section of the INI file as they appear on the mouse cursor.
  • /autodrop adds the item currently on your cursor to the [AutoDrop] section of the ini file.
  • /autodrop auto Toggles automatic dropping of items listed in the [AutoDrop] section of the INI file as they appear on the mouse cursor.
  • /autokeep adds the item currently on your cursor to the [AutoKeep] section of the ini file.
  • /autokeep auto Toggles automatic keeping of items listed in the [AutoKeep] section of the INI file as they appear on the mouse cursor.
  • /handlecursor Keep or destroy the item on the cursor, depending on which section of the INI file it appears.

Example Usage

With "Fishing Grubs" on the mouse cursor,

  • /autokeep 28 will keep "Fishing Grubs" until we have 28 of them
  • /autokeep 2 stacks will keep "Fishing Grubs" until we have 40 (2 stacks)
  • /autodestroy always will destroy "Fishing Grubs" whenever found on cursor
  • /autodrop all will drop "Fishing Grubs" whenever found on cursor

Configuration

MQ2AutoDestroy provides configuration

Sample Configuration

MQ2AutoDestroy_CharacterName_ServerName.ini

[Settings]
Quiet=off
AutoKeep=off
AutoDestroy=off
AutoDrop=off
[AutoKeep]
Keep1=Sunshard Powder~28
Keep2=Vegetables
[AutoDestroy]
Destroy1=Fishing Grubs~100
Destroy2=Water Flask
[AutoDrop]
Drop1=Fish~20
Drop2=Amber

Configuration Explanation

  • Quiet: MQ2Window Notifications are on/off for Keep/Destroy/Drop messages.
  • AutoKeep: AutoKeeping is on/off.
  • AutoDestroy: AutoDestroying is on/off.
  • AutoDrop: AutoDropping is on/off.
  • Keep1: Keep "Sunshard Powder" until we have 28 quantity.
  • Keep2: Keep all "Vegetables".
  • Destroy1: Destroy "Fishing Grubs" after we have 100.
  • Destroy2: Destroy all "Water Flash".
  • Drop1: Drop "Fish" after we have 20.
  • Drop2: Drop all "Amber".

Version History

  • 3.1.1 brianMan @ 2005-10-07
    • Fixed the /autodrop NoDrop check. You can now actually add droppables to to the INI file now ;)
  • 3.1.0 brianMan @ 2005-10-06
    • Added /autodrop functionality
    • Changed the item/amount delimiter from colon ':' to tilde '~'.
    • Made it accept just "st" for stacks, or basically anything that begins with "st".

Availability

This plugin is included with the MMOBugs Compile.