![]() |
![]() |
![]() |
![]() |
![]() |
#1
|
|||
|
|||
![]() Hi! Is there a mod or an option in the assets folder to NOT allow casting any spell or skill while moving? I'm aware you block moving while casting offensive spells but healing spells, blessings, buffs and skills (like the rogue Stealth skill) are yet allowed to be casted while moving and it's obvious that the game originally was scripted so that all spells and skills were casted while standing still. It's just that I've been playing rpgs for a long time and I feel weird casting spells while moving and the game looks wrong when you are moving and at the same time the character is stuck doing an animation.
|
#2
|
|||
|
|||
![]() There is an option you can add to the skills called "StandStillToCast". You would just need to add it to each of the skills that you want to modify. For example:
Code:
ModStandLesserHeal addsto SkillLesserHeal { StandStillToCast 1 } ModStandGreaterHeal addsto SkillGreaterHeal { StandStillToCast 1 } |
#3
|
|||
|
|||
![]() But where do I add that text or how I can create a working mod??? I created a folder called Database and created a file called mod_standingstillcast.gdb and pasted the text you told me, then with 7-zip compressed it to a zip file and pasted in assets folder but it don't work. Lesser heal and greater heal are still being casted while moving. Am I missing something??
|
#4
|
|||
|
|||
![]() By the sound of it, you created the mod correctly, it's just that my code was wrong. That's what I get for not testing. I used "addsto" instead of "overrides".
The correct code would be: Code:
ModStandLesserHeal overrides SkillLesserHeal { StandStillToCast 1 } ModStandGreaterHeal overrides SkillGreaterHeal { StandStillToCast 1 } [Edit: Make sure you don't have the old .gdb file in the loose Database folder. Data in that folder will override anything in .zip files.] Last edited by joku : 11-04-2016 at 12:26 AM. |
#5
|
|||
|
|||
![]() I tested it and it worked perfectly. Don't know why the developers allow spells and skills being casted while moving, the character looks wrong that way. Anyway thanks man, I can enjoy the game more now!
|
![]() |
Thread Tools | |
Display Modes | |
|
|