MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame^] | 1 | FUNKTION: |
| 2 | |
| 3 | varargs int GetFValue(string vname, mapping map, object pl) |
| 4 | |
| 5 | |
| 6 | ARGUMENTE: |
| 7 | |
| 8 | vname : name des parameters aus dem spellmapping |
| 9 | map : spellmapping |
| 10 | pl : caster |
| 11 | |
| 12 | |
| 13 | BESCHREIBUNG: |
| 14 | |
| 15 | Berechnet den Wert und den Factor des Parameters in spellmapping. |
| 16 | |
| 17 | |
| 18 | RUECKGABEWERT: |
| 19 | |
| 20 | Berechneter Wert*Factor aus dem Spellmapping. |
| 21 | |
| 22 | |
| 23 | BEMERKUNGEN: |
| 24 | |
| 25 | Ruft GetValue(vname,map,pl)*GetFactor(vname,map,pl)/100 auf. |
| 26 | |
| 27 | |
| 28 | BEISPIEL: |
| 29 | |
| 30 | xxx=GetFValue(SI_SKILLDAMAGE,sinfo,caster); |
| 31 | |
| 32 | Siehe auch: |
| 33 | |
| 34 | "GetValue", "GetFactor", "GetOffset", "GetValueO", "GetFValueO" |
| 35 | |
| 36 | Ausfuehrliches Beispiel siehe "GetFValueO". |
| 37 | |