Difference between revisions of "CmudHelp"

From Hellmoo Wiki Archive
Jump to navigation Jump to search
(New page: 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_...)
(No difference)

Revision as of 10:13, 25 December 2008

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.

%TOC%

---++ 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">

 <caption>Grind</caption>
 <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:

<verbatim> <alias name="gfb" id="125">

 <value>get %1 %2 from back</value>

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

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

<verbatim> <alias name="gfbs" id="148">

 <value>get %1 %2 from back
  1. wait 2000

sell %1 %2</value> </alias> </verbatim> This alias allows you to remove and then sell any item from your rigid-frame backpack using one or two words.

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

<verbatim> <alias name="gfbj" id="149">

 <value>get %1 %2 from back
  1. wait 2000

junk %1 %2</value> </alias> </verbatim> This alias allows you to remove and then junk any item from your rigid-frame backpack using one or two words.

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

<verbatim> <alias name="gf" id="151">

 <value>get %2 %3 from %1</value>

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

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

<verbatim> <alias name="gaf" id="147">

 <value>get all from %1 %2 %3</value>

</alias> </verbatim> This alias allows you to get everything that is held in a container.

Eg. _gaf back_ would take every thing that is inside your backpack out of it.

<verbatim> <alias name="pib" id="123">

 <value>put %1 %2 in back</value>

</alias> </verbatim> This alias allows you to put an item into your backpack.

Eg. _pib hubcap_ would put a chrome hubcap into your backpack.

<verbatim> <alias name="pi" id="150">

 <value>put %2 %3 in %1</value>

</alias> </verbatim> Allows you to put an item into a container.

Eg. _pi rack nod_ would place your Lotus Nodachi onto your weapon rack.