CmudHelp

From HellWiki
Jump to: navigation, search

First of all, when you have Cmud running and you are connected to Hell (or have the window for Hell open, but are offline), click on Options on the top bar and then click on General with the box containing a green tick next to it. Click on the Buttons tab and set Toolbar 2 position to Right.

That is all the prepwork you need to do to get these to work.

Grind Button

First is a button that help you easily change between grinding different skills. Click the Settings button. Click the small down arrow next to the New and select New Button. Select the new setting, click on the XML tab and paste in the following:

<verbatim>
<button type="Multistate"
        autosize="false"
        width="75"
        height="23"
        autopos="false"
        top="100"
        toolbar="2"
        toolstyle="true"
        transparent="false"
        color="blue"
        textcolor="red"
        priority="390"
        id="39">
 Grind
 <state caption="NOTHING">grind nothing</state>
 <state caption="Grind Appraise">grind appraise</state>
 <state caption="Grind Blade">grind blade</state>
 <state caption="Grind Chemistry">grind chemistry</state>
 <state caption="Grind Climb">grind climb</state>
 <state caption="Grind Clubs">grind clubs</state>
 <state caption="Grind Craft">grind craft</state>
 <state caption="Grind Dodge">grind dodge</state>
 <state caption="Grind Fish">grind fish</state>
 <state caption="Grind Fist">grind fist</state>
 <state caption="Grind Focus">grind focus</state>
 <state caption="Grind Fuck">grind fuck</state>
 <state caption="Grind Hack">grind hack</state>
 <state caption="Grind Linguist">grind linguist</state>
 <state caption="Grind Locksmith">grind locksmith</state>
 <state caption="Grind Medic">grind medic</state>
 <state caption="Grind Persuade">grind persuade</state>
 <state caption="Grind Pilot">grind pilot</state>
 <state caption="Grind Pistols">grind pistol</state>
 <state caption="Grind Quickdraw">grind quickdraw</state>
 <state caption="Grind Repair">grind repair</state>
 <state caption="Grind Rifles">grind rifle</state>
 <state caption="Grind Scavenge">grind scavenge</state>
 <state caption="Grind Science ">grind science</state>
 <state caption="Grind Sneak">grind sneak</state>
 <state caption="Grind Spears">grind spears</state>
 <state caption="Grind Teach">grind teach</state>
 <state caption="Grind Throw">grind throw</state>
 <state caption="Grind Torture">grind torture</state>
 <state caption="Grind Track">grind track</state>
 <state caption="Grind Swim">grind swim</state>
 <state caption="Grind Whip">grind whip</state>
</button>
</verbatim>

You can add more by adding more <verbatim><state caption="Grind (skill_name)">grind (skill_name)</state></verbatim> to the above list.

Inventory shortcuts

These are aliases that are used to make sorting your inventory easier.

Click the Settings button. Click the small down arrow next to the New and select New Alias for each of the aliases. Select the new setting, click on the XML tab and paste in the following:

Get From Backpack

This alias allows you to remove any item from your rigid-frame backpack using one or two words.

<verbatim>
<alias name="gfb" id="125">
 <value>get %1 %2 from back</value>
</alias>
</verbatim>

Eg. gfb pipe would remove an item with the alias of 'pipe' from your backpack.

Get From Backpack / Sell

This alias allows you to remove and then sell any item from your rigid-frame backpack using one or two words.

<verbatim>
<alias name="gfbs" id="148">
 <value>get %1 %2 from back
#wait 2000
sell %1 %2</value>
</alias>
</verbatim>

Eg. gfbs hubcap would get a chrome hubcap from your backpack, and then sell it.

Get From Backpack / Junk

This alias allows you to remove and then junk any item from your rigid-frame backpack using one or two words.

<verbatim>
<alias name="gfbj" id="149">
 <value>get %1 %2 from back
#wait 2000
junk %1 %2</value>
</alias>
</verbatim>

Eg. gfbj tract would get a religous tract from your backpack and then junk it.

Get From

This alias allows you to get something using one or two words from a container using one word.

<verbatim>
<alias name="gf" id="151">
 <value>get %2 %3 from %1</value>
</alias>
</verbatim>

Eg. gf wardrobe mask would get an item with alias of 'mask' from a wardrobe.

Get All From

This alias allows you to get everything that is held in a container.

<verbatim>
<alias name="gaf" id="147">
 <value>get all from %1 %2 %3</value>
</alias>
</verbatim>

Eg. 'gaf back would take every thing that is inside your backpack out of it.

Put In Backpack

This alias allows you to put an item into your backpack.

<verbatim>
<alias name="pib" id="123">
 <value>put %1 %2 in back</value>
</alias>
</verbatim>

Eg. pib hubcap would put a chrome hubcap into your backpack.

Put In

Allows you to put an item into a container.

<verbatim>
<alias name="pi" id="150">
 <value>put %2 %3 in %1</value>
</alias>
</verbatim>

Eg. pi rack nod would place your Lotus Nodachi onto your weapon rack.