[Crossfire-wiki] [Crossfire DokuWiki] page changed: guides:skills

no-reply_wiki at metalforge.org no-reply_wiki at metalforge.org
Thu Oct 2 23:48:28 CDT 2014


A page in your DokuWiki was added or changed. Here are the details:

Date        : 2014/10/02 23:48
User        : saru
Edit Summary: rolled in all handbook skills information.

@@ -39,8 +39,166 @@
  
  Each experience category will have a level assigned to it based on the amount of experience accumulated in it (using the same schedule shown in the table above.) Use the skills command to investigate which skills your character has and to see the level of ability you have in each experience category. See chapter 5 (Skills) for more information about skills and skill-based experience.
  
  As an aside tip, monsters also are assigned a level of proficiency and may gain experience. The main way which monsters gain experience is by killing players! Beware going after a monster that has killed several players, it will be much more difficult to challenge!
+ 
+ ===From Chapter 5===
+ Under the skills system the flow of play changes dramatically. Instead of gaining experience for basically just killing monsters (and disarming traps) players will now gain a variety of experience through the use of skills. Some skills replicate old functions in the game (e.g. melee weapons skill, missile weapon skill) while others add new functionality (e.g. stealing, hiding, writing, etc). A complete list of the available skills can be found in table skill statistics. Appendix B (skills) contains descriptions for many of the skills.
+ 
+ Note: The skills system is enabled as the default option as of version 0.92.0
+ 
+ Note2: The new skills/experience system is compatible with character files from at least version 0.91.1 onward.
+ 
+ Skill	Experience Category	Associated Stats
+  	 	Stat 1	Stat 2	Stat 3
+ Achemy	Mental	Int	Dex	Wis
+ Bargaining	NONE	n/a	n/a	n/a
+ Bowyer	Mental	Int	Dex	Wis
+ Clawing	Physique	Str	Dex	n/a
+ Disarm Traps	Agility	Dex	Int	Str
+ Find Traps	Mental	Int	Dex	n/a
+ Flame Touch	Physique	Str	Dex	Int
+ Hiding	Agility	Dex	Int	n/a
+ Inscription	Mental	Int	Dex	n/a
+ Jeweler	Mental	Int	Wis	Dex
+ Jumping	Physique	Str	Dex	n/a
+ Karate	Physique	Str	Dex	n/a
+ Literacy	Mental	Int	Wis	n/a
+ Lockpicking	Agility	Dex	Int	n/a
+ Meditation	NONE	Int	Wis	Pow
+ Melee Weapons	Physique	Str	Dex	n/a
+ Missile Weapons	Physique	Str	Dex	n/a
+ Mountaineer	NONE	n/a	n/a	n/a
+ Oratory	Personality	Cha	Int	n/a
+ Praying	Wisdom	Wis	Pow	n/a
+ Punching	Physique	Str	Dex	n/a
+ Sense Curse	Wisdom	Pow	Wis	n/a
+ Sense Magic	Magic	Pow	Int	n/a
+ Set Traps	Mental	Int	Dex	Str
+ Singing	Personality	Cha	Int	n/a
+ Smithery	Mental	Int	Str	Dex
+ Stealing	Agility	Dex	Int	n/a
+ Thaumaturgy	Mental	Int	Wis	n/a
+ Throwing	Physique	Str	Dex	n/a
+ Use Magic Item	NONE	Pow	Int	n/a
+ Wizardry	Magic	Pow	Int	n/a
+ Woodsman	Mental	Int	Dex	Wis
+ 5.2 About experience and skills
+ 5.2.1 Associated and miscellaneous skills
+ In Crossfire two types of skills exist; The first kind, "associated" skills, are those skills which are associated with a category of experience. The other kind of skill, "miscellaneous" skills, are not related to any experience category.
+ 
+ The main difference between these two kinds of skills is in the result of their use. When associated skills are used successfully experience is accrued in the experience category associated with that skill. In contrast, the use of miscellaneous skills never gains the player any experience regardless of the success in using it.
+ 
+ Both miscellaneous and associated skills can fail. This means that the attempt to use the skill was unsuccessful. Both miscellaneous and associated skills can have certain primary stats associated with them. These associated stats can help to determine if the use of a skill is successful and to what degree it is successful.
+ 
+ All gained experience is modified by the associated stats for that skill (table skill statistics) and then the appropriate experience category automatically updated as needed.
+ 
+ 5.2.2 Restrictions on skills use and gaining experience
+ Neither a character's stats nor the character class restricts the player from gaining experience in any of the experience categories. Also, there are no inherent restrictions on character skill use-any player may use any acquired skill.
+ 
+ Average of Associated Stats	Experienced Gain Multiplier
+ 1	0.01
+ 2	0.1
+ 3	0.3
+ 4	0.5
+ 5	0.6
+ 6	0.7
+ 7	0.8
+ 8	0.85
+ 9	0.9
+ 10	0.95
+ 11	0.96
+ 12	0.97
+ 13	0.98
+ 14	0.99
+ 15	1.0
+ 16	1.01
+ 17	1.02
+ 18	1.03
+ 19	1.04
+ 20	1.05
+ 21	1.07
+ 22	1.09
+ 23	1.12
+ 24	1.15
+ 25	1.2
+ 26	1.3
+ 27	1.4
+ 28	1.5
+ 29	1.7
+ 30	2.0
+ 5.2.3 Algorithm for Experience Gain under the skills system
+ Here we take the view that a player must "overcome an opponent" in order to gain experience. Examples include foes killed in combat, finding/disarming a trap, stealing from some being, identifying an object, etc.
+ 
+ Gained experience is based primarily on the difference in levels between "opponents," experience point value of a "vanquished foe," the values of the associated stats of the skill being used and two factors that are set internally. (Note: If you want to know more about this, check out the skills_developers.doc.)
+ 
+ Below the algorithm for experience gain is given where player "pl" has "vanquished" opponent "op" using skill "sk:"
+ 
+ EXP GAIN = (EXP(op) + EXP(sk)) * lvl_mult * stat_mult
+ 
+ where EXP(sk) is a constant award based on the skill used, EXP(op) is the base experience award for "op" which depends on what op is (see below), stat_mult is taken from table experience modification, and lvl_mult is:
+ 
+ For level(pl) < level(op)::
+ 
+ lvl_mult = FACTOR(sk) * (level(op) - level(pl))
+ 
+ For level(pl) = level(op)::
+ 
+ lvl_mult = FACTOR(sk)
+ 
+ For level(pl) > level(op)::
+ 
+ lvl_mult = (level(op)/level(pl));
+ 
+ where level(op) is the level of "op," level (pl) is the level of the player, and FACTOR(sk) is an internal factor based on the skill used by "pl."
+ 
+ There are three different cases for how EXP (op) can be computed:
+ 
+ op is a living creature: EXP(op) is just the base experience award given in the spoiler.
+ op is a trap: EXP(op) = 1/(fraction of the time which the trap is visible). Thus, traps which are highly visible get lower values.
+ op is not a trap but is non-living: EXP(op) = internal experience award of the item. Also, the lvl_mult is multiplied by any magic enchantment on the item.
+ 5.3 How skills are used
+ skills	This command lists all the player's current known skills, their level of use and the associated experience category of each skill.
+ ready_skill <skill>	This command changes the player's current readied skill to <skill>.
+ use_skill <skill> <string>	This command changes the player's current readied skill and then executes it in the facing direction of the player. Similar in action to the invoke command.
+ Three player commands are related to skills use: ready_skill, use_skill, and skills (see table skill commands). Generally, a player will use a skill by first readying the right one, with the ready_skill command and then making a ranged "attack" to activate the skill; using most skills is just like firing a wand or a bow. In a few cases however, a skill is be used just by having it readied. For example, the mountaineer skill allows favorable movement though hilly terrain while it is readied.
+ 
+ To change to a new skill, a player can use either the use_skill or ready_skill commands, but note that the use of several common items can automatically change the player's current skill too. Examples of this include readying a bow (which will cause the code to make the player's current skill missile_weapons) or readying a melee weapon (current skill auto-matically becomes melee weapons). Also, some player actions can cause a change in the current skill. Running into a monster while you have a readied weapon in your inventory causes the code to automatically make our current skill melee weapons. As another example of this-casting a spell will cause the code to switch the current skill to wizardry or praying (as appropriate to the spell type).
+ 
+ It is not possible to use more than one skill at a time.
+ 
+ 5.3.1 Inscription
+ How to Write Spell Scrolls (by Galahad the Paladin)
+ Writing spell scrolls requires three things: a known spell, a spell scroll and inscription skill. Inscription skill comes with having a "pen" in inventory and using the skill. One uses the inscription skill with -
+ 
+ 'use_skill inscription <written message here>
+ 
+ - where <written message here> gets replaced with the actual message to write. Example:
+ 
+ 'use_skill inscription Log: hit level 9 summoning today!
+ 
+ Use this skill to write in blank books and scrolls found on adventures.
+ 
+ Writing spell scrolls uses the same skill but in a different manner.
+ 
+ To write a new spell scroll one needs an existing spell scroll that is a lower level than one's current inscription level. The lower the scroll level the better. Spell scrolls that are marked (lvl 1) are best.
+ Then one marks the scroll with one of the following:
+ shift+ middle-click on the scroll you wish to over write
+ The keyboard command: 'mark scroll of <spell_name>
+ (Be careful not to overwrite the last spell that you scribed!)
+ The player readies a spell to cast ('cast detect magic)
+ And then types 'use_skill inscription<cr>. Where <cr> means press the [Enter] key.
+ That is it.
+ Caution: Magic spell writing can be risky to one's health. There can be some negative effects if one fails to write a spell scroll. The most benign is that one becomes confused for a short time. Other effects are more severe and can even be dangerous.
+ 
+ 5.4 Acquiring skills
+ Skills may be gained in two ways. In the first, new skills may learned. This is done by reading a "skill scroll" and the process is very similar to learning a spell. Just as in attempts to learn incantations, success in learning skills is dependent on a random test based on the learner's INT. Using your INT stat, look in the learn% column in table primary stat effects to find your % chance of learning a skill. Once you hit 100%, you will always be successfull in learning new skills.
+ 
+ The acquisition of a skill tool will also allow the player to use a new skill. An example of a skill tool is "lockpicks" lockpicks (which allow the player to pick door locks). The player merely applies the skill tool in order to gain use of the new skill. If the tool is unapplied, the player loses the use of the skill associated with the tool.
+ 
+ After a new skill is gained (either learned or if player has an applied skill tool) it will appear on the player's skill roster (use the 'skills command to view its status). If the new skill is an associated skill, then it will automatically be gained at the player's current level in the appropriate experience category.
+ 
+ For example, Stilco the Wraith, who is 5th level in agility, buys a set of lockpicks and applies them. He may now use the skill lockpicking at 5th level of ability since that is an agility associated skill.
  
  =====Combat=====
  3.2 Matters of life and death
  3.2.1 Attack system
@@ -69,19 +227,137 @@
    bjn
  Running in a direction is done by <ctrl> direction. Firing in a direction is <shift> direction. It's generally better to hit a monster with a weapon besides your fists. Click on your inventory until you figure out how to get a weapon to be marked "wielded". Then, you'll be able to hit the monster with the weapon when you run into him.
  
  =====Magic=====
+ Chapter 4 - Magic System
+ 4.1 Description
+ Two broad categories of magic exist in Crossfire: "wizardry" and "divine magic." The fundamental difference between the two comes down to the source that powers the magic of each.
+ 
+ In divine magic the practitioners, "priests," do not use their own power but rather channel power from divine entities ("gods.") They utilize various "prayers" to cast their magic and grace is the measure of how much magic the priest may channel. The higher the level of the priest and the better his wisdom and power, the more grace the priest will have in the eyes of his god. In the practice of wizardry a "wizard" calls upon his own life-force (or "mana") to power his arcane incantations. Mana is based on of the wizard's innate power but may be increased through his skill in wizardry.
+ 
+ The scope and sphere of these two magics are different. Through the use of divine magic the priest has access to powerful spells of protection, healing, and of slaying unholy creatures. (Note: A "spell" is a common name referring to both prayers and incantations.) If the multiple gods option is used (Note: this is the default), the god a priest worships will have other impacts on the priest's magic and abilities (see section multiple gods). In contrast, wizardry is more oriented towards the harnessing of elemental forces of creation, alteration and destruction. There are two minor variants of wizardry: alchemy and rune magic.
+ 
+ Each form of magic is orthogonal to the other. In some no magic areas, the wizard is blocked from accessing his store of mana, but the priest may operate his magic normally. Similarly, there are unholy areas in which the priest loses his contact with his god and cannot cast magic; in unholy areas the wizard is unhindered. Of course, no magic and unholy areas can sometimes coincide.
+ 
+ In addition, wizards have the handicap that if they are encumbered with 'stuff', they are less effective at incantations. Heavy weapons and heavy armour are the main cause of spell-failures. See the section on encumbrance for details.  Weapons and armour have no effect on the practice of divine magic but grace regenerates slower than mana, and the amount of grace that a priest possesses helps to determine the success of their prayers.
+ 
+ 4.2 Learning Spells
+ Both types of spells may be learned by reading books (see section items). The overall chance of learning a spell uses the following formula:
+ 
+ % chance to learn = (base chance + (2 * level))/1.5
+ 
+ The base chance that a prayer/incantation will be learnt is based on WIS/INT respectively. Look at table primary stat effects to find your base chance in the learn% column. If you are attempting to learn a prayer, you would use your WIS stat to find the base chance. Likewise, the level used in the formula is related to the type of spell. If you are attempting to learn an incantation, the value of level to use is your wizardry experience (and you use the praying experience level for learning prayers.) Once your chance to learn a spell exceeds 100%, you always succeed in all attempts to learn spells.
+ 
+ 4.3 Magic paths
+ Long ago a number of archmages discovered patterns in the web that spells weave in the aether. They found that some spells had structural similarities to others and some of the mages took to studying particular groups of spells. These mages found that by molding their thought patterns to match the patterns of the spells they could better utilize all the spells of the group. Because of their disciplined approach, the mages were described as following spell Paths. As they attuned themselves to particular spell Paths they found that they would become repelled from others, and in some cases found they were denied any access to some paths. The legacy of these mages remains in some of the magical items to be found around the world. Use of these "attuned" items will strongly effect the quality of the incantations and prayers cast by the magician. See section multiple gods to see how the worship of a god might effect the spell casting of the magician.
+ 
+ 4.3.1 Technical details
+ The Paths themselves are given in table spellpaths.
+ 
+ A character (or NPC) that is attuned to a Path can cast incantations/prayers from that Path at 80% of the mana/grace cost and in addition receives duration/damage bonuses as if the caster were five levels higher. A person that is repelled from a Path casts incantations/prayers from that Path at 125% of the mana/grace cost and receives duration/damage bonuses as if the caster were five levels lower (minimum of first level). The casting time is also modified by 80% and 125% respectively. If a wizard or priest is denied access to a Path they cannot cast any spells from it.
+ 
+ Mind	Creation	Teleportation	Information	Transmutation
+ Protection	Fire	Frost	Electricity	Missiles
+ Self	Summoning	Abjuration	Restoration	Detonation
+ Transferrence	Turning	Wounding	Death	Light
+ Paths are quite powerful; they don't come cheaply. Most magical items with path_attuned attributes will have path_repelled and path_denied attributes as well, to balance them out.
+ 
+ ====Wizardry====
+ 4.6 Rune magic
+ Runes are another special form of wizardry; essentially runes are magical inscriptions on the dungeon floor which cast a spell (or "detonate") when something steps on them. Flying objects don't detonate runes. Beware! Runes are invisible most of the time!
+ 
+ There are several runes which are specialized; these can be set as your range spell. Some of these are:
+ 
+ Rune of Fire
+ 
+ rune-fire_111	Fire damage when it detonates
+ Rune of Frost	rune-frost_111	Cold damage when it detonates
+ Rune of Blasting	rune-blast_111	Physical damage when it detonates
+ Rune of Shocking	rune-shock_111(1)	Electrical damage when it detonates
+ Rune of Death	rune-death_111	Atacks with attacktype "death" at caster level
+ The spell 'disarm' may be used to try and destroy a rune you've discovered. In addition, there are some special runes which may only be called with the 'invoke' command:
+ 
+ Magic Rune	generic-rune_111	You may store any incantation in this rune that you know and have the mana to cast
+ Marking Rune	rune-mark_111(1)	This is basically a sign. You may store any words you like in this rune, and people may apply it to read it. Maybe useful for mazes! This rune will not detonate, nor is it ordinarily invisible.
+ Partial Visibility of Runes
+ Your runes will be partially invisible. That is, they'll be visible only part of the time. They have a 1/(your level/2) chance of being visible in any given round, so the higher your level, the better hidden the runes you make are.
+ 
+ Examples of usage
+ Here are several examples of how you can use the runes.
+ 
+ 'invoke magic rune heal 
+ will place a magic rune of healing one square ahead of you, whichever way you're facing.
+ 
+ 'invoke magic rune transfer 
+ as above, except the rune will contain the spell of transference
+ 
+ 'invoke magic rune large fireball
+ as above, except the spell large fireball will be cast when someone steps on the rune. The fireball will fly in the direction the caster was facing when he created the rune.
+ 
+ 'cast rune of fire 
+ prepares the rune of fire as the range spell. Use the direction keys to use up your mana and place a rune.
+ 
+ 'invoke marking rune fubar 
+ places a rune of marking, which says "fubar" when someone applies it.
+ 
+ 'invoke marking rune touch my stuff and I will hunt you down! 
+ places the marking rune warning would-be thieves of their danger.
+ 
+ Restrictions on runes:
+ You may not place runes underneath monsters or other players. You may not place a new rune on a square which already has a rune. Any attempt to do the latter strengthens the pre-existing rune.
+ 
  Players with the magic skill can cast magical spells.
  Magical spells are used in this way: 
  by typing, for example:
  cast small lightning
  cast burning hands
  Either of these commands will set the RANGE ATTACK to that magic spell. Then, "firing" in a direction will invoke that spell in that direction. Magical energy is call mana, and it is depleted whenever a player invokes a magical spell. Mana is normally replenished slowly, but certain items may speed the process.
- 
- ====Wizardry====
  
  ====Worship====
  ==Prayers==
+ 4.4 Multiple gods
+ Gods in Crossfire are not omnipotent beings. Each is thought of possessing a certain sphere of influence, indeed, some philosophers have thought that the gods might spring from the same mystical patterns that form the spell Paths. Certainly it appears that each of the gods embodies one or more of these Paths (but not all of them!!). Because the gods are not omnipotent, we often speak of their religions as being 'cults'.
+ 
+ Under the multigod option, priests are allowed to select from an array of different gods. Worship of each god is unique, and brings differing capabilities to the priest. See Appendix C for a listing of the gods and some of the attributes/effects of worshiping of these cults.
+ 
+ 4.4.1 Joining a cult
+ Praying at aligned altar (Altar of Devourers,Altar of Gaea,Altar of Gnarg,Altar of Gorokh,Altar of Ixalovh,Altar of Lythander,Altar of Mostrai,Altar of Ruggilli,Altar of Sorig,Altar of Valriel) is the usual way in which a priest interacts with their god/cult. Aligned altars are identified by their name (e.g. altar of <god's name>) and may be found in various maps all over the world of Crossfire . When a player prays over an aligned altar, one of three things may happen based on the players currently worshiped god:
+ 
+ "Unaligned" player prays over an altar - results in that player becoming a worshiper of the god the altar is dedicated to.
+ 
+ Player prays over their god's altar - results in faster grace regeneration. In addition, player may pray to gain up to twice their normal amount of grace. Also, from time to time your god might give you information, blessings, or something really good; it depends on your WIS, POW and priest experience.
+ 
+ Player prays over alien god's altar - results in punishment of the player (generally they lose some of their priest experience). This action can result in the defection of the player to the alien god's cult.
+ 
+ Note that once a player has joined a cult, it is impossible to go back to being "unaligned" to any god.
+ 
+ Summary of benefits/penalties for joining
+ 
+ The following things happen when a worshiper joins a god's cult:
+ 
+ the worshiper gains access to the special flavor of magic belonging to the cult (see table priests' prayers).
+ the ability to cast magic is altered to reflect the powers of the worshiper's god. Some spells will be easier to cast; others will be more difficult, and some spell Paths will be forbidden. It is impossible to regain forbidden spells by any means except leaving the cult.
+ the worshiper becomes protected and/or vulnerable to certain attacks.
+ Note that a player can belong to only one cult at any one time.
+ 
+ Prayer	Description
+ Bless	Enhances the recipients combat ability and confers some of the gods special sphere of protection.
+ Banishment	An AT_DEATH¹ attack is made versus enemies of the caster's god.
+ Call holy servant	Weaker version of an avatar is summoned.
+ Cause wounds	These prayers use the attacktype of "godpower." This means they will effect magic immune creatures AND each prayer has the special attacktype(s) of the priest's god.
+ Consecrate	Dedicates an altar to the caster's god.
+ Curse	Decreases the recipients combat ability and confers some vulnerabilities particular to the caster's god.
+ Holy orb	Its like a fireball, but has the same effect as holy word². This prayer is most effective against single creatures.
+ Holy word²	This prayer shoots forth a cone of power that will damage only enemies of the caster's god.
+ Holy wrath	Currently the most powerful "holy word"² prayer available.
+ Summon avatar	Summons a "golem" that is tailored to the powers of the worshiped god. This prayer is more powerful (in general) than a summoned elemental and is one of the priest's most potent attack spells.
+ Summon cult monsters	Summons creatures friendly to the priest's god. Depending on the god this can be a powerful or wimpy prayer.
+ ¹ The target and caster's levels are compared. If the caster's level is higher, then the creature will probably be destroyed.
+ ² "holy word" also defines a class of prayers. These spells are all designed to slay only the enemies of the priest's god.
+ 
+ 4.4.2 Example god
+ Lets create an example god - the "god of the undead." If you worship the god of the undead, don't expect to be able to gain priest experience (Note: i.e. experience for the wisdom experience category) for killing the undead! But you might gain, as a priest of the undead, greater powers of commanding undead, and experience for killing certain (living) creatures that serve an enemy god. Each priest takes on a portion of the "aura" of their god; this means that our priest will probably become protected to life-damaging magic like draining and death, while conversely becoming more vulnerable to fire. Such a priest, because their god's domain does not include the living, probably won't be capable of healing either.
+ 
  Players with the praying skill can ask help of their gods, and get it. Prayers and magical spells are used in much the same way, for example, by typing:
  cast holy word
  cast burning hands
  Either of these commands will set the RANGE ATTACK to that praying skill. Then, "firing" in a direction will invoke that prayer in that direction.
@@ -96,9 +372,46 @@
  When you first begin the game, you will be unable to use any prayers because you have no god to grant them as yet.
  Religions are acquired by praying at an altar. Any player with the praying skill may pray at an altar and become a devotee of that god. The various deities are very different from each other. Beginning players should probably choose either Mostrai or Valriel, and avoid Gaea and Rugilli. Temples for most of the religions are in the town Scorn, where you will appear after you choose a class.
  
  ====Crafting=====
+ 4.5 Crafts
+ As well as developing skills for killing things it is possible to become skilled in a few crafts to make your adventuring easier. A craft usually involves a workplace, into which you put some ingredients and make the desired item of your choice by using the appropriate skill.
+ 
+ For example for alchemy you use a cauldron, and for smithery you use a forge. You use alchemy to make potions, and smithery to make weapons and armour. Forges, tannery benches, jeweler's workbenches and similar workplaces can all be found in specially built buildings, where for a fee the owner will let you use their equipment.
+ 
+ 4.5.1 Alchemy
+ The most widespread craft is alchemy. If you are new to crafts you are best off learning to use this skill before mastering any of the others. Alchemy can be used to make many different potions, dusts, and balms, both harmful and useful. You can use the harmful potions you make to throw at your enemies, and useful for drinking yourself. Everything you make can also be sold, so you can also earn some money :) . Once you get comfortable with alchemy you should find other craft skills easier to become proficient at as they work in a similar way.
+ 
+ To develop alchemy you first need to know the alchemy skill. Some players start off knowing it, so to find out if you have it or not type 'skills, and see if alchemy is listed as one of the skills. If you fail to find it you will have to learn if before you can proceed. The skill can be learnt like any other skill, from a skill scroll. A skill scroll can be bought in most alchemy shops, and learnt by applying it.
+ 
+ Now that you have the alchemy skill you can become experienced at it. You may think yourself a superhero, but as far as alchemy is concerned you are a complete novice. Should you attempt to make anything at this point you will most probably fail with the most disturbing effects.
+ 
+ Before you make things you need to become familiar with ingredients. That is done by identifying unidentified items that can be used in alchemy formulae using the alchemy skill. For example if you have an item that you think may be useful type "'use_skill alchemy" and see if it gets identified. If you are lucky you will have learnt your first alchemy experience! However you are still a long way off from making anything useful. It may be a good idea to bind "use_skill alchemy" to a key at this point so you don't have to keep typing it repeatedly.
+ 
+ Carry on identifying items until you reach level 10 in alchemy. It may take a long time, so it may be best to develop alchemy as a secondary skill as you are training one-handed or sorcery. Alternatively ingredients can be bought unidentified in bulk from most alchemy shops. This approach is very expensive, so unless you have good financial backing you are unlikely to get far.
+ 
+ As you identify the ingredients you may want to keep them, as they can come in useful as ingredients later on!
+ 
+ If you are now level 10 in the alchemy skill you can attempt to make some simple things. Before you get too enthusiastic I'll tell you right away that nothing you can make now will be of any use to you in the immediate future (except for maybe money?). To make something you will need to find a recipe. Recipes appear randomly in shops named "recipe:...", "cookbook:...", "lab book:..." or something similar. Recipes that appear in books like that are special, but more about that later.
+ 
+ Now that you have a recipe for something you can collect the ingredients. The easy formulae are those that only contain one ingredient. It can most likely be bought in an alchemy shop, so you should not need to venture far. Now you have everything you need to make an item. What you need next is access to a cauldron. If you are an alchemist you will already own one. Otherwise you can use one in a lab. Labs can be found attached to an alchemy shop, or otherwise.
+ 
+ Warning: If you choose to use your own caldron note that it may not last long, as alchemy failures happen to most starting alchemists, and some of them happen to be very destructive. You are also well advised to not attempt alchemy at home. It may seem like a good idea initially, as it is somewhere away from prying eyes and outside interference. Alchemy failures at home can potentially render your home unusable. You can consider yourself to have gotten away lightly if you do alchemy at home and all your belongings get burnt up, as if you are unfortunate enough to summon some monsters that are far more powerful than you, you will have a hard time exorcising them.
+ 
+ It is best to practice alchemy in a specially designated lab, be it in a guild, a shop, or another place where you can take precautions.
+ 
+ To make an item you should place the cauldron on the ground beneath you, and open it. Then drop the ingredients into the cauldron. Be careful to make sure that the ingredients that have count of more than one stack up together properly. For example stale mineral oil will not stack up with newly bought mineral oil, and so the alchemy will be doomed to failure before you start.
+ 
+ Then use the alchemy skill as you are standing above the cauldron. If you have done everything correctly and are lucky you will be left with your alchemy target in the cauldron. If you are left with slag or your ingredients simply disappear either you have done something wrong or you are simply unlucky. The more experienced you are the more likely you are to succeed in alchemy.
+ 
+ To increase the likely hood of a recipe not failing you should try to increase your luck, and alchemy level, and decrease the difficulty level of the recipe you are attempting. If the spell has failed you will experience failures of varying degrees, that depend on your Int, number of ingredients in the cauldron, length of ingredients in the cauldron, and enchantment on the cauldron. Quoting from the source code, "Using a bad device is *majorly* stupid". Therefore you are encouraged to find items that give luck bonus, become attuned to alchemy, and find yourself a Cauldron +5.
+ 
+ As you carry on making simple alchemy stuff you will level up in the skill a few times. By the time you reach level 30-50 you can try some of the medium level formulae. You will know them when you see them, as they are rare to find, and generally require an item or two that are hard to find. Most alchemists never progress beyond this stage, as it is hard and takes a long time. However, if you push on you will be rewarded. I'll give you a hint: a level 100 alchemist is able to produce potions that are rare and powerful. The recipes cannot be bought, but the books that contain them have to be found.
+ 
+ Alchemy can make you rich, alchemy can give you powerful items, and most importantly alchemy is fun! As I said earlier the recipes found in the books are special. Let me elaborate. There is a very large number of recipes that can produce items. The items that can be produced with alchemy have to be alchemy targets for some special formula. However, items used as ingredients can be anything you can lift and fit into a cauldron. Therefore you are welcome to experiment and find your own formulae. Before you busy yourself experimenting let me tell you that it can be dangerous, and you can never make money-using non-special formulae, as the universe would get out of balance and destroy your soul...
  
+ 4.5.2 Transmutation
+ Finally I'd like to explain transmutation. It is not used in alchemy, but many recipes for other crafts use transmutations to generate the desired result. In a transmutation you have an item, add some more ingredients to it, and when you use the craft skill the extra items disappear, and the original item gains some properties. Therefore all non-special recipes you find still have to have the base item that will be transmuted.
  
  
  
  


IP-Address  : 59.167.121.117
Old Revision: http://wiki.metalforge.net/doku.php/guides:skills?rev=1412310450
New Revision: http://wiki.metalforge.net/doku.php/guides:skills

-- 
This mail was generated by DokuWiki at
http://wiki.metalforge.net/



More information about the crossfire-wiki mailing list