<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://datoolset.net/mw/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Yokmp</id>
		<title>Dragon Age Toolset Wiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://datoolset.net/mw/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Yokmp"/>
		<link rel="alternate" type="text/html" href="https://datoolset.net/wiki/Special:Contributions/Yokmp"/>
		<updated>2026-06-17T19:05:28Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.25.6</generator>

	<entry>
		<id>https://datoolset.net/mw/index.php?title=Ability_ApplyUpkeepEffects&amp;diff=15950</id>
		<title>Ability ApplyUpkeepEffects</title>
		<link rel="alternate" type="text/html" href="https://datoolset.net/mw/index.php?title=Ability_ApplyUpkeepEffects&amp;diff=15950"/>
				<updated>2011-03-04T01:04:13Z</updated>
		
		<summary type="html">&lt;p&gt;Yokmp: added some explains&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{dafunction&lt;br /&gt;
|name = Ability_ApplyUpkeepEffects&lt;br /&gt;
|brief = {{undocumented}}&lt;br /&gt;
|param1type = object&lt;br /&gt;
|param1name = oCaster&lt;br /&gt;
|param1desc = The Caster of the Ability on which the upkeep will be applied.&lt;br /&gt;
|param1default =&lt;br /&gt;
|param2type = int&lt;br /&gt;
|param2name = nAbility&lt;br /&gt;
|param2desc = The Ability itself.&lt;br /&gt;
|param2default =&lt;br /&gt;
|param3type = effect&lt;br /&gt;
|param3arra=true&lt;br /&gt;
|param3name = eEffects&lt;br /&gt;
|param3desc = The Effects on which the upkeep come from.&lt;br /&gt;
|param3default =&lt;br /&gt;
|param4type = object&lt;br /&gt;
|param4name = oTarget&lt;br /&gt;
|param4desc = The Target is the Caster. It is not needed to change the default value.&lt;br /&gt;
|param4default =OBJECT_INVALID&lt;br /&gt;
|param5type = int&lt;br /&gt;
|param5name = bPartywide&lt;br /&gt;
|param5desc = Is the Effect Partywide or not.&lt;br /&gt;
|param5default =FALSE&lt;br /&gt;
|returntype = void&lt;br /&gt;
|returndesc = &lt;br /&gt;
|sourcefile = ability_h&lt;br /&gt;
|sourcemodule = Core Resources&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Description == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains the full description from the functions comments. Do not change unless you are confident these are incomplete or incorrect. --&amp;gt;&lt;br /&gt;
Upkeep effects are permanent until the effect is removed. They also set the UI-icon toggle inside the effect based on the ability ID.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Remarks == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains additional comments, observations and known issues. --&amp;gt;&lt;br /&gt;
Ability_ApplyUpkeepEffects is more a Wrapper for _ApplyUpkeepEffect than a Function.&lt;br /&gt;
See [[_ApplyUpkeepEffect]] for more Informations.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Examples == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains examples transcluded from the snippet library. --&amp;gt;&lt;br /&gt;
Here is some code from the function itself:&lt;br /&gt;
&lt;br /&gt;
    // as explained above, the Target becomes the Caster. &lt;br /&gt;
    if (!IsObjectValid(oTarget))&lt;br /&gt;
    {&lt;br /&gt;
        oTarget = oCaster;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    // now loop through the Effects[i]&lt;br /&gt;
    for (i = 0; i &amp;lt; nCount; i++)&lt;br /&gt;
    {&lt;br /&gt;
        _ApplyUpkeepEffect( oCaster, eEffects[i], nAbility, oTarget, bPartywide);&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    // define the spells mana cost and talents stamina cost&lt;br /&gt;
    effect eUpkeep = EffectUpkeep(UPKEEP_TYPE_MANASTAMINA , fCost, nAbility, oTarget, bPartywide);&lt;br /&gt;
&lt;br /&gt;
    // the last step is to apply the effect on the target(caster)&lt;br /&gt;
    ApplyEffectOnObject(EFFECT_DURATION_TYPE_PERMANENT, eUpkeep, oCaster, 0.0f, oCaster, nAbility);&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&amp;lt;!-- This section contains links to articles, functions or constant groups. --&amp;gt;&lt;br /&gt;
[[Ability_ApplyUpkeepEffect]]&lt;/div&gt;</summary>
		<author><name>Yokmp</name></author>	</entry>

	<entry>
		<id>https://datoolset.net/mw/index.php?title=Ability_ApplyUpkeepEffects&amp;diff=15949</id>
		<title>Ability ApplyUpkeepEffects</title>
		<link rel="alternate" type="text/html" href="https://datoolset.net/mw/index.php?title=Ability_ApplyUpkeepEffects&amp;diff=15949"/>
				<updated>2011-03-04T00:42:57Z</updated>
		
		<summary type="html">&lt;p&gt;Yokmp: added description&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{dafunction&lt;br /&gt;
|name = Ability_ApplyUpkeepEffects&lt;br /&gt;
|brief = {{undocumented}}&lt;br /&gt;
|param1type = object&lt;br /&gt;
|param1name = oCaster&lt;br /&gt;
|param1desc = {{undocumented}}&lt;br /&gt;
|param1default =&lt;br /&gt;
|param2type = int&lt;br /&gt;
|param2name = nAbility&lt;br /&gt;
|param2desc = {{undocumented}}&lt;br /&gt;
|param2default =&lt;br /&gt;
|param3type = effect&lt;br /&gt;
|param3arra=true&lt;br /&gt;
|param3name = eEffects&lt;br /&gt;
|param3desc = {{undocumented}}&lt;br /&gt;
|param3default =&lt;br /&gt;
|param4type = object&lt;br /&gt;
|param4name = oTarget&lt;br /&gt;
|param4desc = {{undocumented}}&lt;br /&gt;
|param4default =OBJECT_INVALID&lt;br /&gt;
|param5type = int&lt;br /&gt;
|param5name = bPartywide&lt;br /&gt;
|param5desc = {{undocumented}}&lt;br /&gt;
|param5default =FALSE&lt;br /&gt;
|returntype = void&lt;br /&gt;
|returndesc = &lt;br /&gt;
|sourcefile = ability_h&lt;br /&gt;
|sourcemodule = Core Resources&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Description == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains the full description from the functions comments. Do not change unless you are confident these are incomplete or incorrect. --&amp;gt;&lt;br /&gt;
Upkeep effects are permanent until the effect is removed. They also set the UI-icon toggle inside the effect based on the ability ID.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Remarks == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains additional comments, observations and known issues. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Examples == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains examples transcluded from the snippet library. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&amp;lt;!-- This section contains links to articles, functions or constant groups. --&amp;gt;&lt;br /&gt;
[[Ability_ApplyUpkeepEffect]]&lt;/div&gt;</summary>
		<author><name>Yokmp</name></author>	</entry>

	<entry>
		<id>https://datoolset.net/mw/index.php?title=EquipDefaultItem&amp;diff=15941</id>
		<title>EquipDefaultItem</title>
		<link rel="alternate" type="text/html" href="https://datoolset.net/mw/index.php?title=EquipDefaultItem&amp;diff=15941"/>
				<updated>2011-03-02T02:51:26Z</updated>
		
		<summary type="html">&lt;p&gt;Yokmp: created&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{dafunction&lt;br /&gt;
|name=EquipDefaultItem&lt;br /&gt;
|brief=Equip default creature item based on appearance (only if none equipped).&lt;br /&gt;
|param1type = int&lt;br /&gt;
|param1name = nAppType&lt;br /&gt;
|param1desc = The Appearance Type, see [[GetAppearanceType]].&lt;br /&gt;
|param1default =&lt;br /&gt;
|param2type = int&lt;br /&gt;
|param2name = nTargetSlot&lt;br /&gt;
|param2desc = see [[INVENTORY_SLOT*]]&lt;br /&gt;
|param2default =&lt;br /&gt;
|param3type = string&lt;br /&gt;
|param3name = s2daColumnName&lt;br /&gt;
|param3desc = It determines which equipment is to be equipped with the creature (e.g. &amp;quot;DefaultWeapon&amp;quot;).&lt;br /&gt;
|param3default =&lt;br /&gt;
&lt;br /&gt;
|returntype = void&lt;br /&gt;
|returndesc = &lt;br /&gt;
|sourcefile = creature_core&lt;br /&gt;
|sourcemodule = Core Resources&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Description == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains the full description from the functions comments. Do not change unless you are confident these are incomplete or incorrect. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Remarks == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains additional comments, observations and known issues. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Examples == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains examples transcluded from the snippet library. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == See also == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains links to articles, functions or constant groups. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Undocumented]]&lt;/div&gt;</summary>
		<author><name>Yokmp</name></author>	</entry>

	<entry>
		<id>https://datoolset.net/mw/index.php?title=Chargen_ModifyCreaturePropertyBase&amp;diff=15902</id>
		<title>Chargen ModifyCreaturePropertyBase</title>
		<link rel="alternate" type="text/html" href="https://datoolset.net/mw/index.php?title=Chargen_ModifyCreaturePropertyBase&amp;diff=15902"/>
				<updated>2011-03-01T01:49:03Z</updated>
		
		<summary type="html">&lt;p&gt;Yokmp: created&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{dafunction&lt;br /&gt;
|name=Chargen_ModifyCreaturePropertyBase&lt;br /&gt;
|brief=Modifiers a creature property base value by a given number&lt;br /&gt;
|param1type = object &lt;br /&gt;
|param1name = oChar &lt;br /&gt;
|param1desc = Affected charakter.&lt;br /&gt;
|param1default =&lt;br /&gt;
|param2type = int &lt;br /&gt;
|param2name = nProperty&lt;br /&gt;
|param2desc = The property to modifiy (see [[PROPERTY*]]).&lt;br /&gt;
|param2default =&lt;br /&gt;
|param3type = float&lt;br /&gt;
|param3name = fModifyBy&lt;br /&gt;
|param3desc = The value by which the property is modified.&lt;br /&gt;
|param3default =&lt;br /&gt;
&lt;br /&gt;
|returntype = void&lt;br /&gt;
&lt;br /&gt;
|returndesc = returns the lesser value of both&lt;br /&gt;
|sourcefile = sys_chargen_h&lt;br /&gt;
|sourcemodule = Core Resources&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Description == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains the full description from the functions comments. Do not change unless you are confident these are incomplete or incorrect. --&amp;gt;&lt;br /&gt;
Function to modify the baseproperty of a creature.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Remarks == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains additional comments, observations and known issues. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Examples == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains examples transcluded from the snippet library. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == See also == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains links to articles, functions or constant groups. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Undocumented]]&lt;/div&gt;</summary>
		<author><name>Yokmp</name></author>	</entry>

	<entry>
		<id>https://datoolset.net/mw/index.php?title=MinF&amp;diff=15900</id>
		<title>MinF</title>
		<link rel="alternate" type="text/html" href="https://datoolset.net/mw/index.php?title=MinF&amp;diff=15900"/>
				<updated>2011-03-01T01:36:41Z</updated>
		
		<summary type="html">&lt;p&gt;Yokmp: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{dafunction&lt;br /&gt;
|name=MinF&lt;br /&gt;
|brief=Returns the lesser value of f1 and f2&lt;br /&gt;
|param1type = float &lt;br /&gt;
|param1name = f1 &lt;br /&gt;
|param1desc = Float 1&lt;br /&gt;
|param1default =&lt;br /&gt;
|param2type = float &lt;br /&gt;
|param2name = f2 &lt;br /&gt;
|param2desc = Float 2&lt;br /&gt;
|param2default =&lt;br /&gt;
&lt;br /&gt;
|returntype = float&lt;br /&gt;
|returndesc = returns the lesser value of both&lt;br /&gt;
|sourcefile = core_h&lt;br /&gt;
|sourcemodule = Core Resources&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Description == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains the full description from the functions comments. Do not change unless you are confident these are incomplete or incorrect. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Remarks == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains additional comments, observations and known issues. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Examples == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains examples transcluded from the snippet library. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == See also == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains links to articles, functions or constant groups. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Undocumented]]&lt;/div&gt;</summary>
		<author><name>Yokmp</name></author>	</entry>

	<entry>
		<id>https://datoolset.net/mw/index.php?title=GetParty&amp;diff=15899</id>
		<title>GetParty</title>
		<link rel="alternate" type="text/html" href="https://datoolset.net/mw/index.php?title=GetParty&amp;diff=15899"/>
				<updated>2011-02-28T17:12:23Z</updated>
		
		<summary type="html">&lt;p&gt;Yokmp: added param1 and return description&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Generated with errors}}&lt;br /&gt;
{{dafunction&lt;br /&gt;
|name=GetParty&lt;br /&gt;
|brief=Returns the object for the party&lt;br /&gt;
|param1type=object&lt;br /&gt;
|param1name=oCreature&lt;br /&gt;
|param1desc=The creature of which we want to know the party.&lt;br /&gt;
|returntype=object&lt;br /&gt;
|returndesc=Returns the object for the party.&lt;br /&gt;
|sourcefile=script.ldf&lt;br /&gt;
|sourcemodule=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Description == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains the full description from the functions comments. Do not change unless you are confident these are incomplete or incorrect. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Remarks == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains additional comments, observations and known issues. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Examples == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains examples transcluded from the snippet library. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == See also == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains links to articles, functions or constant groups. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category: Players functions]]&lt;/div&gt;</summary>
		<author><name>Yokmp</name></author>	</entry>

	<entry>
		<id>https://datoolset.net/mw/index.php?title=GetPartyList&amp;diff=15898</id>
		<title>GetPartyList</title>
		<link rel="alternate" type="text/html" href="https://datoolset.net/mw/index.php?title=GetPartyList&amp;diff=15898"/>
				<updated>2011-02-28T17:08:00Z</updated>
		
		<summary type="html">&lt;p&gt;Yokmp: corrected the object[] to object[]&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Returns the party list for the creature &lt;br /&gt;
&amp;lt;dascript&amp;gt;&lt;br /&gt;
object[] GetPartyList(&lt;br /&gt;
&lt;br /&gt;
    object oCreature = -1 &lt;br /&gt;
&lt;br /&gt;
);&lt;br /&gt;
&amp;lt;/dascript&amp;gt;&lt;br /&gt;
'''Parameters:'''&lt;br /&gt;
&lt;br /&gt;
''oCreature''&lt;br /&gt;
&lt;br /&gt;
'''Returns:'''&lt;br /&gt;
&lt;br /&gt;
An array containing the objects of all the party members.&lt;br /&gt;
 &lt;br /&gt;
'''Source:'''&lt;br /&gt;
&lt;br /&gt;
[[script.ldf]]&lt;br /&gt;
== Description ==&lt;br /&gt;
&amp;lt;!-- This section contains the full description from the functions comments. Do not change unless you are confident these are incomplete or incorrect. --&amp;gt;&lt;br /&gt;
Returns the whole current Party of oCreature (Default is the Hero-Party)&lt;br /&gt;
&lt;br /&gt;
== Remarks ==&lt;br /&gt;
&amp;lt;!-- This section contains additional comments, observations and known issues. --&amp;gt;&lt;br /&gt;
The Hero is included in the Array&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&amp;lt;!-- This section contains examples transcluded from the snippet library. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  /********************************************/&lt;br /&gt;
 /*  &lt;br /&gt;
 * Description:&lt;br /&gt;
 * Checks the whole party for a specified&lt;br /&gt;
 * item to have in inventory (conversation&lt;br /&gt;
 * condition script)&lt;br /&gt;
 *&lt;br /&gt;
 * Created By: GameScripting &lt;br /&gt;
 * Created On: 12.01.2011&lt;br /&gt;
 */&lt;br /&gt;
 /********************************************/&lt;br /&gt;
&lt;br /&gt;
 int StartingConditional()&lt;br /&gt;
 {           &lt;br /&gt;
    // Gets the Partylist of the Hero&lt;br /&gt;
    object[] oPartyList = GetPartyList();&lt;br /&gt;
                                              &lt;br /&gt;
    // Gets the size of the Party&lt;br /&gt;
    int nPartySize = GetArraySize(oPartyList);&lt;br /&gt;
              &lt;br /&gt;
    // A simple Counter Variable&lt;br /&gt;
    int i = 0;&lt;br /&gt;
    object oItem;&lt;br /&gt;
    &lt;br /&gt;
    // We'll loop though the whole party to check for one of the followers&lt;br /&gt;
    // to have the specified item&lt;br /&gt;
    for(i; i &amp;lt; nPartySize; i++)&lt;br /&gt;
    {     &lt;br /&gt;
        // Get the Item-Object&lt;br /&gt;
        oItem = GetItemPossessedBy(oPartyList[i], &amp;quot;MyItemTag&amp;quot;);&lt;br /&gt;
                              &lt;br /&gt;
        // If the object is valid return true ...&lt;br /&gt;
        if(IsObjectValid(oItem))&lt;br /&gt;
        {&lt;br /&gt;
            return TRUE;&lt;br /&gt;
        }&lt;br /&gt;
    }                   &lt;br /&gt;
          &lt;br /&gt;
    // ... otherwise return false&lt;br /&gt;
    return FALSE;&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&amp;lt;!-- This section contains links to articles, functions or constant groups. --&amp;gt;&lt;br /&gt;
[[GetParty]]()&lt;br /&gt;
&lt;br /&gt;
[[Category: Party and group control]]&lt;/div&gt;</summary>
		<author><name>Yokmp</name></author>	</entry>

	<entry>
		<id>https://datoolset.net/mw/index.php?title=Chargen_ApplyClassAbilities&amp;diff=15893</id>
		<title>Chargen ApplyClassAbilities</title>
		<link rel="alternate" type="text/html" href="https://datoolset.net/mw/index.php?title=Chargen_ApplyClassAbilities&amp;diff=15893"/>
				<updated>2011-02-28T09:55:16Z</updated>
		
		<summary type="html">&lt;p&gt;Yokmp: created&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{dafunction&lt;br /&gt;
|name=Chargen_ApplyClassAbilities&lt;br /&gt;
|brief=Applies the abilities granted to a character because of picking a class.&lt;br /&gt;
|param1type=object&lt;br /&gt;
|param1name=oChar&lt;br /&gt;
|param1desc=The character.&lt;br /&gt;
|param1default=&lt;br /&gt;
|param2type=int&lt;br /&gt;
|param2name=nClass&lt;br /&gt;
|param2desc=Represents the Row of the M2DA_base.&lt;br /&gt;
|param2default=&lt;br /&gt;
|param3type=int&lt;br /&gt;
|param3name=bUnApply&lt;br /&gt;
|param3desc=Whether to apply (default) or unapply the modifier.&lt;br /&gt;
|param3default=FALSE&lt;br /&gt;
|returntype=void&lt;br /&gt;
|returndesc=&lt;br /&gt;
|sourcefile=sys_chargen_h&lt;br /&gt;
|sourcemodule=core&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Description == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains the full description from the functions comments. Do not change unless you are confident these are incomplete or incorrect. --&amp;gt;&lt;br /&gt;
Reads the class from cla_base.xls and applies it.&lt;br /&gt;
&lt;br /&gt;
== Remarks ==&lt;br /&gt;
&amp;lt;!-- This section contains additional comments, observations and known issues. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Examples == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains examples transcluded from the snippet library. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&amp;lt;!-- This section contains links to articles, functions or constant groups. --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Yokmp</name></author>	</entry>

	<entry>
		<id>https://datoolset.net/mw/index.php?title=Chargen_SelectCoreClass&amp;diff=15892</id>
		<title>Chargen SelectCoreClass</title>
		<link rel="alternate" type="text/html" href="https://datoolset.net/mw/index.php?title=Chargen_SelectCoreClass&amp;diff=15892"/>
				<updated>2011-02-28T09:45:49Z</updated>
		
		<summary type="html">&lt;p&gt;Yokmp: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{dafunction&lt;br /&gt;
|name=Chargen_SelectCoreClass&lt;br /&gt;
|brief=Sets the character's core class.&lt;br /&gt;
|param1type=object&lt;br /&gt;
|param1name=oChar&lt;br /&gt;
|param1desc=The character.&lt;br /&gt;
|param1default=&lt;br /&gt;
|param2type=int&lt;br /&gt;
|param2name=nClass&lt;br /&gt;
|param2desc=The ID of the core class (CLASS_*)&lt;br /&gt;
|param2default=&lt;br /&gt;
|param3type=int&lt;br /&gt;
|param3name=bUnApply&lt;br /&gt;
|param3desc=TRUE resets the character.&lt;br /&gt;
|param3default=FALSE&lt;br /&gt;
|returntype=void&lt;br /&gt;
|returndesc=&lt;br /&gt;
|sourcefile=sys_chargen_h&lt;br /&gt;
|sourcemodule=core&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Description == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains the full description from the functions comments. Do not change unless you are confident these are incomplete or incorrect. --&amp;gt;&lt;br /&gt;
Sets the character's core class, including attributes, abilities and stats.&lt;br /&gt;
&lt;br /&gt;
== Remarks ==&lt;br /&gt;
&amp;lt;!-- This section contains additional comments, observations and known issues. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Examples == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains examples transcluded from the snippet library. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&amp;lt;!-- This section contains links to articles, functions or constant groups. --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Yokmp</name></author>	</entry>

	<entry>
		<id>https://datoolset.net/mw/index.php?title=Chargen_SelectCoreClass&amp;diff=15891</id>
		<title>Chargen SelectCoreClass</title>
		<link rel="alternate" type="text/html" href="https://datoolset.net/mw/index.php?title=Chargen_SelectCoreClass&amp;diff=15891"/>
				<updated>2011-02-28T09:43:49Z</updated>
		
		<summary type="html">&lt;p&gt;Yokmp: created&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{dafunction&lt;br /&gt;
|name=Chargen_SelectCoreClass&lt;br /&gt;
|brief=Sets the character's core class.&lt;br /&gt;
|param1type=object&lt;br /&gt;
|param1name=oChar&lt;br /&gt;
|param1desc=The character.&lt;br /&gt;
|param1default=&lt;br /&gt;
|param2type=int&lt;br /&gt;
|param2name=nClass&lt;br /&gt;
|param2desc=The ID of the core class (CLASS_*)&lt;br /&gt;
|param2default=&lt;br /&gt;
|param3type=int&lt;br /&gt;
|param3name=bUnApply&lt;br /&gt;
|param3desc=TRUE resets the character.&lt;br /&gt;
|param3default=FALSE&lt;br /&gt;
|returntype=void&lt;br /&gt;
|returndesc=&lt;br /&gt;
|sourcefile=core_h&lt;br /&gt;
|sourcemodule=core&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Description == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains the full description from the functions comments. Do not change unless you are confident these are incomplete or incorrect. --&amp;gt;&lt;br /&gt;
Sets the character's core class, including attributes, abilities and stats.&lt;br /&gt;
&lt;br /&gt;
== Remarks ==&lt;br /&gt;
&amp;lt;!-- This section contains additional comments, observations and known issues. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Examples == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains examples transcluded from the snippet library. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&amp;lt;!-- This section contains links to articles, functions or constant groups. --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Yokmp</name></author>	</entry>

	<entry>
		<id>https://datoolset.net/mw/index.php?title=GetCreatureCoreClass&amp;diff=15890</id>
		<title>GetCreatureCoreClass</title>
		<link rel="alternate" type="text/html" href="https://datoolset.net/mw/index.php?title=GetCreatureCoreClass&amp;diff=15890"/>
				<updated>2011-02-28T09:30:57Z</updated>
		
		<summary type="html">&lt;p&gt;Yokmp: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{dafunction&lt;br /&gt;
|name=GetCreatureCoreClass&lt;br /&gt;
|brief=Returns a creature's core class (mage, rogue, warrior)&lt;br /&gt;
|param1type=object&lt;br /&gt;
|param1name=oCreature&lt;br /&gt;
|param1desc=Returns a creature's core class (mage, rogue, warrior)&lt;br /&gt;
|param1default=&lt;br /&gt;
|returntype=int&lt;br /&gt;
|returndesc=Creatures Core Class represents by an integer.&lt;br /&gt;
|sourcefile=core_h&lt;br /&gt;
|sourcemodule=core&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Description == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains the full description from the functions comments. Do not change unless you are confident these are incomplete or incorrect. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Remarks ==&lt;br /&gt;
&amp;lt;!-- This section contains additional comments, observations and known issues. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Examples == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains examples transcluded from the snippet library. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&amp;lt;!-- This section contains links to articles, functions or constant groups. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category: Object functions]]&lt;/div&gt;</summary>
		<author><name>Yokmp</name></author>	</entry>

	<entry>
		<id>https://datoolset.net/mw/index.php?title=GetCreatureCoreClass&amp;diff=15889</id>
		<title>GetCreatureCoreClass</title>
		<link rel="alternate" type="text/html" href="https://datoolset.net/mw/index.php?title=GetCreatureCoreClass&amp;diff=15889"/>
				<updated>2011-02-28T09:12:04Z</updated>
		
		<summary type="html">&lt;p&gt;Yokmp: created&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{dafunction&lt;br /&gt;
|name=GetCreatureCoreClass&lt;br /&gt;
|brief=Returns a creature's core class (mage, rogue, warrior)&lt;br /&gt;
|param1type=object&lt;br /&gt;
|param1name=oCreature&lt;br /&gt;
|param1desc=Returns a creature's core class (mage, rogue, warrior)&lt;br /&gt;
|param1default=&lt;br /&gt;
|returntype=int&lt;br /&gt;
|returndesc=Creatures Core Class represents by an integer.&lt;br /&gt;
|sourcefile=core_h&lt;br /&gt;
|sourcemodule=core&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Description == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains the full description from the functions comments. Do not change unless you are confident these are incomplete or incorrect. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Remarks ==&lt;br /&gt;
&amp;lt;!-- This section contains additional comments, observations and known issues. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Examples == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains examples transcluded from the snippet library. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&amp;lt;!-- This section contains links to articles, functions or constant groups. --&amp;gt;&lt;br /&gt;
[[CreateObject]], [[DestroyObject]]&lt;br /&gt;
&lt;br /&gt;
[[Category: Object functions]]&lt;/div&gt;</summary>
		<author><name>Yokmp</name></author>	</entry>

	<entry>
		<id>https://datoolset.net/mw/index.php?title=EffectHeal&amp;diff=15878</id>
		<title>EffectHeal</title>
		<link rel="alternate" type="text/html" href="https://datoolset.net/mw/index.php?title=EffectHeal&amp;diff=15878"/>
				<updated>2011-02-27T05:19:45Z</updated>
		
		<summary type="html">&lt;p&gt;Yokmp: created&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{dafunction&lt;br /&gt;
|name=EffectHeal&lt;br /&gt;
|brief=Returns an effect which heals an object.&lt;br /&gt;
|param1type=float&lt;br /&gt;
|param1name=fValue&lt;br /&gt;
|param1desc=The amount of health.&lt;br /&gt;
|param1default=&lt;br /&gt;
|param2type=int&lt;br /&gt;
|param2name=bIgnoreBloodMagic&lt;br /&gt;
|param2desc=Whether or not ignore Blood Magic OR whether or not to resurrect and heal dead creatures (the description is somewhat contradictory).&lt;br /&gt;
|param2default=FALSE&lt;br /&gt;
|returntype=void&lt;br /&gt;
|returndesc=Returns a valid effect of type EFFECT_TYPE_HEALHEALTH&lt;br /&gt;
|sourcefile=effect_heal_h&lt;br /&gt;
|sourcemodule=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&amp;lt;!-- This section contains the full description from the functions comments. Do not change unless you are confident these are incomplete or incorrect. --&amp;gt;&lt;br /&gt;
Constructor for the heal health effect.&lt;br /&gt;
When applied to an object, this effect restores the given amount of health to the object. The object’s health will not be raised above its maximum health.&lt;br /&gt;
If the object is a creature which is dead no health will be healed unless bHealIfDead is TRUE, in which case the creature will be resurrected and healed.&lt;br /&gt;
&lt;br /&gt;
You should take a look at spell_drainlife.nss to see how this works.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Remarks == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains additional comments, observations and known issues. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Examples == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains examples transcluded from the snippet library. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == See also == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains links to articles, functions or constant groups. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category: Effect access functions]]&lt;/div&gt;</summary>
		<author><name>Yokmp</name></author>	</entry>

	<entry>
		<id>https://datoolset.net/mw/index.php?title=Engine_ApplyEffectOnObject&amp;diff=15877</id>
		<title>Engine ApplyEffectOnObject</title>
		<link rel="alternate" type="text/html" href="https://datoolset.net/mw/index.php?title=Engine_ApplyEffectOnObject&amp;diff=15877"/>
				<updated>2011-02-27T04:53:11Z</updated>
		
		<summary type="html">&lt;p&gt;Yokmp: added param6desc information about dispelling&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{dafunction&lt;br /&gt;
|name=Engine_ApplyEffectOnObject&lt;br /&gt;
|brief=This function applies an effect on an object.&lt;br /&gt;
|param1type=int&lt;br /&gt;
|param1name=nDurationType&lt;br /&gt;
|param1desc=can be [[EFFECT_DURATION_TYPE_PERMANENT]] [[EFFECT_DURATION_TYPE_INSTANT]] or [[EFFECT_DURATION_TYPE_TEMPORARY]]&lt;br /&gt;
|param1default=&lt;br /&gt;
|param2type=effect&lt;br /&gt;
|param2name=eEffect&lt;br /&gt;
|param2desc=the effect to be applied&lt;br /&gt;
|param2default=&lt;br /&gt;
|param3type=object&lt;br /&gt;
|param3name=oTarget&lt;br /&gt;
|param3desc=the target of the effect&lt;br /&gt;
|param3default=&lt;br /&gt;
|param4type=float&lt;br /&gt;
|param4name=fDuration&lt;br /&gt;
|param4desc=this value needs to be set only when nDurationType is [[EFFECT_DURATION_TYPE_TEMPORARY]]&lt;br /&gt;
|param4default=0.0&lt;br /&gt;
|param5type=object&lt;br /&gt;
|param5name=oCreator&lt;br /&gt;
|param5desc=effect creator&lt;br /&gt;
|param5default=OBJECT_SELF&lt;br /&gt;
|param6type=int&lt;br /&gt;
|param6name=nAbilityId&lt;br /&gt;
|param6desc=ability ID of the effect (Important for dispelling!)&lt;br /&gt;
|param6default=0&lt;br /&gt;
|returntype=void&lt;br /&gt;
|returndesc=&lt;br /&gt;
|sourcefile=script.ldf&lt;br /&gt;
|sourcemodule=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&amp;lt;!-- This section contains the full description from the functions comments. Do not change unless you are confident these are incomplete or incorrect. --&amp;gt;&lt;br /&gt;
Applies eEffect to oTarget.  If nDurationType is EFFECT_DURATION_TYPE_TEMPORARY, then fDuration is the duration of the effect. Use core_h.ApplyEffectToObject instead of calling this directly!&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Remarks == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains additional comments, observations and known issues. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Examples == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains examples transcluded from the snippet library. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == See also == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains links to articles, functions or constant groups. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category: Effect access functions]]&lt;/div&gt;</summary>
		<author><name>Yokmp</name></author>	</entry>

	<entry>
		<id>https://datoolset.net/mw/index.php?title=MaxF&amp;diff=15876</id>
		<title>MaxF</title>
		<link rel="alternate" type="text/html" href="https://datoolset.net/mw/index.php?title=MaxF&amp;diff=15876"/>
				<updated>2011-02-27T00:23:46Z</updated>
		
		<summary type="html">&lt;p&gt;Yokmp: Created&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{dafunction&lt;br /&gt;
|name=MaxF&lt;br /&gt;
|brief=Returns the greater value of f1 and f2&lt;br /&gt;
|param1type = float &lt;br /&gt;
|param1name = f1 &lt;br /&gt;
|param1desc = Float 1&lt;br /&gt;
|param1default =&lt;br /&gt;
|param2type = float &lt;br /&gt;
|param2name = f2 &lt;br /&gt;
|param2desc = Float 2&lt;br /&gt;
|param2default =&lt;br /&gt;
&lt;br /&gt;
|returntype = float&lt;br /&gt;
|returndesc = returns the greater value of both&lt;br /&gt;
|sourcefile = core.h&lt;br /&gt;
|sourcemodule = Core Resources&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Description == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains the full description from the functions comments. Do not change unless you are confident these are incomplete or incorrect. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Remarks == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains additional comments, observations and known issues. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Examples == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains examples transcluded from the snippet library. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == See also == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains links to articles, functions or constant groups. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Undocumented]]&lt;/div&gt;</summary>
		<author><name>Yokmp</name></author>	</entry>

	<entry>
		<id>https://datoolset.net/mw/index.php?title=MinF&amp;diff=15875</id>
		<title>MinF</title>
		<link rel="alternate" type="text/html" href="https://datoolset.net/mw/index.php?title=MinF&amp;diff=15875"/>
				<updated>2011-02-27T00:21:49Z</updated>
		
		<summary type="html">&lt;p&gt;Yokmp: Created&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{dafunction&lt;br /&gt;
|name=MinF&lt;br /&gt;
|brief=Returns the lesser value of f1 and f2&lt;br /&gt;
|param1type = float &lt;br /&gt;
|param1name = f1 &lt;br /&gt;
|param1desc = Float 1&lt;br /&gt;
|param1default =&lt;br /&gt;
|param2type = float &lt;br /&gt;
|param2name = f2 &lt;br /&gt;
|param2desc = Float 2&lt;br /&gt;
|param2default =&lt;br /&gt;
&lt;br /&gt;
|returntype = float&lt;br /&gt;
|returndesc = returns the lesser value of both&lt;br /&gt;
|sourcefile = core.h&lt;br /&gt;
|sourcemodule = Core Resources&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Description == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains the full description from the functions comments. Do not change unless you are confident these are incomplete or incorrect. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Remarks == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains additional comments, observations and known issues. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == Examples == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains examples transcluded from the snippet library. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- == See also == --&amp;gt;&lt;br /&gt;
&amp;lt;!-- This section contains links to articles, functions or constant groups. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Undocumented]]&lt;/div&gt;</summary>
		<author><name>Yokmp</name></author>	</entry>

	</feed>