Jump to content

Enhanced Powergaming Scripts


Recommended Posts

18 minutes ago, morpheus562 said:

I have no idea what you are trying to say in your first paragraph outside of it resolves the problem. I will definitely try to troubleshoot, but I don't know where to go with your description. Desired endstate is no warnings

Fnp spheres will only include the spells included on the specific sphere files prior to installation. This will but include mod added cleric spells by default, but can be edited to add the mod added spells by the player before installation. However, a player could miss out a mod added spell on purpose or by mistake. This will not be in the sphere system so won't be in the game. 

5e casting recognises this and doesn't clone the spells.

Therefore if it is a mod added spell that your scripts look for, it is not in a sphere with fnp and 5e casting is installed, it will not be in the d5zclons file so the enhanced powergaming scripts installation won't be able to find the new resource (because it doesn't exist) and won't be able to do the second part of modifying the script (it will be looking for sprxxx with no "") so will give parsing error as expecting string.

The only way to resolve this I think would be to check if the mod installed spell is included in whichever sphere system is installed prior to including it in the script. This would also save including the spells in the script if fnp is installed without 5ecasting but the spell is not in a sphere, which will not cause a parsing error but will have unnecessary code included in the script.

Link to comment

If I install MIH divine spellpack, FNP spheres and miss off a spell (which I did for cleric_resist_acid_corrosion) and then install 5e casting enhanced powergaming scripts will give an error. 

It will detect MIH spellpack and 5e casting. At the end of the installation it try to replace the spprxxx for the MIG spell with a d5zxxxi spell from the d5zclons.2da file, but the spprxxx won't be in the d5zlons.2da file so it can't do so and will give a parsing error as it will still have sprxxx with no quotation marks, when these would be expected. 

If 5e casting is taken out of the equation the script will still have an unnecessary section that has Have_spell_res for a spell that is in the came as an spprxxx.spl but will never be in a player's spell book as it is not included in a sphere. 

I think the difficulty is that the spheres can be changed so there is no way to account for the spheres directly in the code, would have to read in which spells are in the active sphere system. 5e casting must do this so perhaps @subtledoctorcan clarify.  

 

EDIT- this should be clear to see if MIH divine spellpack and spell restorations, a sphere system and 5e casting are installed before enhanced powergaming scripts, it will give expecting string errors. All MODS in that sequence would be working as intended, it is just human error or deliberate decision by the player to not add the MIH spells to the sphere system.

Edited by Enigmajazz
Link to comment
13 hours ago, Enigmajazz said:

If I install MIH divine spellpack, FNP spheres and miss off a spell (which I did for cleric_resist_acid_corrosion) and then install 5e casting enhanced powergaming scripts will give an error. 

It will detect MIH spellpack and 5e casting. At the end of the installation it try to replace the spprxxx for the MIG spell with a d5zxxxi spell from the d5zclons.2da file, but the spprxxx won't be in the d5zlons.2da file so it can't do so and will give a parsing error as it will still have sprxxx with no quotation marks, when these would be expected. 

There are either typos or language issues getting in the way here, I think. But yes I think the issue is that, if EPS detects MIH then it will try to include MIH spells. And if it detects 5E then it will try to use 5E versions of the MIH spells. But if an FnP sphere system is installed in between, then 5E will not include any MIH spells that are not included in the sphere system, so in this case the d5zclons lookup will fail.

This is totally fixable, of course. Just adds a bit of complexity.

On 4/16/2022 at 4:47 PM, morpheus562 said:

For F&P spellcasting, how are the D5PXXXX spells assigned? Is it dynamic, or will Zone of Sweet Air always be D5P1318? If it is dynamic, do you create a list similar to D5ZClon.2da that shows original plus new mapping?

Of course! Who do you think you are dealing with? :goodwork:  I make lots and lots of index files, especially in FnP. There is a system here: the 'P' means it is a normal spell (can also be 'F' for focus or 'M' for minor access); the '1' means divine (can also be '2' for arcane spells brought into the spheres) and the '318' matches the spell's IDS number. Actually the last four digits together represent the spell's full IDS number - if you look at SPELL.IDS, you see that CLERIC_ZONE_OF_SWEET_AIR is number 1318, so D5P1318 means "the FnP version of CLERIC_ZONE_OF_SWEET_AIR when it has been moved to a different spell level." This gets a bit more complicated since some spells don't comform to the IDS format - you can add spell filenames directly to the sphere system - so the easiest thing is to look up the info in D5FNPLST.2da. In that file, column 0 is the base spell's filename, and column 1 is the memorizable FnP spell, and column 3 is the 'focus' version of the spell, which is the memorizable spell moved down one spell level. These are the spells that can potentially be memorized. (Minor access spells used to be different too, but I have phased that out of FnP. So column 2 is vestigial.)

So, remember, 5E casting only wants to know what spells can actually be memorized. For divine spells, when there is no sphere system, that means spells that confirm to the IDS format, maxed at SPPRx50. And when there is a sphere system, that means spells in column 1 and column 3 of d5fnplst.2da.

You can see how 5E casting determines this: here, at line 1782 it does a regexp search for spells in the IDS format (when d5__spheres.d5 is not detected, so no sphere system) and here at line 1808 it does some lookups in d5fnplst.2da (because that 2da file only exists if there is a sphere system). Maybe that code can help you.

EDIT - or maybe a quicker way is simply add a check when including spells in scripts: only include the spell in scripts if

!(FILE_EXISTS_IN_GAME ~d5fnplst.2da~) OR ((FILE_EXISTS_IN_GAME ~d5fnplst.2da~) AND (FILE_CONTAINS_REGEXP (~d5fnplst.2da~ ~[filename]~)))

Something like that anyway...

EDIT 2 - aside the point, but this explains why the earlier errors were looking at the last d5zclons.2da index values for the BG1NPCSOA spells: the spells were not included in 5E casting, so probably when the EPS lookup did not find them in the 2da file, it reverted to the last valid index number, which was the last one in the file.

Edited by subtledoctor
Link to comment
47 minutes ago, morpheus562 said:

@Enigmajazz I think I understand what you're saying, but can you please provide the weidu logs, error logs, and any areas you added your custom code to so I can look into it.

I have replicated this issue with just MIH spellpack, FNP sphere system, 5e casting and enhanced powergaming scripts. This is the simplest case to trigger the errors. Other mods are not relevant to this error. 

It won't let me upload the debug file, but here are the errors:

Spoiler

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 1770 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 1783 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 1790 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 1807 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 1814 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 1831 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 1838 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 1855 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 1862 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 1879 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 1886 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 1903 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 1910 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 1927 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 2277 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 2291 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 2298 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 2317 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 2324 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 2343 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 2350 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 2369 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 2376 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 2395 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 2402 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 2421 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 2428 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 2447 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 2454 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 2470 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 2477 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 2498 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 2505 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 2526 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 2533 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 2554 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 2561 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 2582 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 2589 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 2610 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 2617 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 2638 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 6183 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 6195 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 6202 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 6218 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 6225 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 6241 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 6248 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 6264 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 6271 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 6287 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 6294 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 6310 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 6317 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 6333 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 7081 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 7096 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 7103 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 7122 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 7129 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 7148 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 7155 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 7174 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 7181 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 7200 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 7207 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 7226 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 7233 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 7252 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.
BIFF may be in hard-drive CD-path [.\lang\en_us\DATA\PATCH2.BIF]
BIFF may be in hard-drive CD-path [.\cache\DATA\PATCH2.BIF]
[.\DATA\PATCH2.BIF] 39745172 bytes, 1005 files, 0 tilesets

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 7897 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 7911 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 7918 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 7937 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 7944 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 7963 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 7970 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 7989 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 7996 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 8015 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 8022 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 8041 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 8048 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 8067 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 8409 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 8422 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 8429 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 8447 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 8454 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 8472 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 8479 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 8497 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 8504 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 8522 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 8529 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 8547 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 8554 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 8572 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 8887 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 8898 column 1-39
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 8928 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 8942 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 8949 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 8968 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 8975 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 8994 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 9001 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 9020 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 9027 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 9046 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 9053 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 9072 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 9079 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 9098 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 9676 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mobasic.baf.BAF] PARSE ERROR at line 9687 column 1-39
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.
Copied [enhanced-powergaming-scripts/baf/upload/mobasic.baf] to [scripts/mobasic.bs]
[enhanced-powergaming-scripts/baf/upload/mocore.baf] loaded, 978992 bytes

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 1770 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 1783 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 1790 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 1807 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 1814 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 1831 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 1838 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 1855 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 1862 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 1879 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 1886 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 1903 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 1910 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 1927 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 2277 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 2291 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 2298 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 2317 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 2324 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 2343 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 2350 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 2369 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 2376 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 2395 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 2402 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 2421 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 2428 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 2447 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 2454 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 2470 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 2477 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 2498 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 2505 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 2526 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 2533 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 2554 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 2561 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 2582 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 2589 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 2610 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 2617 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 2638 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 6183 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 6195 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 6202 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 6218 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 6225 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 6241 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 6248 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 6264 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 6271 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 6287 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 6294 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 6310 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 6317 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 6333 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 7081 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 7096 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 7103 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 7122 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 7129 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 7148 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 7155 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 7174 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 7181 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 7200 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 7207 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 7226 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 7233 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 7252 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 7897 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 7911 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 7918 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 7937 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 7944 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 7963 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 7970 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 7989 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 7996 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 8015 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 8022 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 8041 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 8048 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 8067 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 8409 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 8422 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 8429 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 8447 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 8454 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 8472 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 8479 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 8497 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 8504 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 8522 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 8529 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 8547 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 8554 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 8572 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 8887 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 8898 column 1-39
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 8928 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 8942 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 8949 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 8968 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 8975 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 8994 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 9001 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 9020 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 9027 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 9046 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 9053 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 9072 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 9079 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 9098 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 9676 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 9687 column 1-39
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 11609 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 11622 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 11629 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 11647 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 11654 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 11672 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 11679 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 11697 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 11704 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 11722 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 11729 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 11747 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 11754 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 11772 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 11951 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 11974 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 11981 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 12008 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 12015 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 12042 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 12049 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 12076 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 12083 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 12110 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 12117 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 12144 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 12151 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 12178 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 15776 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 15795 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 15802 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 15821 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 15828 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 15847 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 15854 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 15873 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 15880 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 15899 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 15906 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 15925 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 15932 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 15951 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 22950 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.
[./override/RACE.IDS] loaded, 1364 bytes

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 22995 column 1-28
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 24634 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 24678 column 1-28
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 24685 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 24729 column 1-28
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 24844 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 24889 column 1-28
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 24896 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/mocore.baf.BAF] PARSE ERROR at line 24941 column 1-28
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.
Copied [enhanced-powergaming-scripts/baf/upload/mocore.baf] to [scripts/mocore.bs]
[enhanced-powergaming-scripts/baf/upload/moskd.baf] loaded, 962001 bytes

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 1770 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 1783 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 1790 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 1807 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 1814 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 1831 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 1838 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 1855 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 1862 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 1879 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 1886 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 1903 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 1910 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 1927 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 2277 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 2291 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 2298 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 2317 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 2324 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 2343 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 2350 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 2369 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 2376 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 2395 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 2402 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 2421 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 2428 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 2447 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 2454 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 2470 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 2477 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 2498 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 2505 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 2526 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 2533 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 2554 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 2561 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 2582 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 2589 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 2610 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 2617 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 2638 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 6183 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 6195 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 6202 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 6218 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 6225 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 6241 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 6248 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 6264 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 6271 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 6287 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 6294 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 6310 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 6317 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 6333 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 7081 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 7096 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 7103 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 7122 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 7129 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 7148 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 7155 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 7174 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 7181 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 7200 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 7207 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 7226 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 7233 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 7252 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 7897 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 7911 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 7918 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 7937 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 7944 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 7963 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 7970 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 7989 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 7996 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 8015 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 8022 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 8041 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 8048 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 8067 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 8409 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 8422 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 8429 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 8447 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 8454 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 8472 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 8479 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 8497 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 8504 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 8522 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 8529 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 8547 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 8554 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 8572 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 8887 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 8898 column 1-39
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 8928 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 8942 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 8949 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 8968 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 8975 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 8994 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 9001 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 9020 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 9027 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 9046 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 9053 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 9072 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 9079 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 9098 column 1-51
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 9676 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 9687 column 1-39
Near Text: )
    Type mismatch in "RES" argument of [ReallyForceSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 11609 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 11622 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 11629 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 11647 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 11654 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 11672 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 11679 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 11697 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 11704 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 11722 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 11729 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 11747 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 11754 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 11772 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 11951 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 11974 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 11981 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 12008 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 12015 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 12042 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 12049 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 12076 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 12083 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 12110 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 12117 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 12144 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 12151 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 12178 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 15776 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 15795 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 15802 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 15821 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 15828 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 15847 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 15854 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 15873 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 15880 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 15899 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 15906 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 15925 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 15932 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 15951 column 1-40
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 22950 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 22995 column 1-28
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 24634 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 24678 column 1-28
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 24685 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 24729 column 1-28
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 24844 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 24889 column 1-28
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 24896 column 1-23
Near Text: )
    Type mismatch in "Spell" argument of [HaveSpellRES].
    Expecting type "string". Recovering.

[enhanced-powergaming-scripts/baf/upload/moskd.baf.BAF] PARSE ERROR at line 24941 column 1-28
Near Text: )
    Type mismatch in "RES" argument of [SpellRES].
    Expecting type "string". Recovering.

I have not modified the sphere system so the MIH spells are not accessible to the player ever. The errors come up whenever the script is looking for a MIH divine spellpack or spell restorations spell. 

There is nothing custom in this install. With my full install there were fewer errors as I added some of the MIH spellpack spells to the sphere system I installed.  

WeiDU.log

Edited by Enigmajazz
Link to comment
17 minutes ago, subtledoctor said:

* I’d be happy to do this myself, if someone had a list of the MIH spells and their IDS names

These are the 2da files used to install the divine spellpack and the restored spells from MIH spellpack (this is the release version, looks like master version has a spell added and spell restorations moved out of the mod).  

(I've now locally added them all in for my sphere system so hopefully now can do final install and actually get to play the game as this should remove last meaningful errors.) 

spells.2da spells.2da

Link to comment

Hi,

Edwin keeps wanting to use his amulet every round even though it is not a usable amulet.
This happens with the MO-Core script only and in or out of combat when he doesn't have anything to do but not only. If I want to manually cast a spell and I do it at the beginning of the round, the spell will be cancelled by the amulet just before the end of the round.

6NA1PDx.png

Edited by Leilu
Link to comment
Guest
This topic is now closed to further replies.
×
×
  • Create New...