MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame] | 1 | |
Zesstra | 953f997 | 2017-02-18 15:37:36 +0100 | [diff] [blame] | 2 | P_GLOBAL_SKILLPROPS |
| 3 | ******************* |
MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame] | 4 | |
MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame] | 5 | |
Zesstra | 953f997 | 2017-02-18 15:37:36 +0100 | [diff] [blame] | 6 | NAME |
| 7 | ==== |
MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame] | 8 | |
Zesstra | 953f997 | 2017-02-18 15:37:36 +0100 | [diff] [blame] | 9 | P_GLOBAL_SKILLPROPS "sm_global" |
MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame] | 10 | |
Zesstra | 953f997 | 2017-02-18 15:37:36 +0100 | [diff] [blame] | 11 | |
| 12 | DEFINIERT IN |
| 13 | ============ |
| 14 | |
| 15 | /sys/new_skills.h |
| 16 | |
| 17 | |
| 18 | BESCHREIBUNG |
| 19 | ============ |
| 20 | |
| 21 | Diese Gilden- und Spellbookproperty enthaelt Eigenschaften, die |
| 22 | alle Spells eines Spellbooks bzw. alle Skills und Spells einer Gilde |
| 23 | haben sollen. |
| 24 | |
| 25 | |
| 26 | BEISPIELE |
| 27 | ========= |
| 28 | |
| 29 | SetProp(P_GLOBAL_SKILLPROPS, |
| 30 | ([SI_SKILLRESTR_USE: ([SR_FUN: #'spellTest]), |
| 31 | OFFSET(SI_SKILLLEARN): #'learnOffset, |
| 32 | OFFSET(SI_SPELLCOST): #'costOffset, |
| 33 | FACTOR(SI_SPELLCOST): #'costFactor])); |
| 34 | |
| 35 | |
Zesstra | 8bf86f5 | 2020-04-04 15:24:13 +0200 | [diff] [blame] | 36 | BEMERKUNG |
| 37 | ========= |
| 38 | |
| 39 | Diese Property wird in AddSpell() ausgewertet, nicht in UseSpell(). |
| 40 | Sie muss also vor dem Hinzufuegen von Spells mitels AddSpell |
| 41 | gesetzt werden. |
| 42 | |
| 43 | |
Zesstra | 953f997 | 2017-02-18 15:37:36 +0100 | [diff] [blame] | 44 | SIEHE AUCH |
| 45 | ========== |
| 46 | |
| 47 | GObj Verwalten: LearnSkill, LearnSpell, InitialSkillAbility |
| 48 | * Properties: P_GUILD_SKILLS |
| 49 | Spellbook Lernen: Learn, SpellSuccess, Erfolg, Misserfolg |
| 50 | * Verwalten: AddSpell, QuerySpell |
| 51 | * Properties: P_SB_SPELLS |
| 52 | Skills: P_NEWSKILLS, spruchermuedung, skill_info_liste |
| 53 | |
Zesstra | 8bf86f5 | 2020-04-04 15:24:13 +0200 | [diff] [blame] | 54 | Letzte Aenderung: 06.03.2020, Bugfix |