diff --git a/.gitignore b/.gitignore index 63a8585..2a6c6dc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ - +*.mod +*.tlk *.hak *.md5 diff --git a/_content/Compiler - Top Hak.bat b/_content/Compiler - Top Hak.bat new file mode 100644 index 0000000..c73db08 --- /dev/null +++ b/_content/Compiler - Top Hak.bat @@ -0,0 +1,4 @@ +:loop +"C:\NWN Work\nwnsc.exe" -o -w -n "C:\Games\Steam\steamapps\common\Neverwinter Nights" -i "D:\NWN Repos\Battledale_PRC8\_content\prc8_battle_top";"D:\NWN Repos\PRC8\nwn\nwnprc\trunk\include" "D:\NWN Repos\Battledale_PRC8\_content\prc8_battle_top\*.nss" +if %errorLevel% == -1 goto :loop +pause \ No newline at end of file diff --git a/_content/prc8_battle_top/jw_exp_functions.nss b/_content/prc8_battle_top/jw_exp_functions.nss new file mode 100644 index 0000000..ca168c8 --- /dev/null +++ b/_content/prc8_battle_top/jw_exp_functions.nss @@ -0,0 +1,293 @@ +#include "prc_inc_racial" + +// returns TRUE if the PC qualifies for a multiclass penalty, FALSE if not +int Multipen(object oPC); +// Returns a float which can be more than 1 if the mob is higher level than the party, and less than +// 1 if it is lower level than the party. nDifference should be the difference between party level +// and mob CR +float getmodifier (int nDifference); +// Returns TRUE if the PC already has enough xp to take them to a level higher than they currently are +int PCHasExpToLevel(object oObject); + + + +int Multipen(object oPC) +{ +int nClass1=GetClassByPosition(1,oPC); +int nClass2=GetClassByPosition(2,oPC); +int nClass3=GetClassByPosition(3,oPC); +int nClass4=GetClassByPosition(4,oPC); +int nClass5=GetClassByPosition(5,oPC); +int nClass6=GetClassByPosition(6,oPC); +int nClass7=GetClassByPosition(7,oPC); +int nClass8=GetClassByPosition(8,oPC); + + +//::: Yeah, not doing this bullshit -Jaysyn +/* if ((nClass1==CLASS_TYPE_ARCANE_ARCHER)||(nClass1==CLASS_TYPE_ASSASSIN)|| (nClass1==CLASS_TYPE_BLACKGUARD)||(nClass1==CLASS_TYPE_HARPER)||(nClass1==CLASS_TYPE_SHADOWDANCER)||(nClass1==CLASS_TYPE_ANIMAL)||(nClass1==CLASS_TYPE_DIVINECHAMPION)||(nClass1==CLASS_TYPE_DRAGONDISCIPLE)||(nClass1==CLASS_TYPE_DWARVENDEFENDER)||(nClass1==CLASS_TYPE_PALEMASTER)||(nClass1==CLASS_TYPE_SHIFTER)||(nClass1==CLASS_TYPE_WEAPON_MASTER)) +{ + nClass1=CLASS_TYPE_INVALID; +} + +if ((nClass2==CLASS_TYPE_ARCANE_ARCHER)||(nClass2==CLASS_TYPE_ASSASSIN)|| (nClass2==CLASS_TYPE_BLACKGUARD)||(nClass2==CLASS_TYPE_HARPER)||(nClass2==CLASS_TYPE_SHADOWDANCER)||(nClass2==CLASS_TYPE_ANIMAL)||(nClass2==CLASS_TYPE_DIVINECHAMPION)||(nClass2==CLASS_TYPE_DRAGONDISCIPLE)||(nClass2==CLASS_TYPE_DWARVENDEFENDER)||(nClass2==CLASS_TYPE_PALEMASTER)||(nClass2==CLASS_TYPE_SHIFTER)||(nClass2==CLASS_TYPE_WEAPON_MASTER)) +{ + nClass2=CLASS_TYPE_INVALID; +} + +if ((nClass3==CLASS_TYPE_ARCANE_ARCHER)||(nClass3==CLASS_TYPE_ASSASSIN)|| (nClass3==CLASS_TYPE_BLACKGUARD)||(nClass3==CLASS_TYPE_HARPER)||(nClass3==CLASS_TYPE_SHADOWDANCER)||(nClass3==CLASS_TYPE_ANIMAL)||(nClass3==CLASS_TYPE_DIVINECHAMPION)||(nClass3==CLASS_TYPE_DRAGONDISCIPLE)||(nClass3==CLASS_TYPE_DWARVENDEFENDER)||(nClass3==CLASS_TYPE_PALEMASTER)||(nClass3==CLASS_TYPE_SHIFTER)||(nClass3==CLASS_TYPE_WEAPON_MASTER)) +{ + nClass3=CLASS_TYPE_INVALID; +} + */ +int nLevel1=GetLevelByClass(nClass1,oPC); +int nLevel2=GetLevelByClass(nClass2,oPC); +int nLevel3=GetLevelByClass(nClass3,oPC); +int nLevel4=GetLevelByClass(nClass4,oPC); +int nLevel5=GetLevelByClass(nClass5,oPC); +int nLevel6=GetLevelByClass(nClass6,oPC); +int nLevel7=GetLevelByClass(nClass7,oPC); +int nLevel8=GetLevelByClass(nClass8,oPC); + +int nRace = GetRacialType(oPC); + +int nFavoured; + +// favoured == 99 means any + +int nProblem1 = 0; +int nProblem2 = 0; +int nProblem3 = 0; + +int nPenalty = 0; + +if (nRace==RACIAL_TYPE_DWARF) //RACIAL_TYPE_DWARF + {nFavoured=CLASS_TYPE_FIGHTER;} + + if (nRace==RACIAL_TYPE_ELF) //RACIAL_TYPE_elf + {nFavoured=CLASS_TYPE_WIZARD;} + + if (nRace== RACIAL_TYPE_GNOME) //RACIAL_TYPE_gnome + {nFavoured=CLASS_TYPE_WIZARD;} + + if (nRace==RACIAL_TYPE_HALFLING) //RACIAL_TYPE_halfling + {nFavoured=CLASS_TYPE_ROGUE;} + + if (nRace== RACIAL_TYPE_HALFELF) //RACIAL_TYPE_halfelf + {nFavoured=99;} + + if (nRace== RACIAL_TYPE_HALFORC) //RACIAL_TYPE_halforc + {nFavoured=CLASS_TYPE_BARBARIAN;} + + if (nRace== RACIAL_TYPE_HUMAN) //RACIAL_TYPE_human + {nFavoured=99;} + + if (nRace== RACIAL_TYPE_ANIMAL) //RACIAL_TYPE_animal + {nFavoured=99;} + + + + +/// first of all, check to see if the classes are roughly equal +int nEqual=0; +// as long as nEqual==0, they are roughly level. + + +if ((nClass1!=CLASS_TYPE_INVALID)&&(nClass2!=CLASS_TYPE_INVALID)) +{ +if ((nLevel1-nLevel2>1)||(nLevel2-nLevel1>1)) //the difference between class 1 and 2 is more than 1 + + { + nEqual=1; + nProblem1=1; + } +} + + +if ((nClass1!=CLASS_TYPE_INVALID)&&(nClass3!=CLASS_TYPE_INVALID)) +{ +if ((nLevel1-nLevel3>1)||(nLevel3-nLevel1>1)) //the difference between class 1 and 3 is more than 1 + + { + nEqual=1; + nProblem2=1; + } +} + + +if ((nClass2!=CLASS_TYPE_INVALID)&&(nClass3!=CLASS_TYPE_INVALID)) +{ + if ((nLevel2-nLevel3>1)||(nLevel3-nLevel2>1)) //the difference between class 1 and 2 is more than 1 + + { + nEqual=1; + nProblem3=1; + } +} +// if there is no problem here, return zero +if (nEqual==0) +{ +return nPenalty; +} + +// classes are unequal but are any of the unequal classes favoured? +// do humans and half elves first +if (nFavoured==99) + { + if ((nProblem1==1)&&(nProblem2==1)&&(nProblem3==1)) + { + return 1; + } + else + { + return 0; + } + + } + +// now do everyone else + +if (nProblem1==1) + { + if ((nClass1!=nFavoured)&&(nClass2!=nFavoured)) + { + nPenalty=1; + } + } + +if (nProblem2==1) + { + if ((nClass1!=nFavoured)&&(nClass3!=nFavoured)) + { + nPenalty=1; + } + } + +if (nProblem3==1) + { + if ((nClass2!=nFavoured)&&(nClass3!=nFavoured)) + { + nPenalty=1; + } + } + +return nPenalty; + +} + + +float getmodifier (int nDifference) + +{ + +// works out the modified for xp, based on the difference between the player or average party level and +// the cr of the mob. + +float fModifier; + +if (nDifference <= -7) +{ + fModifier=1.9; +} + +if (nDifference == -6) +{ + fModifier=1.6; +} + +if (nDifference == -5) +{ + fModifier=1.5; +} + +if (nDifference == -4) +{ + fModifier=1.4; +} + +if (nDifference == -3) +{ + fModifier=1.3; +} + +if (nDifference == -2) +{ + fModifier=1.2; +} + +if (nDifference == -1) +{ + fModifier=1.1; +} + + +if (nDifference == 0) +{ + fModifier=1.0; +} + +if (nDifference == 1) +{ + fModifier=1.0; +} + +if (nDifference == 2) +{ + fModifier=0.9; +} + +if (nDifference == 3) +{ + fModifier=0.7; +} + +if (nDifference == 4) +{ + fModifier=0.4; +} + +if (nDifference == 5) +{ + fModifier=0.2; +} + +if (nDifference == 6) +{ + fModifier=0.1; +} + +if (nDifference == 7) +{ + fModifier=0.05; +} + +if (nDifference == 8) +{ + fModifier=0.03; +} + +if (nDifference == 9) +{ + fModifier=0.02; +} + +if (nDifference >= 10) +{ + fModifier=0.01; +} + + return fModifier; +} + +int PCHasExpToLevel(object oObject) +{ +int nHD = GetHitDice(oObject)+1; +//xp needed to be level nHD +int nXPNeeded = ((nHD * (nHD - 1)) / 2) * 1000; +if (GetXP(oObject)>=nXPNeeded) +{ +return TRUE; +} + +return FALSE; +} + diff --git a/_content/prc8_battle_top/jw_exp_giver.nss b/_content/prc8_battle_top/jw_exp_giver.nss new file mode 100644 index 0000000..6a3eba3 --- /dev/null +++ b/_content/prc8_battle_top/jw_exp_giver.nss @@ -0,0 +1,339 @@ +#include "jw_exp_functions" + + + +void givexp(object oMob,object oPC) +{ + +//KillAndReplaceLootable(OBJECT_SELF, TRUE); + + +float fCR; + +if (GetLocalInt(OBJECT_SELF,"is_clone")==TRUE) +{ + fCR=IntToFloat(GetHitDice(oMob))-1; + if (fCR<1.0) + { + fCR=1.0; + } +} + +else + +{ + fCR=GetChallengeRating(oMob); +} + +// nNumber gives you the number of players in the party. No penalty for using summoned mobs +// nHDcounter is the total HD of the party (players only) +// nHighlevel is the level of the highest person in the party; + +int nNumber=0; +int nHDcounter=0; +int nHighlevel=1; +int nHD; + +if (GetIsObjectValid(GetMaster(oPC))) +{ +oPC=GetMaster(oPC); +} + +if (!GetIsPC(oPC)) +{ +oPC=GetTrapCreator(oPC); +} + +if (!GetIsPC(oPC)) +{ +return; +} + + + + object oObject = GetFirstFactionMember(oPC, TRUE); + while (GetIsObjectValid(oObject) == TRUE) + { + nHD=GetHitDice(oObject); + nNumber++; + + nHDcounter=nHDcounter+nHD; + if (nHD>nHighlevel) + { + nHighlevel=nHD; + } + oObject = GetNextFactionMember(oPC, TRUE); + } + +// if the party has no members for some reason, return; +if (nNumber==0) +{ +return; +} + + +/// the average level of the party is the total HD divided by the number of people + +float fTotalHD=IntToFloat(nHDcounter); +float fAvlevel=fTotalHD/nNumber; +float fHighlevel=IntToFloat(nHighlevel); +float fLevel; + +// the party level used to generate a level which xp is based on is fLevel. +// This is the avererage party level plus the highest level in the party divided by two. +// Eg if the average level is 5 but there is a level 10 in there, the party is +// treated as being level 7.5. + +if (fHighlevel>fAvlevel) +{ + fLevel=(fHighlevel+fAvlevel)/2; +} +else +{ + fLevel=fAvlevel; +} + + + +// fDifference is the party level we are using minus the challenge rating of the creature. +// so a level 7 mob killed by a level 9 group will have an fDifference of two. +// This indicates that the mob was a fairly easy challenge. + +float fDifference=fLevel-fCR; + +int nDifference=FloatToInt(fDifference); + +// if the difference was more than 11, nobody gets anything. + +if (nDifference>11) +{ + oObject = GetFirstFactionMember(oPC, TRUE); + while (GetIsObjectValid(oObject) == TRUE) + { + SendMessageToPC(oObject,"Your party gains no experience from defeating "+GetName(oMob)); + oObject = GetNextFactionMember(oPC, TRUE); + return; + } + +} + + +// This calls the function at the top to check out how much the xp reward should +// be modified, based on fDifference. If fDifference is a positive number, then the +// modifier is less than one. +// For example, if the difference is four then the party will only get 0.3 experience +// for every one point of experience they could have earned if they were the same +// level as this mob. +// However if they are of a lower level than the mob, they get extra xp. +// It is worth fighting mobs of a higher level than yourself. + +float fModifier = getmodifier(nDifference); + +// The basic xp of any mob is it's challenge rating times 5.5. Ie first level mob gives 5.5 +// second gives 11, 20th gives 110. +// A mob which is challenge rating 1/2 or 1/8 (such as kobolds level one and two +// or much of crypts level one) gives 5.0. + +float fBasicxp; + +if (fCR>=1.0) +{ +fBasicxp=fCR*4.7; +} +else +{ +fBasicxp=4.3; +} + +// The exp will be shared out among the party. However the total xp pool +// is increased if the players are in a party. This is to lessen the bonus given +// to people who solo. +// A party of two will each get 80 per cent as much xp as either of them would have got for +// killing the mob solo. +// A party of 3 will each get 73 per cent of the exp which +// any of them would have got for killing the mob solo. +// solo. A party of six each gets 0.50 per cent of the exp they would have got if +// they had killed the mob solo. +// This means there is a great advantage to being in a party, as you can kill more mobs +// yet still get good exp. +// These figures ignore the adjustments from the levels of the players in the party. +// if more than four people are in the party, any future people do not add to the bonus. + +float fPartybonus=1.0; + +if (nNumber>1) +{ +fPartybonus=(IntToFloat(nNumber)); +fPartybonus=fPartybonus-1.0; +if (fPartybonus>4.0) +{ +fPartybonus=4.0; +} +fPartybonus=fPartybonus*0.4; +fPartybonus=fPartybonus+1.0; +} + +// the xp to be shared between the party is the xp the mob is worth (challenge rating times 4) +// times the modifer for the level difference (up or down depending on mob CR compared to party level) +// times any party modifier (up if the players are in a party) + + +float fPartyxp=fBasicxp*fModifier*fPartybonus; + +// DEBUG + +//SendMessageToAllDMs("fPartyxp "+FloatToString(fPartyxp)+" =fBasicxp "+FloatToString(fBasicxp)+" *fModifier "+FloatToString(fModifier)+ "*fPartybonus; "+FloatToString(fPartybonus)); + +// The xp for each player is then the partyxp divided by all the players (summoned +// creatures have no effect on this) + +float fPlayerxp=fPartyxp/(IntToFloat(nNumber)); +int nPlayerxp=FloatToInt(fPlayerxp); + +// however we also want to make sure no players get more xp in a group +// than they would have done solo. This could happen if a high level char +// adventures with low level chars. +// no PC can ever get more exp than the strongest member of the faction could have got +// if they fought the mob solo + +float fTestxp; +fDifference=fHighlevel-fCR; +nDifference=FloatToInt(fDifference); +fTestxp=fBasicxp*getmodifier(nDifference); +if (fPlayerxp>fTestxp) + { + fPlayerxp=fTestxp; + nPlayerxp=FloatToInt(fTestxp); + } + +// fPlaydifference is going to be the difference between each PCs level and the highest level +// in the party + +float fPlaydifference; +nHighlevel=FloatToInt(fHighlevel); +int nPlaylevel; +int nXPtogive; +float fMaxxp; +int nMaxxp; + + oObject = GetFirstFactionMember(oPC, TRUE); + while (GetIsObjectValid(oObject) == TRUE) + { + + // nDifference now is the level of each PC as we go through them in turn + // fTestxp is simply what they would have got if they killed the mob solo + nPlaylevel=GetHitDice(oObject); + nDifference=FloatToInt(IntToFloat(nPlaylevel)-fCR); + fTestxp=fPlayerxp; + + // Work out the max xp a player of that level is allowed to get + // This is the xp they would have got for killing something 3 levels above themselves alone + + fMaxxp=(fBasicxp*(IntToFloat(nPlaylevel)+2.0)); + nMaxxp=FloatToInt(fMaxxp); + + + + // fTestxp is equal to the XP each player will get if no modifications are needed. + + // if the difference between the individual character and the mob is more than + // six, he gets no XP even if the party does. + // This system does leave open the possibility of high level chars helping + // low level chars. This is possibly open to abuse but is a deliberate + // feature to allow friends to adventure together even if they are of different + // levels. + + if (GetArea(oPC)!=GetArea(oObject)) + { + + } + + else + + if (nDifference>11) + { + SendMessageToPC(oObject,"You cannot gain much experience for defeating "+GetName(oMob)); + } + + + + + else + + // otherwise, they get the exp we calculated above as long as they are not dead. + if (GetCurrentHitPoints(oObject)>=1) + + + { + + nXPtogive=nPlayerxp; + + //if (nXPtogive<1) + // { + // nXPtogive=1; + // } + // If the character is travelling in a higher level party, they get a penalty + + if (nPlaylevel<(FloatToInt(fLevel)-8)) + { + nDifference=FloatToInt(fLevel)-nPlaylevel-8; + fPlaydifference=getmodifier(nDifference); + fTestxp=fPlayerxp*fPlaydifference; + nXPtogive=FloatToInt(fPlayerxp*fPlaydifference); + } + + + + /* + The server seems to be doing this on its own now + if (Multipen(oObject)) + { + + nXPtogive=FloatToInt(fTestxp*0.8); + SendMessageToPC(oObject,"Multiclass xp penalty affects you"); + } + */ + if (nXPtogive>nMaxxp) + { + nXPtogive=nMaxxp; + } + + + // Now we give a bonus to lowbies + if (nPlaylevel<=3) + { + nXPtogive=nXPtogive*(5-nPlaylevel); + } + if (nXPtogive<2) + { + nXPtogive=2; + } + + + if (GetIsObjectValid(GetItemPossessedBy(oObject,"jw_exp_book"))) + { + SendMessageToPC(oObject,"The Scholar's Tome in your inventory ensures you do not gain experience"); + } + else + if ((PCHasExpToLevel(oObject)==TRUE)&&(nPlaylevel<=3)) + { + SendMessageToPC(oObject,"You cannot gain any more experience this way until you train to your next level."); + + } + + else + { + SendMessageToPC(oObject,"You gain "+IntToString(nXPtogive)+" experience for defeating "+GetName(oMob)); + GiveXPToCreature(oObject,nXPtogive); + } + } + + oObject = GetNextFactionMember(oPC, TRUE); + + } + + + +} + + diff --git a/_content/prc8_battle_top/jw_inc_spells.nss b/_content/prc8_battle_top/jw_inc_spells.nss new file mode 100644 index 0000000..8e2c0d4 --- /dev/null +++ b/_content/prc8_battle_top/jw_inc_spells.nss @@ -0,0 +1,56 @@ +//:: jw_inc_spells.nss +#include "x0_i0_transform" + +// Trigger the nearest object with matching tag to convert. +// This should be called by the trigger object! It ASSUMES +// that GetEnteringObject() will work for OBJECT_SELF here. +void JWTriggerObjectTransform(string sCreature, int nVisualEffect=VFX_NONE, string sTag="tag_of_trigger"); + +int ScrollResist(object oCaster, object oTarget, float fDelay = 0.0); + +int ScrollResist(object oCaster, object oTarget, float fDelay = 0.0) +{ + + oCaster=GetObjectByTag("PR_Zacharias"); + if (fDelay > 0.5) + { + fDelay = fDelay - 0.1; + } + int nResist = ResistSpell(oCaster, oTarget); + effect eSR = EffectVisualEffect(VFX_IMP_MAGIC_RESISTANCE_USE); + effect eGlobe = EffectVisualEffect(VFX_IMP_GLOBE_USE); + effect eMantle = EffectVisualEffect(VFX_IMP_SPELL_MANTLE_USE); + if(nResist == 1) //Spell Resistance + { + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eSR, oTarget)); + } + else if(nResist == 2) //Globe + { + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eGlobe, oTarget)); + } + else if(nResist == 3) //Spell Mantle + { + if (fDelay > 0.5) + { + fDelay = fDelay - 0.1; + } + DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eMantle, oTarget)); + } + return nResist; +} + +// Trigger the nearest object with matching tag to convert. +// This should be called by the trigger object! It ASSUMES +// that GetEnteringObject() will work for OBJECT_SELF here. +void JWTriggerObjectTransform(string sCreature, int nVisualEffect=VFX_NONE, string sTag="tag_of_trigger") +{ + object oPC = GetEnteringObject(); + if ( ! GetIsPC(oPC) ) { return; } + if (sTag=="tag_of_trigger") + { + sTag=GetTag(OBJECT_SELF); + } + object oOrigin = GetNearestObjectByTag(sTag); + TransformObjectToCreature(oOrigin, sCreature, nVisualEffect); + //DestroyObject(OBJECT_SELF, 5.0); +} \ No newline at end of file diff --git a/_content/prc8_battle_top/nw_s1_aurablnda.ncs b/_content/prc8_battle_top/nw_s1_aurablnda.ncs index 3ce701c..d7fea17 100644 Binary files a/_content/prc8_battle_top/nw_s1_aurablnda.ncs and b/_content/prc8_battle_top/nw_s1_aurablnda.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_auracoldc.ncs b/_content/prc8_battle_top/nw_s1_auracoldc.ncs index 3469001..9095d1b 100644 Binary files a/_content/prc8_battle_top/nw_s1_auracoldc.ncs and b/_content/prc8_battle_top/nw_s1_auracoldc.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_auraelecc.ncs b/_content/prc8_battle_top/nw_s1_auraelecc.ncs index 8266394..356de14 100644 Binary files a/_content/prc8_battle_top/nw_s1_auraelecc.ncs and b/_content/prc8_battle_top/nw_s1_auraelecc.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_aurafirec.ncs b/_content/prc8_battle_top/nw_s1_aurafirec.ncs index 677eb12..1427564 100644 Binary files a/_content/prc8_battle_top/nw_s1_aurafirec.ncs and b/_content/prc8_battle_top/nw_s1_aurafirec.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_auramenca.ncs b/_content/prc8_battle_top/nw_s1_auramenca.ncs index c5bc4f7..b288117 100644 Binary files a/_content/prc8_battle_top/nw_s1_auramenca.ncs and b/_content/prc8_battle_top/nw_s1_auramenca.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_auraprota.ncs b/_content/prc8_battle_top/nw_s1_auraprota.ncs index 2b05d97..f3dca3a 100644 Binary files a/_content/prc8_battle_top/nw_s1_auraprota.ncs and b/_content/prc8_battle_top/nw_s1_auraprota.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_aurastuna.ncs b/_content/prc8_battle_top/nw_s1_aurastuna.ncs index e14e18a..09bad87 100644 Binary files a/_content/prc8_battle_top/nw_s1_aurastuna.ncs and b/_content/prc8_battle_top/nw_s1_aurastuna.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_auraunata.ncs b/_content/prc8_battle_top/nw_s1_auraunata.ncs index 0a25d40..a7d799e 100644 Binary files a/_content/prc8_battle_top/nw_s1_auraunata.ncs and b/_content/prc8_battle_top/nw_s1_auraunata.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_aurauneaa.ncs b/_content/prc8_battle_top/nw_s1_aurauneaa.ncs index cc317fa..cb01a15 100644 Binary files a/_content/prc8_battle_top/nw_s1_aurauneaa.ncs and b/_content/prc8_battle_top/nw_s1_aurauneaa.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_bltacid.ncs b/_content/prc8_battle_top/nw_s1_bltacid.ncs index 3e962c9..304305d 100644 Binary files a/_content/prc8_battle_top/nw_s1_bltacid.ncs and b/_content/prc8_battle_top/nw_s1_bltacid.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_bltcharm.ncs b/_content/prc8_battle_top/nw_s1_bltcharm.ncs index 11b0169..e416a24 100644 Binary files a/_content/prc8_battle_top/nw_s1_bltcharm.ncs and b/_content/prc8_battle_top/nw_s1_bltcharm.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_bltchrdr.ncs b/_content/prc8_battle_top/nw_s1_bltchrdr.ncs index 43d48de..af4530d 100644 Binary files a/_content/prc8_battle_top/nw_s1_bltchrdr.ncs and b/_content/prc8_battle_top/nw_s1_bltchrdr.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_bltcold.ncs b/_content/prc8_battle_top/nw_s1_bltcold.ncs index f222e58..83ad243 100644 Binary files a/_content/prc8_battle_top/nw_s1_bltcold.ncs and b/_content/prc8_battle_top/nw_s1_bltcold.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_bltcondr.ncs b/_content/prc8_battle_top/nw_s1_bltcondr.ncs index 07b05e7..ec4dc39 100644 Binary files a/_content/prc8_battle_top/nw_s1_bltcondr.ncs and b/_content/prc8_battle_top/nw_s1_bltcondr.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_bltconf.ncs b/_content/prc8_battle_top/nw_s1_bltconf.ncs index de11571..42dd491 100644 Binary files a/_content/prc8_battle_top/nw_s1_bltconf.ncs and b/_content/prc8_battle_top/nw_s1_bltconf.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_bltdaze.ncs b/_content/prc8_battle_top/nw_s1_bltdaze.ncs index 0cc43fc..4d5daf8 100644 Binary files a/_content/prc8_battle_top/nw_s1_bltdaze.ncs and b/_content/prc8_battle_top/nw_s1_bltdaze.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_bltdeath.ncs b/_content/prc8_battle_top/nw_s1_bltdeath.ncs index 3771b98..efc4ad9 100644 Binary files a/_content/prc8_battle_top/nw_s1_bltdeath.ncs and b/_content/prc8_battle_top/nw_s1_bltdeath.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_bltdexdr.ncs b/_content/prc8_battle_top/nw_s1_bltdexdr.ncs index 6d78a3b..866432b 100644 Binary files a/_content/prc8_battle_top/nw_s1_bltdexdr.ncs and b/_content/prc8_battle_top/nw_s1_bltdexdr.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_bltdisese.ncs b/_content/prc8_battle_top/nw_s1_bltdisese.ncs index c043bbb..bdcfd3d 100644 Binary files a/_content/prc8_battle_top/nw_s1_bltdisese.ncs and b/_content/prc8_battle_top/nw_s1_bltdisese.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_bltdomn.ncs b/_content/prc8_battle_top/nw_s1_bltdomn.ncs index 7fdb6f7..8e44e3c 100644 Binary files a/_content/prc8_battle_top/nw_s1_bltdomn.ncs and b/_content/prc8_battle_top/nw_s1_bltdomn.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_bltfire.ncs b/_content/prc8_battle_top/nw_s1_bltfire.ncs index 79ab3a1..b771a4e 100644 Binary files a/_content/prc8_battle_top/nw_s1_bltfire.ncs and b/_content/prc8_battle_top/nw_s1_bltfire.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_bltintdr.ncs b/_content/prc8_battle_top/nw_s1_bltintdr.ncs index 4225b85..53066c5 100644 Binary files a/_content/prc8_battle_top/nw_s1_bltintdr.ncs and b/_content/prc8_battle_top/nw_s1_bltintdr.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_bltknckd.ncs b/_content/prc8_battle_top/nw_s1_bltknckd.ncs index df35d8d..f0acd66 100644 Binary files a/_content/prc8_battle_top/nw_s1_bltknckd.ncs and b/_content/prc8_battle_top/nw_s1_bltknckd.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_bltlightn.ncs b/_content/prc8_battle_top/nw_s1_bltlightn.ncs index 20c04c4..fe5340f 100644 Binary files a/_content/prc8_battle_top/nw_s1_bltlightn.ncs and b/_content/prc8_battle_top/nw_s1_bltlightn.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_bltlvldr.ncs b/_content/prc8_battle_top/nw_s1_bltlvldr.ncs index 48d8e8a..7c97684 100644 Binary files a/_content/prc8_battle_top/nw_s1_bltlvldr.ncs and b/_content/prc8_battle_top/nw_s1_bltlvldr.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_bltparal.ncs b/_content/prc8_battle_top/nw_s1_bltparal.ncs index 82ac223..0ff353b 100644 Binary files a/_content/prc8_battle_top/nw_s1_bltparal.ncs and b/_content/prc8_battle_top/nw_s1_bltparal.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_bltpoison.ncs b/_content/prc8_battle_top/nw_s1_bltpoison.ncs index 1f43623..0f43cca 100644 Binary files a/_content/prc8_battle_top/nw_s1_bltpoison.ncs and b/_content/prc8_battle_top/nw_s1_bltpoison.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_bltshards.ncs b/_content/prc8_battle_top/nw_s1_bltshards.ncs index 4077864..7eeb5d6 100644 Binary files a/_content/prc8_battle_top/nw_s1_bltshards.ncs and b/_content/prc8_battle_top/nw_s1_bltshards.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_bltslow.ncs b/_content/prc8_battle_top/nw_s1_bltslow.ncs index cb90b55..c607881 100644 Binary files a/_content/prc8_battle_top/nw_s1_bltslow.ncs and b/_content/prc8_battle_top/nw_s1_bltslow.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_bltstrdr.ncs b/_content/prc8_battle_top/nw_s1_bltstrdr.ncs index 437cccc..97a8e96 100644 Binary files a/_content/prc8_battle_top/nw_s1_bltstrdr.ncs and b/_content/prc8_battle_top/nw_s1_bltstrdr.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_bltstun.ncs b/_content/prc8_battle_top/nw_s1_bltstun.ncs index 544bc7c..8d440bb 100644 Binary files a/_content/prc8_battle_top/nw_s1_bltstun.ncs and b/_content/prc8_battle_top/nw_s1_bltstun.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_bltweb.ncs b/_content/prc8_battle_top/nw_s1_bltweb.ncs index d8a0169..c212360 100644 Binary files a/_content/prc8_battle_top/nw_s1_bltweb.ncs and b/_content/prc8_battle_top/nw_s1_bltweb.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_bltwisdr.ncs b/_content/prc8_battle_top/nw_s1_bltwisdr.ncs index 259e654..16f19c9 100644 Binary files a/_content/prc8_battle_top/nw_s1_bltwisdr.ncs and b/_content/prc8_battle_top/nw_s1_bltwisdr.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_coneacid.ncs b/_content/prc8_battle_top/nw_s1_coneacid.ncs index 0d8a148..f4c10e7 100644 Binary files a/_content/prc8_battle_top/nw_s1_coneacid.ncs and b/_content/prc8_battle_top/nw_s1_coneacid.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_conecold.ncs b/_content/prc8_battle_top/nw_s1_conecold.ncs index e406498..31dc4c1 100644 Binary files a/_content/prc8_battle_top/nw_s1_conecold.ncs and b/_content/prc8_battle_top/nw_s1_conecold.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_conedisea.ncs b/_content/prc8_battle_top/nw_s1_conedisea.ncs index 602fa6d..bb8d165 100644 Binary files a/_content/prc8_battle_top/nw_s1_conedisea.ncs and b/_content/prc8_battle_top/nw_s1_conedisea.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_coneelec.ncs b/_content/prc8_battle_top/nw_s1_coneelec.ncs index 2cf29ff..1f040e0 100644 Binary files a/_content/prc8_battle_top/nw_s1_coneelec.ncs and b/_content/prc8_battle_top/nw_s1_coneelec.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_conesonic.ncs b/_content/prc8_battle_top/nw_s1_conesonic.ncs index 7a1b9f8..81a3b62 100644 Binary files a/_content/prc8_battle_top/nw_s1_conesonic.ncs and b/_content/prc8_battle_top/nw_s1_conesonic.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_dragcold.ncs b/_content/prc8_battle_top/nw_s1_dragcold.ncs index 4c2c263..7119840 100644 Binary files a/_content/prc8_battle_top/nw_s1_dragcold.ncs and b/_content/prc8_battle_top/nw_s1_dragcold.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_dragcold.nss b/_content/prc8_battle_top/nw_s1_dragcold.nss index 39c5735..361e116 100644 --- a/_content/prc8_battle_top/nw_s1_dragcold.nss +++ b/_content/prc8_battle_top/nw_s1_dragcold.nss @@ -48,7 +48,7 @@ void main() nDamage = d6(14); nDC = 36; - PlayDragonBattleCry(); + PRCPlayDragonBattleCry(); //Get first target in spell area oTarget = GetFirstObjectInShape(SHAPE_SPELLCONE, 14.0, GetSpellTargetLocation(), TRUE); diff --git a/_content/prc8_battle_top/nw_s1_dragfear.ncs b/_content/prc8_battle_top/nw_s1_dragfear.ncs index 3ec11e1..4c69c55 100644 Binary files a/_content/prc8_battle_top/nw_s1_dragfear.ncs and b/_content/prc8_battle_top/nw_s1_dragfear.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_dragfeara.ncs b/_content/prc8_battle_top/nw_s1_dragfeara.ncs index ee3be3a..bda5d89 100644 Binary files a/_content/prc8_battle_top/nw_s1_dragfeara.ncs and b/_content/prc8_battle_top/nw_s1_dragfeara.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_feroc3.ncs b/_content/prc8_battle_top/nw_s1_feroc3.ncs index 25681cd..dfb32e0 100644 Binary files a/_content/prc8_battle_top/nw_s1_feroc3.ncs and b/_content/prc8_battle_top/nw_s1_feroc3.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_gazechaos.ncs b/_content/prc8_battle_top/nw_s1_gazechaos.ncs index 9ec9555..108e08a 100644 Binary files a/_content/prc8_battle_top/nw_s1_gazechaos.ncs and b/_content/prc8_battle_top/nw_s1_gazechaos.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_gazecharm.ncs b/_content/prc8_battle_top/nw_s1_gazecharm.ncs index 9c41cc6..846a717 100644 Binary files a/_content/prc8_battle_top/nw_s1_gazecharm.ncs and b/_content/prc8_battle_top/nw_s1_gazecharm.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_gazeconfu.ncs b/_content/prc8_battle_top/nw_s1_gazeconfu.ncs index 7d2a31d..23bc0cc 100644 Binary files a/_content/prc8_battle_top/nw_s1_gazeconfu.ncs and b/_content/prc8_battle_top/nw_s1_gazeconfu.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_gazedaze.ncs b/_content/prc8_battle_top/nw_s1_gazedaze.ncs index 1858a8d..4bda75f 100644 Binary files a/_content/prc8_battle_top/nw_s1_gazedaze.ncs and b/_content/prc8_battle_top/nw_s1_gazedaze.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_gazedeath.ncs b/_content/prc8_battle_top/nw_s1_gazedeath.ncs index 9e6ed7f..7095671 100644 Binary files a/_content/prc8_battle_top/nw_s1_gazedeath.ncs and b/_content/prc8_battle_top/nw_s1_gazedeath.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_gazedomn.ncs b/_content/prc8_battle_top/nw_s1_gazedomn.ncs index 718f61b..b96b86e 100644 Binary files a/_content/prc8_battle_top/nw_s1_gazedomn.ncs and b/_content/prc8_battle_top/nw_s1_gazedomn.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_gazedoom.ncs b/_content/prc8_battle_top/nw_s1_gazedoom.ncs index 3cb108c..3aeff35 100644 Binary files a/_content/prc8_battle_top/nw_s1_gazedoom.ncs and b/_content/prc8_battle_top/nw_s1_gazedoom.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_gazeevil.ncs b/_content/prc8_battle_top/nw_s1_gazeevil.ncs index 015eb72..052c555 100644 Binary files a/_content/prc8_battle_top/nw_s1_gazeevil.ncs and b/_content/prc8_battle_top/nw_s1_gazeevil.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_gazefear.ncs b/_content/prc8_battle_top/nw_s1_gazefear.ncs index 1851b41..c586ed8 100644 Binary files a/_content/prc8_battle_top/nw_s1_gazefear.ncs and b/_content/prc8_battle_top/nw_s1_gazefear.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_gazegood.ncs b/_content/prc8_battle_top/nw_s1_gazegood.ncs index 7180d53..ded0a18 100644 Binary files a/_content/prc8_battle_top/nw_s1_gazegood.ncs and b/_content/prc8_battle_top/nw_s1_gazegood.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_gazelaw.ncs b/_content/prc8_battle_top/nw_s1_gazelaw.ncs index 069dd14..9b84697 100644 Binary files a/_content/prc8_battle_top/nw_s1_gazelaw.ncs and b/_content/prc8_battle_top/nw_s1_gazelaw.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_gazestun.ncs b/_content/prc8_battle_top/nw_s1_gazestun.ncs index 89dbe90..5d52b92 100644 Binary files a/_content/prc8_battle_top/nw_s1_gazestun.ncs and b/_content/prc8_battle_top/nw_s1_gazestun.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_golemgas.ncs b/_content/prc8_battle_top/nw_s1_golemgas.ncs index 0c179b3..07a7c09 100644 Binary files a/_content/prc8_battle_top/nw_s1_golemgas.ncs and b/_content/prc8_battle_top/nw_s1_golemgas.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_hndbreath.ncs b/_content/prc8_battle_top/nw_s1_hndbreath.ncs index 5575c5d..27f9580 100644 Binary files a/_content/prc8_battle_top/nw_s1_hndbreath.ncs and b/_content/prc8_battle_top/nw_s1_hndbreath.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_howlconf.ncs b/_content/prc8_battle_top/nw_s1_howlconf.ncs index 82fc193..bc00cd6 100644 Binary files a/_content/prc8_battle_top/nw_s1_howlconf.ncs and b/_content/prc8_battle_top/nw_s1_howlconf.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_howldaze.ncs b/_content/prc8_battle_top/nw_s1_howldaze.ncs index c01526a..08f54cf 100644 Binary files a/_content/prc8_battle_top/nw_s1_howldaze.ncs and b/_content/prc8_battle_top/nw_s1_howldaze.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_howldeath.ncs b/_content/prc8_battle_top/nw_s1_howldeath.ncs index 7193f10..ece05e7 100644 Binary files a/_content/prc8_battle_top/nw_s1_howldeath.ncs and b/_content/prc8_battle_top/nw_s1_howldeath.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_howlfear.ncs b/_content/prc8_battle_top/nw_s1_howlfear.ncs index 1047066..34e4eea 100644 Binary files a/_content/prc8_battle_top/nw_s1_howlfear.ncs and b/_content/prc8_battle_top/nw_s1_howlfear.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_howlparal.ncs b/_content/prc8_battle_top/nw_s1_howlparal.ncs index ef551af..a2f45d9 100644 Binary files a/_content/prc8_battle_top/nw_s1_howlparal.ncs and b/_content/prc8_battle_top/nw_s1_howlparal.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_howlsonic.ncs b/_content/prc8_battle_top/nw_s1_howlsonic.ncs index 21f1f98..984b373 100644 Binary files a/_content/prc8_battle_top/nw_s1_howlsonic.ncs and b/_content/prc8_battle_top/nw_s1_howlsonic.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_howlstun.ncs b/_content/prc8_battle_top/nw_s1_howlstun.ncs index c5e2483..fc60a1a 100644 Binary files a/_content/prc8_battle_top/nw_s1_howlstun.ncs and b/_content/prc8_battle_top/nw_s1_howlstun.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_krenscare.ncs b/_content/prc8_battle_top/nw_s1_krenscare.ncs index 5947946..ec531b1 100644 Binary files a/_content/prc8_battle_top/nw_s1_krenscare.ncs and b/_content/prc8_battle_top/nw_s1_krenscare.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_mephsalt.ncs b/_content/prc8_battle_top/nw_s1_mephsalt.ncs index e09ff1e..9607c77 100644 Binary files a/_content/prc8_battle_top/nw_s1_mephsalt.ncs and b/_content/prc8_battle_top/nw_s1_mephsalt.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_mephsteam.ncs b/_content/prc8_battle_top/nw_s1_mephsteam.ncs index 66148cf..303cc9f 100644 Binary files a/_content/prc8_battle_top/nw_s1_mephsteam.ncs and b/_content/prc8_battle_top/nw_s1_mephsteam.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_mumundead.ncs b/_content/prc8_battle_top/nw_s1_mumundead.ncs index d9b971b..0069f64 100644 Binary files a/_content/prc8_battle_top/nw_s1_mumundead.ncs and b/_content/prc8_battle_top/nw_s1_mumundead.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_pulschrdr.ncs b/_content/prc8_battle_top/nw_s1_pulschrdr.ncs index 43cf80c..0021305 100644 Binary files a/_content/prc8_battle_top/nw_s1_pulschrdr.ncs and b/_content/prc8_battle_top/nw_s1_pulschrdr.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_pulscold.ncs b/_content/prc8_battle_top/nw_s1_pulscold.ncs index 6922703..c0b1e0c 100644 Binary files a/_content/prc8_battle_top/nw_s1_pulscold.ncs and b/_content/prc8_battle_top/nw_s1_pulscold.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_pulscondr.ncs b/_content/prc8_battle_top/nw_s1_pulscondr.ncs index 2d71927..b8060c7 100644 Binary files a/_content/prc8_battle_top/nw_s1_pulscondr.ncs and b/_content/prc8_battle_top/nw_s1_pulscondr.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_pulsdeath.ncs b/_content/prc8_battle_top/nw_s1_pulsdeath.ncs index 72e4f42..59c2563 100644 Binary files a/_content/prc8_battle_top/nw_s1_pulsdeath.ncs and b/_content/prc8_battle_top/nw_s1_pulsdeath.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_pulsdexdr.ncs b/_content/prc8_battle_top/nw_s1_pulsdexdr.ncs index 78c16eb..13b6998 100644 Binary files a/_content/prc8_battle_top/nw_s1_pulsdexdr.ncs and b/_content/prc8_battle_top/nw_s1_pulsdexdr.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_pulsdis.ncs b/_content/prc8_battle_top/nw_s1_pulsdis.ncs index 6fad7e9..7c9a44a 100644 Binary files a/_content/prc8_battle_top/nw_s1_pulsdis.ncs and b/_content/prc8_battle_top/nw_s1_pulsdis.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_pulsdrwn.ncs b/_content/prc8_battle_top/nw_s1_pulsdrwn.ncs index 36c2cd9..0be34e6 100644 Binary files a/_content/prc8_battle_top/nw_s1_pulsdrwn.ncs and b/_content/prc8_battle_top/nw_s1_pulsdrwn.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_pulselec.ncs b/_content/prc8_battle_top/nw_s1_pulselec.ncs index 0254a54..f04432c 100644 Binary files a/_content/prc8_battle_top/nw_s1_pulselec.ncs and b/_content/prc8_battle_top/nw_s1_pulselec.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_pulsfire.ncs b/_content/prc8_battle_top/nw_s1_pulsfire.ncs index 9e80ba8..e7d5698 100644 Binary files a/_content/prc8_battle_top/nw_s1_pulsfire.ncs and b/_content/prc8_battle_top/nw_s1_pulsfire.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_pulsholy.ncs b/_content/prc8_battle_top/nw_s1_pulsholy.ncs index ea57455..350346d 100644 Binary files a/_content/prc8_battle_top/nw_s1_pulsholy.ncs and b/_content/prc8_battle_top/nw_s1_pulsholy.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_pulsintdr.ncs b/_content/prc8_battle_top/nw_s1_pulsintdr.ncs index eb517ff..276bad6 100644 Binary files a/_content/prc8_battle_top/nw_s1_pulsintdr.ncs and b/_content/prc8_battle_top/nw_s1_pulsintdr.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_pulslvldr.ncs b/_content/prc8_battle_top/nw_s1_pulslvldr.ncs index 97e3e6d..dc72838 100644 Binary files a/_content/prc8_battle_top/nw_s1_pulslvldr.ncs and b/_content/prc8_battle_top/nw_s1_pulslvldr.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_pulsneg.ncs b/_content/prc8_battle_top/nw_s1_pulsneg.ncs index f5169b8..99271b2 100644 Binary files a/_content/prc8_battle_top/nw_s1_pulsneg.ncs and b/_content/prc8_battle_top/nw_s1_pulsneg.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_pulspois.ncs b/_content/prc8_battle_top/nw_s1_pulspois.ncs index d0cd73b..d1d30e6 100644 Binary files a/_content/prc8_battle_top/nw_s1_pulspois.ncs and b/_content/prc8_battle_top/nw_s1_pulspois.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_pulsspore.ncs b/_content/prc8_battle_top/nw_s1_pulsspore.ncs index 9cf5ee2..802f7ee 100644 Binary files a/_content/prc8_battle_top/nw_s1_pulsspore.ncs and b/_content/prc8_battle_top/nw_s1_pulsspore.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_pulsstrdr.ncs b/_content/prc8_battle_top/nw_s1_pulsstrdr.ncs index f8209b9..a44aa7c 100644 Binary files a/_content/prc8_battle_top/nw_s1_pulsstrdr.ncs and b/_content/prc8_battle_top/nw_s1_pulsstrdr.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_pulswind.ncs b/_content/prc8_battle_top/nw_s1_pulswind.ncs index b448f18..9e928ae 100644 Binary files a/_content/prc8_battle_top/nw_s1_pulswind.ncs and b/_content/prc8_battle_top/nw_s1_pulswind.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_pulswisdr.ncs b/_content/prc8_battle_top/nw_s1_pulswisdr.ncs index a1ca7df..ed44e23 100644 Binary files a/_content/prc8_battle_top/nw_s1_pulswisdr.ncs and b/_content/prc8_battle_top/nw_s1_pulswisdr.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_smokeclaw.ncs b/_content/prc8_battle_top/nw_s1_smokeclaw.ncs index a42ce19..278aa5a 100644 Binary files a/_content/prc8_battle_top/nw_s1_smokeclaw.ncs and b/_content/prc8_battle_top/nw_s1_smokeclaw.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_stink_a.ncs b/_content/prc8_battle_top/nw_s1_stink_a.ncs index fb4c5cd..c8653b5 100644 Binary files a/_content/prc8_battle_top/nw_s1_stink_a.ncs and b/_content/prc8_battle_top/nw_s1_stink_a.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_tyrantfga.ncs b/_content/prc8_battle_top/nw_s1_tyrantfga.ncs index 50fb180..4dbbc9d 100644 Binary files a/_content/prc8_battle_top/nw_s1_tyrantfga.ncs and b/_content/prc8_battle_top/nw_s1_tyrantfga.ncs differ diff --git a/_content/prc8_battle_top/nw_s1_tyrantfog.ncs b/_content/prc8_battle_top/nw_s1_tyrantfog.ncs index e0ac8bf..795fc9d 100644 Binary files a/_content/prc8_battle_top/nw_s1_tyrantfog.ncs and b/_content/prc8_battle_top/nw_s1_tyrantfog.ncs differ diff --git a/_content/prc8_battle_top/nw_s2_bardsong.ncs b/_content/prc8_battle_top/nw_s2_bardsong.ncs new file mode 100644 index 0000000..3cace34 Binary files /dev/null and b/_content/prc8_battle_top/nw_s2_bardsong.ncs differ diff --git a/_content/prc8_battle_top/nw_s2_divprot.ncs b/_content/prc8_battle_top/nw_s2_divprot.ncs index da38ca3..a9b2075 100644 Binary files a/_content/prc8_battle_top/nw_s2_divprot.ncs and b/_content/prc8_battle_top/nw_s2_divprot.ncs differ diff --git a/_content/prc8_battle_top/nw_s2_wildshape.ncs b/_content/prc8_battle_top/nw_s2_wildshape.ncs index d4bee1d..b54b994 100644 Binary files a/_content/prc8_battle_top/nw_s2_wildshape.ncs and b/_content/prc8_battle_top/nw_s2_wildshape.ncs differ diff --git a/_content/prc8_battle_top/nw_s3_balordeth.ncs b/_content/prc8_battle_top/nw_s3_balordeth.ncs index 51e2f3e..c09f906 100644 Binary files a/_content/prc8_battle_top/nw_s3_balordeth.ncs and b/_content/prc8_battle_top/nw_s3_balordeth.ncs differ diff --git a/_content/prc8_battle_top/wm_include.nss b/_content/prc8_battle_top/wm_include.nss new file mode 100644 index 0000000..58dcb26 --- /dev/null +++ b/_content/prc8_battle_top/wm_include.nss @@ -0,0 +1,405 @@ +// WILD MAGIC SYSTEM by Lex +// Adapted to HCR system by Archaegeo +#include "prc_inc_spells" + +// Set MATERCOMP to 0 to not use material components for those spells that need. +object oMod=GetModule(); + +int MATERCOMP = 1; + +// Indicates magical normality +int WM_NORMAL = 0; +// Indicates lack of magical energy +int WM_NULL = 1; +// Indicates erratic magical energy +int WM_WILD = 2; + +// Checks to see whether the spell script should not continue normally. +// Use: if (WildMagicOverride()) { return; } +// The function should be able to figure out the three parameters on its own. +// If not, or if you are using it in a non-spell script, provide up to three +// objects involved in the check. Leave any unused parameters as OBJECT_INVALID +// to have them autodetect, or use the same object more than once. +// Should work in item activation scripts! +int WildMagicOverride(object oArea = OBJECT_INVALID, + object oCaster = OBJECT_INVALID, + object oTarget = OBJECT_INVALID); + +// Similar to WildMagicOverride, but does not include Wild effects. Mostly used +// in situations where wild effects would be inappropriate, like in an AOE's +// heartbeat and OnEnter scripts. +int NullMagicOverride(object oArea = OBJECT_INVALID, + object oCaster = OBJECT_INVALID, + object oTarget = OBJECT_INVALID); + +// Modifies the magic state of oTarget. nState is one of +// WM_NORMAL, WM_NULL, WM_WILD. Wild and Null magic stack, allowing +// you to safely add and remove these effects without interfering with +// other things that deal with these states. Modifying WM_NORMAL positively +// will decrease the wild and null effects that much, while modifying it +// negatively will remove all wild and null effects. +void SetWMState(object oTarget, int nState, int nAmount=1); + +// Returns WM_NORMAL, WM_NULL, or WM_WILD. +// If the object is both wild and null, WM_NULL is returned. +int GetWMState(object oTarget); + +// Creates a Wild Magic area of effect. Creatures in the AOE +// are considered Wild until they leave it. +// EXPERIMENTAL. +// Problems: Placeables don't seem to be affected by this, +// so spells can be cast into the AOE as long as they target +// either a placeable or a location. +effect EffectWildMagicAOE(); + +// Creates a Null Magic area of effect. Creatures in the AOE +// are considered null until they leave it. +// EXPERIMENTAL. +// Problems: Placeables don't seem to be affected by this, +// so spells can be cast into the AOE as long as they target +// either a placeable or a location. +effect EffectNullMagicAOE(); + +// Removes all magical effects on a target. +void RemoveMagicalEffects (object oTarget); + +// Used by WildMagicOverride() +int GoWild(object oCaster, object oTarget, location lLocation); + +// Used by GoWild() +void SpecialCast (int nSpell, object oTarget, location lLocation, int nCasterLevel, int nMetaMagic); + +// A creature or placeable nearby oTarget is randomly +// chosen and returned. May return oTarget, especially +// if there are few objects nearby. +object GetRandomNearby(object oTarget=OBJECT_SELF); + +// Used by GoWild() +void RandomCast(); + +// Checks for the old WM_STATE variable and makes the necessary +// adjustments. Called by Get and SetWMState, probably no use +// for it elsewhere. +void DoWMUpdate(object oTarget) +{ + int nState = GetLocalInt(oTarget, "WM_STATE"); + DeleteLocalInt(oTarget, "WM_STATE"); + if (!nState) return; + SetWMState(oTarget, nState); +} + +void SetWMState(object oTarget, int nState, int nAmount=1) +{ + DoWMUpdate(oTarget); + if (nState < 0 || nState > 2) nState = 0; + if (nState == WM_NULL) + { + int x = GetLocalInt(oTarget, "MAGICSTATE_NULL") + nAmount; + if (x < 0) x = 0; + SetLocalInt(oTarget, "MAGICSTATE_NULL", x); + int nType = GetObjectType(oTarget); + // Dispel magical effects on the target + if (x > 0) RemoveMagicalEffects(oTarget); + } + else if (nState == WM_WILD) + { + int x = GetLocalInt(oTarget, "MAGICSTATE_WILD") + nAmount; + if (x < 0) x = 0; + SetLocalInt(oTarget, "MAGICSTATE_WILD", x); + } + else if (nState = WM_NORMAL) + { + if (nAmount > 0) { + SetWMState(oTarget, WM_NULL, -nAmount); + SetWMState(oTarget, WM_WILD, -nAmount); + } + else + { + SetLocalInt(oTarget, "MAGICSTATE_NULL", 0); + SetLocalInt(oTarget, "MAGICSTATE_WILD", 0); + } + } +} + +int GetWMState(object oTarget) +{ + DoWMUpdate(oTarget); + int nNull = GetLocalInt(oTarget, "MAGICSTATE_NULL"); + if (nNull > 0) return WM_NULL; + int nWild = GetLocalInt(oTarget, "MAGICSTATE_WILD"); + if (nWild > 0) return WM_WILD; + return WM_NORMAL; +} + +int NullMagicOverride(object oArea = OBJECT_INVALID, + object oCaster = OBJECT_INVALID, + object oTarget = OBJECT_INVALID) +{ + int nModuleState = GetWMState(GetModule()); + object oItem = GetItemActivated(); + if (oItem == OBJECT_INVALID) oItem = PRCGetSpellCastItem(); + int nItemState = GetWMState(oItem); + location lTargetLocation; + if (oCaster == OBJECT_INVALID) + { + oCaster = GetLastSpellCaster(); + lTargetLocation = PRCGetSpellTargetLocation(); + } + if (oCaster == OBJECT_INVALID) { + oCaster = GetItemActivator(); + lTargetLocation = GetItemActivatedTargetLocation(); + } + if (oCaster == OBJECT_INVALID) + { + oCaster = OBJECT_SELF; + lTargetLocation = GetLocation(OBJECT_SELF); + } + if (oTarget == OBJECT_INVALID) oTarget = PRCGetSpellTargetObject(); + if (oTarget == OBJECT_INVALID) oTarget = GetItemActivatedTarget(); + if (oTarget == OBJECT_INVALID) oTarget = oCaster; + if (oArea == OBJECT_INVALID) oArea = GetArea(oCaster); + if (oArea == OBJECT_INVALID) oArea = GetArea(oTarget); + int nCasterState = GetWMState(oCaster); + int nTargetState = GetWMState(oTarget); + int nAreaState = GetWMState(oArea); + + if (nModuleState == 1 || + nItemState == 1 || + nCasterState == 1 || + nTargetState == 1 || + nAreaState == 1) + { + return 1; + } + if (oTarget == oCaster) + { + object oInvis = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lTargetLocation); + if (GetWMState(oInvis) == WM_NULL) + { + DestroyObject(oInvis); + return 1; + } + DestroyObject(oInvis); + } + + return 0; +} + +int WildMagicOverride(object oArea = OBJECT_INVALID, + object oCaster = OBJECT_INVALID, + object oTarget = OBJECT_INVALID) +{ + int nModuleState = GetWMState(GetModule()); + object oItem = GetItemActivated(); + if (oItem == OBJECT_INVALID) oItem = PRCGetSpellCastItem(); + int nItemState = GetWMState(oItem); + location lTargetLocation = PRCGetSpellTargetLocation(); + if (oCaster == OBJECT_INVALID) + { + oCaster = GetLastSpellCaster(); + lTargetLocation = PRCGetSpellTargetLocation(); + } + if (oCaster == OBJECT_INVALID) { + oCaster = GetItemActivator(); + lTargetLocation = GetItemActivatedTargetLocation(); + } + if (oCaster == OBJECT_INVALID) + { + oCaster = OBJECT_SELF; + lTargetLocation = GetLocation(OBJECT_SELF); + } + if (oTarget == OBJECT_INVALID) oTarget = PRCGetSpellTargetObject(); + if (oTarget == OBJECT_INVALID) oTarget = GetItemActivatedTarget(); + if (oTarget == OBJECT_INVALID) oTarget = oCaster; + if (oArea == OBJECT_INVALID) oArea = GetArea(oCaster); + if (oArea == OBJECT_INVALID) oArea = GetArea(oTarget); + + // Null magic code moved + int bIsNull = NullMagicOverride(oArea, oCaster, oTarget); + if (bIsNull) { return bIsNull; } + + int nCasterState = GetWMState(oCaster); + int nTargetState = GetWMState(oTarget); + int nAreaState = GetWMState(oArea); + + if (nModuleState == 2 || + nItemState == 2 || + nCasterState == 2 || + nTargetState == 2 || + nAreaState == 2) + { + return GoWild(oCaster, oTarget, lTargetLocation); + } + + if (oTarget == oCaster) { + object oInvis = CreateObject(OBJECT_TYPE_PLACEABLE, "plc_invisobj", lTargetLocation); + if (GetWMState(oInvis) == WM_WILD) + { + DestroyObject(oInvis); + return GoWild(oCaster, oTarget, lTargetLocation); + } + DestroyObject(oInvis); + } + + return 0; +} + +int GoWild(object oCaster, object oTarget, location lLocation) +{ + int nCasterLevel = PRCGetCasterLevel(oCaster); + if (GetLocalInt(OBJECT_SELF, "WILDCASTING")) + { + DeleteLocalInt(OBJECT_SELF, "WILDCASTING"); + return 0; + } + + int nSpell = PRCGetSpellId(); + int nMetaMagic = PRCGetMetaMagicFeat(); + + int nRoll = d100(); + + if (nRoll == 100) { + object oNewTarget = GetRandomNearby(oTarget); + float fDuration = IntToFloat(d20(2)*6); + int nState = d2(); + ApplyEffectToObject(DURATION_TYPE_TEMPORARY, + EffectVisualEffect(VFX_IMP_HEAD_ODD), + oNewTarget, fDuration); + SetWMState(oNewTarget, nState); + DelayCommand(fDuration, SetWMState(oNewTarget, nState, -1)); + return 0; + } + else if (nRoll >= 96) + { + AssignCommand(oCaster, SpecialCast(nSpell, oTarget, + lLocation, nCasterLevel, + METAMAGIC_MAXIMIZE)); + return 1; + } + else if (nRoll >= 86) + { + AssignCommand(oCaster, SpecialCast(nSpell, oTarget, + lLocation, nCasterLevel, + METAMAGIC_EXTEND)); + return 1; + } + else if (nRoll >= 56) + { + return 0; + } + else if (nRoll >= 54) + { + CreateObject(OBJECT_TYPE_PLACEABLE, "plc_butterflies", + GetLocation(oCaster)); + return 1; + } + else if (nRoll >= 51) + { + AssignCommand(oCaster, SpecialCast(nSpell, oCaster, + lLocation, nCasterLevel, + nMetaMagic)); + return 0; + } + else if (nRoll >= 41) + { + object oNewCaster = GetRandomNearby(oTarget); + object oNewTarget = GetRandomNearby(oCaster); + lLocation = GetLocation(oNewTarget); + AssignCommand(oNewCaster, SpecialCast(nSpell, oNewTarget, + lLocation, nCasterLevel, + nMetaMagic)); + return 1; + } + else if (nRoll >= 26) + { + return 1; + } + else if (nRoll >= 11) + { + object oNewTarget = GetRandomNearby(oCaster); + lLocation = GetLocation(oNewTarget); + AssignCommand(oCaster, SpecialCast(nSpell, oNewTarget, + lLocation, nCasterLevel, + nMetaMagic)); + return 1; + } + else + { + AssignCommand(oCaster, RandomCast()); + return 1; + } +} + +void SpecialCast (int nSpell, object oTarget, + location lLocation, int nCasterLevel, + int nMetaMagic) +{ + object oCaster = OBJECT_SELF; + SetLocalInt(oCaster, "WILDCASTING", TRUE); + ClearAllActions(); + if (oTarget == OBJECT_INVALID) + { + oTarget = GetNearestObjectToLocation(OBJECT_TYPE_CREATURE, lLocation); + } + AssignCommand(oCaster, ActionCastSpellAtObject(nSpell, oTarget, + nMetaMagic, TRUE, nCasterLevel, + PROJECTILE_PATH_TYPE_DEFAULT, TRUE)); + DelayCommand(5.5, DeleteLocalInt(oCaster, "WILDCASTING")); +} + +// To do: Get a better random spell chooser +void RandomCast () +{ + object oTarget = GetRandomNearby(OBJECT_SELF); + location lLocation = GetLocation(oTarget); + SpecialCast(Random(412), oTarget, lLocation, + PRCGetCasterLevel(OBJECT_SELF), PRCGetMetaMagicFeat()); +} + +object GetRandomNearby(object oTarget=OBJECT_SELF) +{ + object oNewTarget; + int nCounter = 0; + int nType; + while (1) + { + oNewTarget = GetNearestObject(OBJECT_TYPE_ALL, oTarget, nCounter); + nType = GetObjectType(oNewTarget); + if ((nType == OBJECT_TYPE_CREATURE || + nType == OBJECT_TYPE_PLACEABLE) && + d8() == 1) + { + break; // Target selected + } + if (nCounter++ > 20) + { + oNewTarget = oTarget; + break; // Did not find random target, choose self as default + } + } + return oNewTarget; +} + +effect EffectWildMagicAOE() +{ + int nAOE = AOE_PER_FOGKILL; + return EffectAreaOfEffect(nAOE, "wm_aoe_e", "wm_aoe_h", "wm_aoe_x"); +} + +effect EffectNullMagicAOE() +{ + int nAOE =AOE_PER_FOGMIND; + return EffectAreaOfEffect(nAOE, "nm_aoe_e", "nm_aoe_h", "nm_aoe_x"); +} + +void RemoveMagicalEffects (object oTarget) +{ + effect eEffect = GetFirstEffect(oTarget); + while (GetIsEffectValid(eEffect)) { + if (GetEffectSubType(eEffect) == SUBTYPE_MAGICAL) + { + RemoveEffect(oTarget, eEffect); + } + eEffect = GetNextEffect(oTarget); + } +} diff --git a/_content/prc8_battle_top/x2_s2_cursesong.ncs b/_content/prc8_battle_top/x2_s2_cursesong.ncs index 11b96e4..1de9a71 100644 Binary files a/_content/prc8_battle_top/x2_s2_cursesong.ncs and b/_content/prc8_battle_top/x2_s2_cursesong.ncs differ diff --git a/_module/Battledale [PRC8-CEP3].mod b/_module/Battledale [PRC8-CEP3].mod index bac2052..935c8a0 100644 Binary files a/_module/Battledale [PRC8-CEP3].mod and b/_module/Battledale [PRC8-CEP3].mod differ diff --git a/_module/ifo/module.ifo.json b/_module/ifo/module.ifo.json index 11259af..da89d09 100644 --- a/_module/ifo/module.ifo.json +++ b/_module/ifo/module.ifo.json @@ -3047,7 +3047,7 @@ }, "Mod_MinGameVer": { "type": "cexostring", - "value": "1.88" + "value": "1.89" }, "Mod_MinPerHour": { "type": "byte", diff --git a/_module/ncs/ah_cryptbossdead.ncs b/_module/ncs/ah_cryptbossdead.ncs index 8abab2e..462372d 100644 Binary files a/_module/ncs/ah_cryptbossdead.ncs and b/_module/ncs/ah_cryptbossdead.ncs differ diff --git a/_module/ncs/ah_cryptfall1.ncs b/_module/ncs/ah_cryptfall1.ncs index 87e3056..b7a94b6 100644 Binary files a/_module/ncs/ah_cryptfall1.ncs and b/_module/ncs/ah_cryptfall1.ncs differ diff --git a/_module/ncs/ah_cryptfall2.ncs b/_module/ncs/ah_cryptfall2.ncs index bbb7c37..bdc67a2 100644 Binary files a/_module/ncs/ah_cryptfall2.ncs and b/_module/ncs/ah_cryptfall2.ncs differ diff --git a/_module/ncs/ah_ghostlibrary.ncs b/_module/ncs/ah_ghostlibrary.ncs index 14d6e78..897afae 100644 Binary files a/_module/ncs/ah_ghostlibrary.ncs and b/_module/ncs/ah_ghostlibrary.ncs differ diff --git a/_module/ncs/ah_ghostvisfx.ncs b/_module/ncs/ah_ghostvisfx.ncs index 1c8f0a1..08e5747 100644 Binary files a/_module/ncs/ah_ghostvisfx.ncs and b/_module/ncs/ah_ghostvisfx.ncs differ diff --git a/_module/ncs/ah_initjumpdial.ncs b/_module/ncs/ah_initjumpdial.ncs index 5dd03da..7812bfa 100644 Binary files a/_module/ncs/ah_initjumpdial.ncs and b/_module/ncs/ah_initjumpdial.ncs differ diff --git a/_module/ncs/ah_initjumpdial2.ncs b/_module/ncs/ah_initjumpdial2.ncs index 5c7d2bf..f52b784 100644 Binary files a/_module/ncs/ah_initjumpdial2.ncs and b/_module/ncs/ah_initjumpdial2.ncs differ diff --git a/_module/ncs/ah_library_scale.ncs b/_module/ncs/ah_library_scale.ncs index 324639f..9caa955 100644 Binary files a/_module/ncs/ah_library_scale.ncs and b/_module/ncs/ah_library_scale.ncs differ diff --git a/_module/ncs/ah_mhorgspawner.ncs b/_module/ncs/ah_mhorgspawner.ncs index 5f524cc..84ab4ac 100644 Binary files a/_module/ncs/ah_mhorgspawner.ncs and b/_module/ncs/ah_mhorgspawner.ncs differ diff --git a/_module/ncs/ah_onspawn_efx.ncs b/_module/ncs/ah_onspawn_efx.ncs index f1b1b07..64ea5a3 100644 Binary files a/_module/ncs/ah_onspawn_efx.ncs and b/_module/ncs/ah_onspawn_efx.ncs differ diff --git a/_module/ncs/ah_onspawn_flag.ncs b/_module/ncs/ah_onspawn_flag.ncs index 143e472..1ed6adc 100644 Binary files a/_module/ncs/ah_onspawn_flag.ncs and b/_module/ncs/ah_onspawn_flag.ncs differ diff --git a/_module/ncs/ah_onspawn_flag2.ncs b/_module/ncs/ah_onspawn_flag2.ncs index e9ad655..c8a15ac 100644 Binary files a/_module/ncs/ah_onspawn_flag2.ncs and b/_module/ncs/ah_onspawn_flag2.ncs differ diff --git a/_module/ncs/ah_onspawn_mhorg.ncs b/_module/ncs/ah_onspawn_mhorg.ncs index d4e6dc7..3e87350 100644 Binary files a/_module/ncs/ah_onspawn_mhorg.ncs and b/_module/ncs/ah_onspawn_mhorg.ncs differ diff --git a/_module/ncs/ah_onspawn_shade.ncs b/_module/ncs/ah_onspawn_shade.ncs index 51e252c..a6516ff 100644 Binary files a/_module/ncs/ah_onspawn_shade.ncs and b/_module/ncs/ah_onspawn_shade.ncs differ diff --git a/_module/ncs/ah_onspawn_skull.ncs b/_module/ncs/ah_onspawn_skull.ncs index c919662..95b80c6 100644 Binary files a/_module/ncs/ah_onspawn_skull.ncs and b/_module/ncs/ah_onspawn_skull.ncs differ diff --git a/_module/ncs/ah_onspawn_spect.ncs b/_module/ncs/ah_onspawn_spect.ncs index 7b55a6e..8dec41c 100644 Binary files a/_module/ncs/ah_onspawn_spect.ncs and b/_module/ncs/ah_onspawn_spect.ncs differ diff --git a/_module/ncs/ah_onspawn_wrait.ncs b/_module/ncs/ah_onspawn_wrait.ncs index 2abb913..bf0b347 100644 Binary files a/_module/ncs/ah_onspawn_wrait.ncs and b/_module/ncs/ah_onspawn_wrait.ncs differ diff --git a/_module/ncs/ah_ooc_spellfail.ncs b/_module/ncs/ah_ooc_spellfail.ncs index e1e6365..45d6b40 100644 Binary files a/_module/ncs/ah_ooc_spellfail.ncs and b/_module/ncs/ah_ooc_spellfail.ncs differ diff --git a/_module/ncs/ah_ooc_spellok.ncs b/_module/ncs/ah_ooc_spellok.ncs index efdd2e8..f4cf2d9 100644 Binary files a/_module/ncs/ah_ooc_spellok.ncs and b/_module/ncs/ah_ooc_spellok.ncs differ diff --git a/_module/ncs/ah_start_conv.ncs b/_module/ncs/ah_start_conv.ncs index adf3495..5f2186f 100644 Binary files a/_module/ncs/ah_start_conv.ncs and b/_module/ncs/ah_start_conv.ncs differ diff --git a/_module/ncs/ah_tavernkeybowl.ncs b/_module/ncs/ah_tavernkeybowl.ncs index eb773a4..5acd484 100644 Binary files a/_module/ncs/ah_tavernkeybowl.ncs and b/_module/ncs/ah_tavernkeybowl.ncs differ diff --git a/_module/ncs/at_jw_aisha__001.ncs b/_module/ncs/at_jw_aisha__001.ncs index 7530d6b..a6361e4 100644 Binary files a/_module/ncs/at_jw_aisha__001.ncs and b/_module/ncs/at_jw_aisha__001.ncs differ diff --git a/_module/ncs/bbs_scribe_conv.ncs b/_module/ncs/bbs_scribe_conv.ncs index c05f3f4..2e60d99 100644 Binary files a/_module/ncs/bbs_scribe_conv.ncs and b/_module/ncs/bbs_scribe_conv.ncs differ diff --git a/_module/ncs/bbs_scribe_m_get.ncs b/_module/ncs/bbs_scribe_m_get.ncs index 5e3436b..7b64362 100644 Binary files a/_module/ncs/bbs_scribe_m_get.ncs and b/_module/ncs/bbs_scribe_m_get.ncs differ diff --git a/_module/ncs/bbs_scribe_spawn.ncs b/_module/ncs/bbs_scribe_spawn.ncs index d98c9a7..583e613 100644 Binary files a/_module/ncs/bbs_scribe_spawn.ncs and b/_module/ncs/bbs_scribe_spawn.ncs differ diff --git a/_module/ncs/bbs_scribe_t_get.ncs b/_module/ncs/bbs_scribe_t_get.ncs index 373cef9..bb6c07d 100644 Binary files a/_module/ncs/bbs_scribe_t_get.ncs and b/_module/ncs/bbs_scribe_t_get.ncs differ diff --git a/_module/ncs/by_rotten_usd.ncs b/_module/ncs/by_rotten_usd.ncs index f42fe85..d412cbc 100644 Binary files a/_module/ncs/by_rotten_usd.ncs and b/_module/ncs/by_rotten_usd.ncs differ diff --git a/_module/ncs/dmfi_activate.ncs b/_module/ncs/dmfi_activate.ncs index 2538baf..1e5142a 100644 Binary files a/_module/ncs/dmfi_activate.ncs and b/_module/ncs/dmfi_activate.ncs differ diff --git a/_module/ncs/dmfi_execute.ncs b/_module/ncs/dmfi_execute.ncs index 24ac8a9..afb0b70 100644 Binary files a/_module/ncs/dmfi_execute.ncs and b/_module/ncs/dmfi_execute.ncs differ diff --git a/_module/ncs/dmfi_settings4.ncs b/_module/ncs/dmfi_settings4.ncs index 66ca1e6..51fc01d 100644 Binary files a/_module/ncs/dmfi_settings4.ncs and b/_module/ncs/dmfi_settings4.ncs differ diff --git a/_module/ncs/dmfi_voice1.ncs b/_module/ncs/dmfi_voice1.ncs index a09aac8..f8b873d 100644 Binary files a/_module/ncs/dmfi_voice1.ncs and b/_module/ncs/dmfi_voice1.ncs differ diff --git a/_module/ncs/dmw_do_dialog1.ncs b/_module/ncs/dmw_do_dialog1.ncs index cde5e2a..56e8ca0 100644 Binary files a/_module/ncs/dmw_do_dialog1.ncs and b/_module/ncs/dmw_do_dialog1.ncs differ diff --git a/_module/ncs/dmw_do_dialog2.ncs b/_module/ncs/dmw_do_dialog2.ncs index 1b500a4..acc190f 100644 Binary files a/_module/ncs/dmw_do_dialog2.ncs and b/_module/ncs/dmw_do_dialog2.ncs differ diff --git a/_module/ncs/dmw_do_dialog3.ncs b/_module/ncs/dmw_do_dialog3.ncs index 801bd19..daaebb0 100644 Binary files a/_module/ncs/dmw_do_dialog3.ncs and b/_module/ncs/dmw_do_dialog3.ncs differ diff --git a/_module/ncs/dmw_do_dialog4.ncs b/_module/ncs/dmw_do_dialog4.ncs index f722d9b..6b84a2e 100644 Binary files a/_module/ncs/dmw_do_dialog4.ncs and b/_module/ncs/dmw_do_dialog4.ncs differ diff --git a/_module/ncs/dmw_do_dialog5.ncs b/_module/ncs/dmw_do_dialog5.ncs index 98a32f4..4ebf25e 100644 Binary files a/_module/ncs/dmw_do_dialog5.ncs and b/_module/ncs/dmw_do_dialog5.ncs differ diff --git a/_module/ncs/dmw_do_dialog6.ncs b/_module/ncs/dmw_do_dialog6.ncs index bf55c48..5070fca 100644 Binary files a/_module/ncs/dmw_do_dialog6.ncs and b/_module/ncs/dmw_do_dialog6.ncs differ diff --git a/_module/ncs/dmw_do_dialog7.ncs b/_module/ncs/dmw_do_dialog7.ncs index df3041a..e88ffc3 100644 Binary files a/_module/ncs/dmw_do_dialog7.ncs and b/_module/ncs/dmw_do_dialog7.ncs differ diff --git a/_module/ncs/dmw_do_dialog8.ncs b/_module/ncs/dmw_do_dialog8.ncs index b07633a..dff7d7b 100644 Binary files a/_module/ncs/dmw_do_dialog8.ncs and b/_module/ncs/dmw_do_dialog8.ncs differ diff --git a/_module/ncs/dmw_do_dialog9.ncs b/_module/ncs/dmw_do_dialog9.ncs index bb421a4..d7ff029 100644 Binary files a/_module/ncs/dmw_do_dialog9.ncs and b/_module/ncs/dmw_do_dialog9.ncs differ diff --git a/_module/ncs/ew_act_drunk.ncs b/_module/ncs/ew_act_drunk.ncs index 6b0163d..c906ec1 100644 Binary files a/_module/ncs/ew_act_drunk.ncs and b/_module/ncs/ew_act_drunk.ncs differ diff --git a/_module/ncs/ew_ani_armsup.ncs b/_module/ncs/ew_ani_armsup.ncs index 19887a9..89937dd 100644 Binary files a/_module/ncs/ew_ani_armsup.ncs and b/_module/ncs/ew_ani_armsup.ncs differ diff --git a/_module/ncs/ew_ani_bowdown.ncs b/_module/ncs/ew_ani_bowdown.ncs index 31dfdca..6d34c52 100644 Binary files a/_module/ncs/ew_ani_bowdown.ncs and b/_module/ncs/ew_ani_bowdown.ncs differ diff --git a/_module/ncs/ew_ani_crouch.ncs b/_module/ncs/ew_ani_crouch.ncs index 1eae934..45285a4 100644 Binary files a/_module/ncs/ew_ani_crouch.ncs and b/_module/ncs/ew_ani_crouch.ncs differ diff --git a/_module/ncs/ew_ani_kneelout.ncs b/_module/ncs/ew_ani_kneelout.ncs index 3fd3cbf..6087ab5 100644 Binary files a/_module/ncs/ew_ani_kneelout.ncs and b/_module/ncs/ew_ani_kneelout.ncs differ diff --git a/_module/ncs/ew_ani_kneelup.ncs b/_module/ncs/ew_ani_kneelup.ncs index fee33dc..50e46f6 100644 Binary files a/_module/ncs/ew_ani_kneelup.ncs and b/_module/ncs/ew_ani_kneelup.ncs differ diff --git a/_module/ncs/ew_ani_reset.ncs b/_module/ncs/ew_ani_reset.ncs index d8582ee..5ee10de 100644 Binary files a/_module/ncs/ew_ani_reset.ncs and b/_module/ncs/ew_ani_reset.ncs differ diff --git a/_module/ncs/ew_dance.ncs b/_module/ncs/ew_dance.ncs index fbe0ea8..0a22ca9 100644 Binary files a/_module/ncs/ew_dance.ncs and b/_module/ncs/ew_dance.ncs differ diff --git a/_module/ncs/ew_lapsit0.ncs b/_module/ncs/ew_lapsit0.ncs index e50472d..9a55a00 100644 Binary files a/_module/ncs/ew_lapsit0.ncs and b/_module/ncs/ew_lapsit0.ncs differ diff --git a/_module/ncs/ew_lapsit180.ncs b/_module/ncs/ew_lapsit180.ncs index d57c19f..b6f7c3e 100644 Binary files a/_module/ncs/ew_lapsit180.ncs and b/_module/ncs/ew_lapsit180.ncs differ diff --git a/_module/ncs/ew_lapsit270.ncs b/_module/ncs/ew_lapsit270.ncs index 74b6fec..29547d8 100644 Binary files a/_module/ncs/ew_lapsit270.ncs and b/_module/ncs/ew_lapsit270.ncs differ diff --git a/_module/ncs/ew_lapsit90.ncs b/_module/ncs/ew_lapsit90.ncs index 26e9b53..e928dbd 100644 Binary files a/_module/ncs/ew_lapsit90.ncs and b/_module/ncs/ew_lapsit90.ncs differ diff --git a/_module/ncs/ew_sitchair.ncs b/_module/ncs/ew_sitchair.ncs index 2b40a75..1482c16 100644 Binary files a/_module/ncs/ew_sitchair.ncs and b/_module/ncs/ew_sitchair.ncs differ diff --git a/_module/ncs/fr_ant_hostile.ncs b/_module/ncs/fr_ant_hostile.ncs index b3d755d..9adca0b 100644 Binary files a/_module/ncs/fr_ant_hostile.ncs and b/_module/ncs/fr_ant_hostile.ncs differ diff --git a/_module/ncs/fr_daemonfx01.ncs b/_module/ncs/fr_daemonfx01.ncs index dc063ba..a88a336 100644 Binary files a/_module/ncs/fr_daemonfx01.ncs and b/_module/ncs/fr_daemonfx01.ncs differ diff --git a/_module/ncs/fr_door_close_l.ncs b/_module/ncs/fr_door_close_l.ncs index 4da26a0..92e8df6 100644 Binary files a/_module/ncs/fr_door_close_l.ncs and b/_module/ncs/fr_door_close_l.ncs differ diff --git a/_module/ncs/fr_door_close_l2.ncs b/_module/ncs/fr_door_close_l2.ncs index d679c65..21a5558 100644 Binary files a/_module/ncs/fr_door_close_l2.ncs and b/_module/ncs/fr_door_close_l2.ncs differ diff --git a/_module/ncs/fr_emotew_s001.ncs b/_module/ncs/fr_emotew_s001.ncs index 2678bfe..94d84f1 100644 Binary files a/_module/ncs/fr_emotew_s001.ncs and b/_module/ncs/fr_emotew_s001.ncs differ diff --git a/_module/ncs/fr_emotew_s002.ncs b/_module/ncs/fr_emotew_s002.ncs index 2b8f202..7efa4f4 100644 Binary files a/_module/ncs/fr_emotew_s002.ncs and b/_module/ncs/fr_emotew_s002.ncs differ diff --git a/_module/ncs/fr_emotew_s003.ncs b/_module/ncs/fr_emotew_s003.ncs index 40be678..97eb556 100644 Binary files a/_module/ncs/fr_emotew_s003.ncs and b/_module/ncs/fr_emotew_s003.ncs differ diff --git a/_module/ncs/fr_emotew_s004.ncs b/_module/ncs/fr_emotew_s004.ncs index a326b00..2708ff5 100644 Binary files a/_module/ncs/fr_emotew_s004.ncs and b/_module/ncs/fr_emotew_s004.ncs differ diff --git a/_module/ncs/fr_emotew_s005.ncs b/_module/ncs/fr_emotew_s005.ncs index 1e25646..c33490e 100644 Binary files a/_module/ncs/fr_emotew_s005.ncs and b/_module/ncs/fr_emotew_s005.ncs differ diff --git a/_module/ncs/fr_emotew_s006.ncs b/_module/ncs/fr_emotew_s006.ncs index 2ac2b13..07eba98 100644 Binary files a/_module/ncs/fr_emotew_s006.ncs and b/_module/ncs/fr_emotew_s006.ncs differ diff --git a/_module/ncs/fr_emotew_s007.ncs b/_module/ncs/fr_emotew_s007.ncs index 41f53c2..fbd5404 100644 Binary files a/_module/ncs/fr_emotew_s007.ncs and b/_module/ncs/fr_emotew_s007.ncs differ diff --git a/_module/ncs/fr_emotew_s008.ncs b/_module/ncs/fr_emotew_s008.ncs index 1c6c420..cf6b0e1 100644 Binary files a/_module/ncs/fr_emotew_s008.ncs and b/_module/ncs/fr_emotew_s008.ncs differ diff --git a/_module/ncs/fr_emotew_s009.ncs b/_module/ncs/fr_emotew_s009.ncs index 8c2defe..7083ce2 100644 Binary files a/_module/ncs/fr_emotew_s009.ncs and b/_module/ncs/fr_emotew_s009.ncs differ diff --git a/_module/ncs/fr_emotew_s017.ncs b/_module/ncs/fr_emotew_s017.ncs index 5aeb84a..1072d92 100644 Binary files a/_module/ncs/fr_emotew_s017.ncs and b/_module/ncs/fr_emotew_s017.ncs differ diff --git a/_module/ncs/fr_emotew_s018.ncs b/_module/ncs/fr_emotew_s018.ncs index 168cd0e..559d2a3 100644 Binary files a/_module/ncs/fr_emotew_s018.ncs and b/_module/ncs/fr_emotew_s018.ncs differ diff --git a/_module/ncs/fr_emotew_s019.ncs b/_module/ncs/fr_emotew_s019.ncs index 716b0d1..e80f038 100644 Binary files a/_module/ncs/fr_emotew_s019.ncs and b/_module/ncs/fr_emotew_s019.ncs differ diff --git a/_module/ncs/fr_fwatertroll01.ncs b/_module/ncs/fr_fwatertroll01.ncs index b3d755d..9adca0b 100644 Binary files a/_module/ncs/fr_fwatertroll01.ncs and b/_module/ncs/fr_fwatertroll01.ncs differ diff --git a/_module/ncs/fr_hadush_spawn.ncs b/_module/ncs/fr_hadush_spawn.ncs index e8325fd..770c89d 100644 Binary files a/_module/ncs/fr_hadush_spawn.ncs and b/_module/ncs/fr_hadush_spawn.ncs differ diff --git a/_module/ncs/fr_iwd_ettinv01.ncs b/_module/ncs/fr_iwd_ettinv01.ncs index 139472c..4ccc934 100644 Binary files a/_module/ncs/fr_iwd_ettinv01.ncs and b/_module/ncs/fr_iwd_ettinv01.ncs differ diff --git a/_module/ncs/fr_iwd_ettinv02.ncs b/_module/ncs/fr_iwd_ettinv02.ncs index 9b11661..b420a20 100644 Binary files a/_module/ncs/fr_iwd_ettinv02.ncs and b/_module/ncs/fr_iwd_ettinv02.ncs differ diff --git a/_module/ncs/fr_iwd_ettinv03.ncs b/_module/ncs/fr_iwd_ettinv03.ncs index 4d8edab..77e250c 100644 Binary files a/_module/ncs/fr_iwd_ettinv03.ncs and b/_module/ncs/fr_iwd_ettinv03.ncs differ diff --git a/_module/ncs/fr_iwd_mndoor01.ncs b/_module/ncs/fr_iwd_mndoor01.ncs index a84a754..f51e906 100644 Binary files a/_module/ncs/fr_iwd_mndoor01.ncs and b/_module/ncs/fr_iwd_mndoor01.ncs differ diff --git a/_module/ncs/fr_iwd_mnswtch01.ncs b/_module/ncs/fr_iwd_mnswtch01.ncs index 8e67603..37de911 100644 Binary files a/_module/ncs/fr_iwd_mnswtch01.ncs and b/_module/ncs/fr_iwd_mnswtch01.ncs differ diff --git a/_module/ncs/fr_iwd_mnswtch02.ncs b/_module/ncs/fr_iwd_mnswtch02.ncs index eb2a7a7..49259ec 100644 Binary files a/_module/ncs/fr_iwd_mnswtch02.ncs and b/_module/ncs/fr_iwd_mnswtch02.ncs differ diff --git a/_module/ncs/fr_iwd_portal01.ncs b/_module/ncs/fr_iwd_portal01.ncs index 95a3808..cf76dc0 100644 Binary files a/_module/ncs/fr_iwd_portal01.ncs and b/_module/ncs/fr_iwd_portal01.ncs differ diff --git a/_module/ncs/fr_iwd_portal01b.ncs b/_module/ncs/fr_iwd_portal01b.ncs index 7c35b3a..aca3ff5 100644 Binary files a/_module/ncs/fr_iwd_portal01b.ncs and b/_module/ncs/fr_iwd_portal01b.ncs differ diff --git a/_module/ncs/fr_iwd_portal02.ncs b/_module/ncs/fr_iwd_portal02.ncs index 55cd5c0..999f483 100644 Binary files a/_module/ncs/fr_iwd_portal02.ncs and b/_module/ncs/fr_iwd_portal02.ncs differ diff --git a/_module/ncs/fr_iwd_portal02b.ncs b/_module/ncs/fr_iwd_portal02b.ncs index bbf3fd1..937ec94 100644 Binary files a/_module/ncs/fr_iwd_portal02b.ncs and b/_module/ncs/fr_iwd_portal02b.ncs differ diff --git a/_module/ncs/fr_iwd_portal03.ncs b/_module/ncs/fr_iwd_portal03.ncs index 1e8cbaf..d9352ec 100644 Binary files a/_module/ncs/fr_iwd_portal03.ncs and b/_module/ncs/fr_iwd_portal03.ncs differ diff --git a/_module/ncs/fr_lantern_tele1.ncs b/_module/ncs/fr_lantern_tele1.ncs index 00c3e7a..20c20cc 100644 Binary files a/_module/ncs/fr_lantern_tele1.ncs and b/_module/ncs/fr_lantern_tele1.ncs differ diff --git a/_module/ncs/fr_onspawn_0gold.ncs b/_module/ncs/fr_onspawn_0gold.ncs index c08cbeb..e4b1a71 100644 Binary files a/_module/ncs/fr_onspawn_0gold.ncs and b/_module/ncs/fr_onspawn_0gold.ncs differ diff --git a/_module/ncs/fr_onspawn_dance.ncs b/_module/ncs/fr_onspawn_dance.ncs index a22d737..e6da016 100644 Binary files a/_module/ncs/fr_onspawn_dance.ncs and b/_module/ncs/fr_onspawn_dance.ncs differ diff --git a/_module/ncs/fr_onspawn_etght.ncs b/_module/ncs/fr_onspawn_etght.ncs index eea0357..f169805 100644 Binary files a/_module/ncs/fr_onspawn_etght.ncs and b/_module/ncs/fr_onspawn_etght.ncs differ diff --git a/_module/ncs/fr_onspawn_ghost.ncs b/_module/ncs/fr_onspawn_ghost.ncs index d578c18..0d718a5 100644 Binary files a/_module/ncs/fr_onspawn_ghost.ncs and b/_module/ncs/fr_onspawn_ghost.ncs differ diff --git a/_module/ncs/fr_onspawn_golem.ncs b/_module/ncs/fr_onspawn_golem.ncs index 1e46306..367783d 100644 Binary files a/_module/ncs/fr_onspawn_golem.ncs and b/_module/ncs/fr_onspawn_golem.ncs differ diff --git a/_module/ncs/fr_onspawn_green.ncs b/_module/ncs/fr_onspawn_green.ncs index b18a11e..dfce4a4 100644 Binary files a/_module/ncs/fr_onspawn_green.ncs and b/_module/ncs/fr_onspawn_green.ncs differ diff --git a/_module/ncs/fr_onspawn_ice.ncs b/_module/ncs/fr_onspawn_ice.ncs index 4a7e322..50924e1 100644 Binary files a/_module/ncs/fr_onspawn_ice.ncs and b/_module/ncs/fr_onspawn_ice.ncs differ diff --git a/_module/ncs/fr_onspawn_iogre.ncs b/_module/ncs/fr_onspawn_iogre.ncs index f959abb..b3eb149 100644 Binary files a/_module/ncs/fr_onspawn_iogre.ncs and b/_module/ncs/fr_onspawn_iogre.ncs differ diff --git a/_module/ncs/fr_onspawn_petrf.ncs b/_module/ncs/fr_onspawn_petrf.ncs index e8a1b05..046ea1d 100644 Binary files a/_module/ncs/fr_onspawn_petrf.ncs and b/_module/ncs/fr_onspawn_petrf.ncs differ diff --git a/_module/ncs/fr_onspawn_pgole.ncs b/_module/ncs/fr_onspawn_pgole.ncs index 5b5a4d6..2413699 100644 Binary files a/_module/ncs/fr_onspawn_pgole.ncs and b/_module/ncs/fr_onspawn_pgole.ncs differ diff --git a/_module/ncs/fr_onspawn_pixie.ncs b/_module/ncs/fr_onspawn_pixie.ncs index 333f232..f2140dd 100644 Binary files a/_module/ncs/fr_onspawn_pixie.ncs and b/_module/ncs/fr_onspawn_pixie.ncs differ diff --git a/_module/ncs/fr_oud_wwolf.ncs b/_module/ncs/fr_oud_wwolf.ncs index cd03840..c382cba 100644 Binary files a/_module/ncs/fr_oud_wwolf.ncs and b/_module/ncs/fr_oud_wwolf.ncs differ diff --git a/_module/ncs/fr_pax_golemk03.ncs b/_module/ncs/fr_pax_golemk03.ncs index 5938cac..c10b860 100644 Binary files a/_module/ncs/fr_pax_golemk03.ncs and b/_module/ncs/fr_pax_golemk03.ncs differ diff --git a/_module/ncs/fr_pers_talk.ncs b/_module/ncs/fr_pers_talk.ncs index 34de91a..b3d9965 100644 Binary files a/_module/ncs/fr_pers_talk.ncs and b/_module/ncs/fr_pers_talk.ncs differ diff --git a/_module/ncs/fr_s2_wildsh_org.ncs b/_module/ncs/fr_s2_wildsh_org.ncs index 3102925..7dc3e80 100644 Binary files a/_module/ncs/fr_s2_wildsh_org.ncs and b/_module/ncs/fr_s2_wildsh_org.ncs differ diff --git a/_module/ncs/fr_tarrik_spawn.ncs b/_module/ncs/fr_tarrik_spawn.ncs index bf34f66..aa393b8 100644 Binary files a/_module/ncs/fr_tarrik_spawn.ncs and b/_module/ncs/fr_tarrik_spawn.ncs differ diff --git a/_module/ncs/fr_tavern_room_1.ncs b/_module/ncs/fr_tavern_room_1.ncs index efe90c0..d447352 100644 Binary files a/_module/ncs/fr_tavern_room_1.ncs and b/_module/ncs/fr_tavern_room_1.ncs differ diff --git a/_module/ncs/fr_tavern_room_2.ncs b/_module/ncs/fr_tavern_room_2.ncs index cb40aad..c4967c2 100644 Binary files a/_module/ncs/fr_tavern_room_2.ncs and b/_module/ncs/fr_tavern_room_2.ncs differ diff --git a/_module/ncs/fr_tavern_room_3.ncs b/_module/ncs/fr_tavern_room_3.ncs index 4b2a051..22f8bb7 100644 Binary files a/_module/ncs/fr_tavern_room_3.ncs and b/_module/ncs/fr_tavern_room_3.ncs differ diff --git a/_module/ncs/fr_tavern_room_4.ncs b/_module/ncs/fr_tavern_room_4.ncs index d7d9280..383e35f 100644 Binary files a/_module/ncs/fr_tavern_room_4.ncs and b/_module/ncs/fr_tavern_room_4.ncs differ diff --git a/_module/ncs/fr_tavern_room_5.ncs b/_module/ncs/fr_tavern_room_5.ncs index 50334f7..1c9a7d1 100644 Binary files a/_module/ncs/fr_tavern_room_5.ncs and b/_module/ncs/fr_tavern_room_5.ncs differ diff --git a/_module/ncs/fr_thael_spawn.ncs b/_module/ncs/fr_thael_spawn.ncs index 19e95b6..b2d5244 100644 Binary files a/_module/ncs/fr_thael_spawn.ncs and b/_module/ncs/fr_thael_spawn.ncs differ diff --git a/_module/ncs/frost_arena_m01.ncs b/_module/ncs/frost_arena_m01.ncs index bdb344f..6549bee 100644 Binary files a/_module/ncs/frost_arena_m01.ncs and b/_module/ncs/frost_arena_m01.ncs differ diff --git a/_module/ncs/frost_attack.ncs b/_module/ncs/frost_attack.ncs index b3d755d..9adca0b 100644 Binary files a/_module/ncs/frost_attack.ncs and b/_module/ncs/frost_attack.ncs differ diff --git a/_module/ncs/frost_lever_a1.ncs b/_module/ncs/frost_lever_a1.ncs index 3115d17..c6388f9 100644 Binary files a/_module/ncs/frost_lever_a1.ncs and b/_module/ncs/frost_lever_a1.ncs differ diff --git a/_module/ncs/frost_lever_a2.ncs b/_module/ncs/frost_lever_a2.ncs index f2e2d2b..8e98b8d 100644 Binary files a/_module/ncs/frost_lever_a2.ncs and b/_module/ncs/frost_lever_a2.ncs differ diff --git a/_module/ncs/frost_lever_a3.ncs b/_module/ncs/frost_lever_a3.ncs index 7ed0736..745091b 100644 Binary files a/_module/ncs/frost_lever_a3.ncs and b/_module/ncs/frost_lever_a3.ncs differ diff --git a/_module/ncs/frost_lever_a4.ncs b/_module/ncs/frost_lever_a4.ncs index 0fdce57..54caf4b 100644 Binary files a/_module/ncs/frost_lever_a4.ncs and b/_module/ncs/frost_lever_a4.ncs differ diff --git a/_module/ncs/frost_lever_use.ncs b/_module/ncs/frost_lever_use.ncs index aa23225..ee594c2 100644 Binary files a/_module/ncs/frost_lever_use.ncs and b/_module/ncs/frost_lever_use.ncs differ diff --git a/_module/ncs/frost_spawn_user.ncs b/_module/ncs/frost_spawn_user.ncs index 1db06b7..6ff3188 100644 Binary files a/_module/ncs/frost_spawn_user.ncs and b/_module/ncs/frost_spawn_user.ncs differ diff --git a/_module/ncs/frost_worship.ncs b/_module/ncs/frost_worship.ncs index a613863..a3551c0 100644 Binary files a/_module/ncs/frost_worship.ncs and b/_module/ncs/frost_worship.ncs differ diff --git a/_module/ncs/gc_add_ability.ncs b/_module/ncs/gc_add_ability.ncs index f204029..56897da 100644 Binary files a/_module/ncs/gc_add_ability.ncs and b/_module/ncs/gc_add_ability.ncs differ diff --git a/_module/ncs/gc_add_ac.ncs b/_module/ncs/gc_add_ac.ncs index 29b89db..4dfad9f 100644 Binary files a/_module/ncs/gc_add_ac.ncs and b/_module/ncs/gc_add_ac.ncs differ diff --git a/_module/ncs/gc_add_attk_bon.ncs b/_module/ncs/gc_add_attk_bon.ncs index e028831..fba7767 100644 Binary files a/_module/ncs/gc_add_attk_bon.ncs and b/_module/ncs/gc_add_attk_bon.ncs differ diff --git a/_module/ncs/gc_add_bon_spell.ncs b/_module/ncs/gc_add_bon_spell.ncs index 48d2ba3..8a98535 100644 Binary files a/_module/ncs/gc_add_bon_spell.ncs and b/_module/ncs/gc_add_bon_spell.ncs differ diff --git a/_module/ncs/gc_add_dmg_bonus.ncs b/_module/ncs/gc_add_dmg_bonus.ncs index 422b6db..a3c3f14 100644 Binary files a/_module/ncs/gc_add_dmg_bonus.ncs and b/_module/ncs/gc_add_dmg_bonus.ncs differ diff --git a/_module/ncs/gc_add_dmg_imm.ncs b/_module/ncs/gc_add_dmg_imm.ncs index be89917..97b43af 100644 Binary files a/_module/ncs/gc_add_dmg_imm.ncs and b/_module/ncs/gc_add_dmg_imm.ncs differ diff --git a/_module/ncs/gc_add_dmg_red.ncs b/_module/ncs/gc_add_dmg_red.ncs index f5eda66..e404e2e 100644 Binary files a/_module/ncs/gc_add_dmg_red.ncs and b/_module/ncs/gc_add_dmg_red.ncs differ diff --git a/_module/ncs/gc_add_ench_bon.ncs b/_module/ncs/gc_add_ench_bon.ncs index 3a23c4a..187cae3 100644 Binary files a/_module/ncs/gc_add_ench_bon.ncs and b/_module/ncs/gc_add_ench_bon.ncs differ diff --git a/_module/ncs/gc_add_evade.ncs b/_module/ncs/gc_add_evade.ncs index 2233ead..44309fa 100644 Binary files a/_module/ncs/gc_add_evade.ncs and b/_module/ncs/gc_add_evade.ncs differ diff --git a/_module/ncs/gc_add_feat.ncs b/_module/ncs/gc_add_feat.ncs index 393d859..a3ae0b4 100644 Binary files a/_module/ncs/gc_add_feat.ncs and b/_module/ncs/gc_add_feat.ncs differ diff --git a/_module/ncs/gc_add_freedom.ncs b/_module/ncs/gc_add_freedom.ncs index 5fd11e7..6ff73fb 100644 Binary files a/_module/ncs/gc_add_freedom.ncs and b/_module/ncs/gc_add_freedom.ncs differ diff --git a/_module/ncs/gc_add_haste.ncs b/_module/ncs/gc_add_haste.ncs index cece1a5..4b479ff 100644 Binary files a/_module/ncs/gc_add_haste.ncs and b/_module/ncs/gc_add_haste.ncs differ diff --git a/_module/ncs/gc_add_immunity.ncs b/_module/ncs/gc_add_immunity.ncs index c3040f6..870594c 100644 Binary files a/_module/ncs/gc_add_immunity.ncs and b/_module/ncs/gc_add_immunity.ncs differ diff --git a/_module/ncs/gc_add_keen.ncs b/_module/ncs/gc_add_keen.ncs index 0d01a21..8ab9ef1 100644 Binary files a/_module/ncs/gc_add_keen.ncs and b/_module/ncs/gc_add_keen.ncs differ diff --git a/_module/ncs/gc_add_massv_crt.ncs b/_module/ncs/gc_add_massv_crt.ncs index 434d8d2..8f31a9a 100644 Binary files a/_module/ncs/gc_add_massv_crt.ncs and b/_module/ncs/gc_add_massv_crt.ncs differ diff --git a/_module/ncs/gc_add_mighty.ncs b/_module/ncs/gc_add_mighty.ncs index 346a5df..ba163c6 100644 Binary files a/_module/ncs/gc_add_mighty.ncs and b/_module/ncs/gc_add_mighty.ncs differ diff --git a/_module/ncs/gc_add_regen.ncs b/_module/ncs/gc_add_regen.ncs index d1bb098..251e06d 100644 Binary files a/_module/ncs/gc_add_regen.ncs and b/_module/ncs/gc_add_regen.ncs differ diff --git a/_module/ncs/gc_add_resist.ncs b/_module/ncs/gc_add_resist.ncs index 0ddc432..376c55f 100644 Binary files a/_module/ncs/gc_add_resist.ncs and b/_module/ncs/gc_add_resist.ncs differ diff --git a/_module/ncs/gc_add_save.ncs b/_module/ncs/gc_add_save.ncs index 1e144d0..21e1e4a 100644 Binary files a/_module/ncs/gc_add_save.ncs and b/_module/ncs/gc_add_save.ncs differ diff --git a/_module/ncs/gc_add_skills.ncs b/_module/ncs/gc_add_skills.ncs index fa9b133..11bdf8f 100644 Binary files a/_module/ncs/gc_add_skills.ncs and b/_module/ncs/gc_add_skills.ncs differ diff --git a/_module/ncs/gc_add_sr.ncs b/_module/ncs/gc_add_sr.ncs index bd3646c..3f04f9e 100644 Binary files a/_module/ncs/gc_add_sr.ncs and b/_module/ncs/gc_add_sr.ncs differ diff --git a/_module/ncs/gc_add_true_see.ncs b/_module/ncs/gc_add_true_see.ncs index ed87d8f..0d9fe61 100644 Binary files a/_module/ncs/gc_add_true_see.ncs and b/_module/ncs/gc_add_true_see.ncs differ diff --git a/_module/ncs/gc_add_vamp_regn.ncs b/_module/ncs/gc_add_vamp_regn.ncs index 1dc16fe..2333ae5 100644 Binary files a/_module/ncs/gc_add_vamp_regn.ncs and b/_module/ncs/gc_add_vamp_regn.ncs differ diff --git a/_module/ncs/gz_healer_spawn.ncs b/_module/ncs/gz_healer_spawn.ncs index a3d6316..d235bf0 100644 Binary files a/_module/ncs/gz_healer_spawn.ncs and b/_module/ncs/gz_healer_spawn.ncs differ diff --git a/_module/ncs/gz_pkeg_detonate.ncs b/_module/ncs/gz_pkeg_detonate.ncs index f520912..dedd77b 100644 Binary files a/_module/ncs/gz_pkeg_detonate.ncs and b/_module/ncs/gz_pkeg_detonate.ncs differ diff --git a/_module/ncs/hc_grenade.ncs b/_module/ncs/hc_grenade.ncs index 1cfca80..818b9e3 100644 Binary files a/_module/ncs/hc_grenade.ncs and b/_module/ncs/hc_grenade.ncs differ diff --git a/_module/ncs/hc_track_start.ncs b/_module/ncs/hc_track_start.ncs index d86df55..ee8765f 100644 Binary files a/_module/ncs/hc_track_start.ncs and b/_module/ncs/hc_track_start.ncs differ diff --git a/_module/ncs/i420_helcat_spel.ncs b/_module/ncs/i420_helcat_spel.ncs index faf9642..9be1c24 100644 Binary files a/_module/ncs/i420_helcat_spel.ncs and b/_module/ncs/i420_helcat_spel.ncs differ diff --git a/_module/ncs/i420_helcat_spwn.ncs b/_module/ncs/i420_helcat_spwn.ncs index ae5f6ab..47d602a 100644 Binary files a/_module/ncs/i420_helcat_spwn.ncs and b/_module/ncs/i420_helcat_spwn.ncs differ diff --git a/_module/ncs/isaspellcaster.ncs b/_module/ncs/isaspellcaster.ncs index bec318b..127a364 100644 Binary files a/_module/ncs/isaspellcaster.ncs and b/_module/ncs/isaspellcaster.ncs differ diff --git a/_module/ncs/jw_aisha_usd.ncs b/_module/ncs/jw_aisha_usd.ncs index 3dbe104..389bfc2 100644 Binary files a/_module/ncs/jw_aisha_usd.ncs and b/_module/ncs/jw_aisha_usd.ncs differ diff --git a/_module/ncs/jw_aishadoor_ope.ncs b/_module/ncs/jw_aishadoor_ope.ncs index d317801..6502872 100644 Binary files a/_module/ncs/jw_aishadoor_ope.ncs and b/_module/ncs/jw_aishadoor_ope.ncs differ diff --git a/_module/ncs/jw_altar_dist.ncs b/_module/ncs/jw_altar_dist.ncs index e9f99bf..199074c 100644 Binary files a/_module/ncs/jw_altar_dist.ncs and b/_module/ncs/jw_altar_dist.ncs differ diff --git a/_module/ncs/jw_andbelo_enter.ncs b/_module/ncs/jw_andbelo_enter.ncs index 537b6d8..05c8a15 100644 Binary files a/_module/ncs/jw_andbelo_enter.ncs and b/_module/ncs/jw_andbelo_enter.ncs differ diff --git a/_module/ncs/jw_anddev_dist.ncs b/_module/ncs/jw_anddev_dist.ncs index 03e84ce..e5051d4 100644 Binary files a/_module/ncs/jw_anddev_dist.ncs and b/_module/ncs/jw_anddev_dist.ncs differ diff --git a/_module/ncs/jw_andgate_used.ncs b/_module/ncs/jw_andgate_used.ncs index 0033b7b..5f94915 100644 Binary files a/_module/ncs/jw_andgate_used.ncs and b/_module/ncs/jw_andgate_used.ncs differ diff --git a/_module/ncs/jw_andgond_rit.ncs b/_module/ncs/jw_andgond_rit.ncs index 0ff256f..1ff9fae 100644 Binary files a/_module/ncs/jw_andgond_rit.ncs and b/_module/ncs/jw_andgond_rit.ncs differ diff --git a/_module/ncs/jw_andmob1_sp.ncs b/_module/ncs/jw_andmob1_sp.ncs index 30e154d..b88db39 100644 Binary files a/_module/ncs/jw_andmob1_sp.ncs and b/_module/ncs/jw_andmob1_sp.ncs differ diff --git a/_module/ncs/jw_andmob2_sp.ncs b/_module/ncs/jw_andmob2_sp.ncs index 4badc4a..2f91627 100644 Binary files a/_module/ncs/jw_andmob2_sp.ncs and b/_module/ncs/jw_andmob2_sp.ncs differ diff --git a/_module/ncs/jw_andmob3_sp.ncs b/_module/ncs/jw_andmob3_sp.ncs index 1b7e6ae..73e4d70 100644 Binary files a/_module/ncs/jw_andmob3_sp.ncs and b/_module/ncs/jw_andmob3_sp.ncs differ diff --git a/_module/ncs/jw_andmob_open.ncs b/_module/ncs/jw_andmob_open.ncs index dec35ab..8fd0944 100644 Binary files a/_module/ncs/jw_andmob_open.ncs and b/_module/ncs/jw_andmob_open.ncs differ diff --git a/_module/ncs/jw_androsdr_ope.ncs b/_module/ncs/jw_androsdr_ope.ncs index f587dca..f1d7430 100644 Binary files a/_module/ncs/jw_androsdr_ope.ncs and b/_module/ncs/jw_androsdr_ope.ncs differ diff --git a/_module/ncs/jw_angnd_rit_new.ncs b/_module/ncs/jw_angnd_rit_new.ncs index e8db6a7..61d9077 100644 Binary files a/_module/ncs/jw_angnd_rit_new.ncs and b/_module/ncs/jw_angnd_rit_new.ncs differ diff --git a/_module/ncs/jw_anhialator_sp.ncs b/_module/ncs/jw_anhialator_sp.ncs index e2c1fbf..ebf7752 100644 Binary files a/_module/ncs/jw_anhialator_sp.ncs and b/_module/ncs/jw_anhialator_sp.ncs differ diff --git a/_module/ncs/jw_animal_usd.ncs b/_module/ncs/jw_animal_usd.ncs index 08732d7..f5115bb 100644 Binary files a/_module/ncs/jw_animal_usd.ncs and b/_module/ncs/jw_animal_usd.ncs differ diff --git a/_module/ncs/jw_anymobopendr.ncs b/_module/ncs/jw_anymobopendr.ncs index e545ef5..208c01c 100644 Binary files a/_module/ncs/jw_anymobopendr.ncs and b/_module/ncs/jw_anymobopendr.ncs differ diff --git a/_module/ncs/jw_asheeba_enter.ncs b/_module/ncs/jw_asheeba_enter.ncs index 79c8bd6..4d82ad7 100644 Binary files a/_module/ncs/jw_asheeba_enter.ncs and b/_module/ncs/jw_asheeba_enter.ncs differ diff --git a/_module/ncs/jw_assoc_combrnd.ncs b/_module/ncs/jw_assoc_combrnd.ncs index 01d83b1..b605e3c 100644 Binary files a/_module/ncs/jw_assoc_combrnd.ncs and b/_module/ncs/jw_assoc_combrnd.ncs differ diff --git a/_module/ncs/jw_assoc_con.ncs b/_module/ncs/jw_assoc_con.ncs index ec138a7..97b41ce 100644 Binary files a/_module/ncs/jw_assoc_con.ncs and b/_module/ncs/jw_assoc_con.ncs differ diff --git a/_module/ncs/jw_assoc_damaged.ncs b/_module/ncs/jw_assoc_damaged.ncs index 6b524f1..baef0f3 100644 Binary files a/_module/ncs/jw_assoc_damaged.ncs and b/_module/ncs/jw_assoc_damaged.ncs differ diff --git a/_module/ncs/jw_assoc_death.ncs b/_module/ncs/jw_assoc_death.ncs index 11b449c..23d1567 100644 Binary files a/_module/ncs/jw_assoc_death.ncs and b/_module/ncs/jw_assoc_death.ncs differ diff --git a/_module/ncs/jw_assoc_dist.ncs b/_module/ncs/jw_assoc_dist.ncs index 3816b71..712b21f 100644 Binary files a/_module/ncs/jw_assoc_dist.ncs and b/_module/ncs/jw_assoc_dist.ncs differ diff --git a/_module/ncs/jw_assoc_hb.ncs b/_module/ncs/jw_assoc_hb.ncs index babf8e2..e61e677 100644 Binary files a/_module/ncs/jw_assoc_hb.ncs and b/_module/ncs/jw_assoc_hb.ncs differ diff --git a/_module/ncs/jw_assoc_perc.ncs b/_module/ncs/jw_assoc_perc.ncs index 73986f8..917a12e 100644 Binary files a/_module/ncs/jw_assoc_perc.ncs and b/_module/ncs/jw_assoc_perc.ncs differ diff --git a/_module/ncs/jw_assoc_phys.ncs b/_module/ncs/jw_assoc_phys.ncs index cf7e917..aba8aee 100644 Binary files a/_module/ncs/jw_assoc_phys.ncs and b/_module/ncs/jw_assoc_phys.ncs differ diff --git a/_module/ncs/jw_assoc_spell.ncs b/_module/ncs/jw_assoc_spell.ncs index 4bdb1f0..b0d8422 100644 Binary files a/_module/ncs/jw_assoc_spell.ncs and b/_module/ncs/jw_assoc_spell.ncs differ diff --git a/_module/ncs/jw_attack_conscr.ncs b/_module/ncs/jw_attack_conscr.ncs index b3d755d..9adca0b 100644 Binary files a/_module/ncs/jw_attack_conscr.ncs and b/_module/ncs/jw_attack_conscr.ncs differ diff --git a/_module/ncs/jw_attackinconv.ncs b/_module/ncs/jw_attackinconv.ncs index b3d755d..9adca0b 100644 Binary files a/_module/ncs/jw_attackinconv.ncs and b/_module/ncs/jw_attackinconv.ncs differ diff --git a/_module/ncs/jw_ball1_spawm.ncs b/_module/ncs/jw_ball1_spawm.ncs index 40bcbde..4a950e4 100644 Binary files a/_module/ncs/jw_ball1_spawm.ncs and b/_module/ncs/jw_ball1_spawm.ncs differ diff --git a/_module/ncs/jw_banestat_used.ncs b/_module/ncs/jw_banestat_used.ncs index b29c087..3bc5ab6 100644 Binary files a/_module/ncs/jw_banestat_used.ncs and b/_module/ncs/jw_banestat_used.ncs differ diff --git a/_module/ncs/jw_barmaid_attac.ncs b/_module/ncs/jw_barmaid_attac.ncs index 068ba21..a961f97 100644 Binary files a/_module/ncs/jw_barmaid_attac.ncs and b/_module/ncs/jw_barmaid_attac.ncs differ diff --git a/_module/ncs/jw_barrel_smash.ncs b/_module/ncs/jw_barrel_smash.ncs index 5331b83..55070dc 100644 Binary files a/_module/ncs/jw_barrel_smash.ncs and b/_module/ncs/jw_barrel_smash.ncs differ diff --git a/_module/ncs/jw_bawdy_dr_clos.ncs b/_module/ncs/jw_bawdy_dr_clos.ncs index 916acba..9253adc 100644 Binary files a/_module/ncs/jw_bawdy_dr_clos.ncs and b/_module/ncs/jw_bawdy_dr_clos.ncs differ diff --git a/_module/ncs/jw_beam_enter.ncs b/_module/ncs/jw_beam_enter.ncs index e8f5d86..8f1862a 100644 Binary files a/_module/ncs/jw_beam_enter.ncs and b/_module/ncs/jw_beam_enter.ncs differ diff --git a/_module/ncs/jw_begin_conv.ncs b/_module/ncs/jw_begin_conv.ncs index adf3495..5f2186f 100644 Binary files a/_module/ncs/jw_begin_conv.ncs and b/_module/ncs/jw_begin_conv.ncs differ diff --git a/_module/ncs/jw_belker_spawn.ncs b/_module/ncs/jw_belker_spawn.ncs index f843526..d7edaf0 100644 Binary files a/_module/ncs/jw_belker_spawn.ncs and b/_module/ncs/jw_belker_spawn.ncs differ diff --git a/_module/ncs/jw_bin_dist.ncs b/_module/ncs/jw_bin_dist.ncs index 6410958..4282f44 100644 Binary files a/_module/ncs/jw_bin_dist.ncs and b/_module/ncs/jw_bin_dist.ncs differ diff --git a/_module/ncs/jw_bin_open.ncs b/_module/ncs/jw_bin_open.ncs index 069950c..dd5528e 100644 Binary files a/_module/ncs/jw_bin_open.ncs and b/_module/ncs/jw_bin_open.ncs differ diff --git a/_module/ncs/jw_birdy_usd.ncs b/_module/ncs/jw_birdy_usd.ncs index b49995d..bcaa148 100644 Binary files a/_module/ncs/jw_birdy_usd.ncs and b/_module/ncs/jw_birdy_usd.ncs differ diff --git a/_module/ncs/jw_blackswrd_spa.ncs b/_module/ncs/jw_blackswrd_spa.ncs index ce6af42..97b56ec 100644 Binary files a/_module/ncs/jw_blackswrd_spa.ncs and b/_module/ncs/jw_blackswrd_spa.ncs differ diff --git a/_module/ncs/jw_bloodfiend_us.ncs b/_module/ncs/jw_bloodfiend_us.ncs index 99b571b..80886a6 100644 Binary files a/_module/ncs/jw_bloodfiend_us.ncs and b/_module/ncs/jw_bloodfiend_us.ncs differ diff --git a/_module/ncs/jw_br_ce_fail_dr.ncs b/_module/ncs/jw_br_ce_fail_dr.ncs index c762597..19f23f3 100644 Binary files a/_module/ncs/jw_br_ce_fail_dr.ncs and b/_module/ncs/jw_br_ce_fail_dr.ncs differ diff --git a/_module/ncs/jw_br_cend_dr_un.ncs b/_module/ncs/jw_br_cend_dr_un.ncs index e66d066..9771ce1 100644 Binary files a/_module/ncs/jw_br_cend_dr_un.ncs and b/_module/ncs/jw_br_cend_dr_un.ncs differ diff --git a/_module/ncs/jw_brath_drspawn.ncs b/_module/ncs/jw_brath_drspawn.ncs index adf120c..ec6926a 100644 Binary files a/_module/ncs/jw_brath_drspawn.ncs and b/_module/ncs/jw_brath_drspawn.ncs differ diff --git a/_module/ncs/jw_brdun4_enter.ncs b/_module/ncs/jw_brdun4_enter.ncs index ecaa180..7104d83 100644 Binary files a/_module/ncs/jw_brdun4_enter.ncs and b/_module/ncs/jw_brdun4_enter.ncs differ diff --git a/_module/ncs/jw_brdun_open.ncs b/_module/ncs/jw_brdun_open.ncs index 1ea0560..5147169 100644 Binary files a/_module/ncs/jw_brdun_open.ncs and b/_module/ncs/jw_brdun_open.ncs differ diff --git a/_module/ncs/jw_bright_hb.ncs b/_module/ncs/jw_bright_hb.ncs index 8c7e2a0..cc6b7ea 100644 Binary files a/_module/ncs/jw_bright_hb.ncs and b/_module/ncs/jw_bright_hb.ncs differ diff --git a/_module/ncs/jw_bs2ss_tr_oc.ncs b/_module/ncs/jw_bs2ss_tr_oc.ncs index 3aa8b8e..5daa619 100644 Binary files a/_module/ncs/jw_bs2ss_tr_oc.ncs and b/_module/ncs/jw_bs2ss_tr_oc.ncs differ diff --git a/_module/ncs/jw_bunt_spn.ncs b/_module/ncs/jw_bunt_spn.ncs index 13cd0b3..ce16a6a 100644 Binary files a/_module/ncs/jw_bunt_spn.ncs and b/_module/ncs/jw_bunt_spn.ncs differ diff --git a/_module/ncs/jw_bunty_sed.ncs b/_module/ncs/jw_bunty_sed.ncs index 7bbb93e..2382ee8 100644 Binary files a/_module/ncs/jw_bunty_sed.ncs and b/_module/ncs/jw_bunty_sed.ncs differ diff --git a/_module/ncs/jw_c2_bat9.ncs b/_module/ncs/jw_c2_bat9.ncs index ad2b098..0249868 100644 Binary files a/_module/ncs/jw_c2_bat9.ncs and b/_module/ncs/jw_c2_bat9.ncs differ diff --git a/_module/ncs/jw_cgdoor_fail.ncs b/_module/ncs/jw_cgdoor_fail.ncs index a87ac2a..4da72cf 100644 Binary files a/_module/ncs/jw_cgdoor_fail.ncs and b/_module/ncs/jw_cgdoor_fail.ncs differ diff --git a/_module/ncs/jw_chargemachine.ncs b/_module/ncs/jw_chargemachine.ncs index 71b1203..024f5f9 100644 Binary files a/_module/ncs/jw_chargemachine.ncs and b/_module/ncs/jw_chargemachine.ncs differ diff --git a/_module/ncs/jw_chk_hasmys1.ncs b/_module/ncs/jw_chk_hasmys1.ncs index cc5462f..9256012 100644 Binary files a/_module/ncs/jw_chk_hasmys1.ncs and b/_module/ncs/jw_chk_hasmys1.ncs differ diff --git a/_module/ncs/jw_chk_hasmys2.ncs b/_module/ncs/jw_chk_hasmys2.ncs index 61285aa..a8726e0 100644 Binary files a/_module/ncs/jw_chk_hasmys2.ncs and b/_module/ncs/jw_chk_hasmys2.ncs differ diff --git a/_module/ncs/jw_chk_hasmys3.ncs b/_module/ncs/jw_chk_hasmys3.ncs index 03d398e..b472782 100644 Binary files a/_module/ncs/jw_chk_hasmys3.ncs and b/_module/ncs/jw_chk_hasmys3.ncs differ diff --git a/_module/ncs/jw_chk_hasmys4.ncs b/_module/ncs/jw_chk_hasmys4.ncs index ee71a1f..af1c5aa 100644 Binary files a/_module/ncs/jw_chk_hasmys4.ncs and b/_module/ncs/jw_chk_hasmys4.ncs differ diff --git a/_module/ncs/jw_chk_hasmys5.ncs b/_module/ncs/jw_chk_hasmys5.ncs index 84635b5..c3bc7e3 100644 Binary files a/_module/ncs/jw_chk_hasmys5.ncs and b/_module/ncs/jw_chk_hasmys5.ncs differ diff --git a/_module/ncs/jw_chk_hasmys6.ncs b/_module/ncs/jw_chk_hasmys6.ncs index 54eab42..aaa842b 100644 Binary files a/_module/ncs/jw_chk_hasmys6.ncs and b/_module/ncs/jw_chk_hasmys6.ncs differ diff --git a/_module/ncs/jw_chourm_usd.ncs b/_module/ncs/jw_chourm_usd.ncs index 1c36129..12e1b8f 100644 Binary files a/_module/ncs/jw_chourm_usd.ncs and b/_module/ncs/jw_chourm_usd.ncs differ diff --git a/_module/ncs/jw_clone_ai.ncs b/_module/ncs/jw_clone_ai.ncs index cab455e..0f29bd3 100644 Binary files a/_module/ncs/jw_clone_ai.ncs and b/_module/ncs/jw_clone_ai.ncs differ diff --git a/_module/ncs/jw_coffin_end_co.ncs b/_module/ncs/jw_coffin_end_co.ncs index 80e0cd4..31e1ceb 100644 Binary files a/_module/ncs/jw_coffin_end_co.ncs and b/_module/ncs/jw_coffin_end_co.ncs differ diff --git a/_module/ncs/jw_corky_spawn.ncs b/_module/ncs/jw_corky_spawn.ncs index ebfa062..b9aaf7d 100644 Binary files a/_module/ncs/jw_corky_spawn.ncs and b/_module/ncs/jw_corky_spawn.ncs differ diff --git a/_module/ncs/jw_crog_opendr.ncs b/_module/ncs/jw_crog_opendr.ncs index 1a735b8..b559791 100644 Binary files a/_module/ncs/jw_crog_opendr.ncs and b/_module/ncs/jw_crog_opendr.ncs differ diff --git a/_module/ncs/jw_cryptarea_exi.ncs b/_module/ncs/jw_cryptarea_exi.ncs index 8cb6f60..062a2e5 100644 Binary files a/_module/ncs/jw_cryptarea_exi.ncs and b/_module/ncs/jw_cryptarea_exi.ncs differ diff --git a/_module/ncs/jw_cvamp_spawn.ncs b/_module/ncs/jw_cvamp_spawn.ncs index 998133e..0307a83 100644 Binary files a/_module/ncs/jw_cvamp_spawn.ncs and b/_module/ncs/jw_cvamp_spawn.ncs differ diff --git a/_module/ncs/jw_darkenbeast_s.ncs b/_module/ncs/jw_darkenbeast_s.ncs index 3c5d8de..b00f3d6 100644 Binary files a/_module/ncs/jw_darkenbeast_s.ncs and b/_module/ncs/jw_darkenbeast_s.ncs differ diff --git a/_module/ncs/jw_deepminer_sp.ncs b/_module/ncs/jw_deepminer_sp.ncs index 918e63c..6047525 100644 Binary files a/_module/ncs/jw_deepminer_sp.ncs and b/_module/ncs/jw_deepminer_sp.ncs differ diff --git a/_module/ncs/jw_deer_usd.ncs b/_module/ncs/jw_deer_usd.ncs index ae506be..0638e89 100644 Binary files a/_module/ncs/jw_deer_usd.ncs and b/_module/ncs/jw_deer_usd.ncs differ diff --git a/_module/ncs/jw_deformgard_sp.ncs b/_module/ncs/jw_deformgard_sp.ncs index e5f051a..4753cdf 100644 Binary files a/_module/ncs/jw_deformgard_sp.ncs and b/_module/ncs/jw_deformgard_sp.ncs differ diff --git a/_module/ncs/jw_disbeast_spaw.ncs b/_module/ncs/jw_disbeast_spaw.ncs index 0aa4d5f..aa2d21f 100644 Binary files a/_module/ncs/jw_disbeast_spaw.ncs and b/_module/ncs/jw_disbeast_spaw.ncs differ diff --git a/_module/ncs/jw_dog_usd.ncs b/_module/ncs/jw_dog_usd.ncs index f962bd0..de30ba0 100644 Binary files a/_module/ncs/jw_dog_usd.ncs and b/_module/ncs/jw_dog_usd.ncs differ diff --git a/_module/ncs/jw_dogdoor_open.ncs b/_module/ncs/jw_dogdoor_open.ncs index 25c25c1..c279439 100644 Binary files a/_module/ncs/jw_dogdoor_open.ncs and b/_module/ncs/jw_dogdoor_open.ncs differ diff --git a/_module/ncs/jw_dogdoor_usd.ncs b/_module/ncs/jw_dogdoor_usd.ncs index 97962bc..3445248 100644 Binary files a/_module/ncs/jw_dogdoor_usd.ncs and b/_module/ncs/jw_dogdoor_usd.ncs differ diff --git a/_module/ncs/jw_doglever_onof.ncs b/_module/ncs/jw_doglever_onof.ncs index 392b74f..78f8589 100644 Binary files a/_module/ncs/jw_doglever_onof.ncs and b/_module/ncs/jw_doglever_onof.ncs differ diff --git a/_module/ncs/jw_door4to3_open.ncs b/_module/ncs/jw_door4to3_open.ncs index c90637c..daaf4f2 100644 Binary files a/_module/ncs/jw_door4to3_open.ncs and b/_module/ncs/jw_door4to3_open.ncs differ diff --git a/_module/ncs/jw_door_open.ncs b/_module/ncs/jw_door_open.ncs index eb59a78..02f2cd8 100644 Binary files a/_module/ncs/jw_door_open.ncs and b/_module/ncs/jw_door_open.ncs differ diff --git a/_module/ncs/jw_door_open_lvr.ncs b/_module/ncs/jw_door_open_lvr.ncs index 8d0cf41..b4c15cc 100644 Binary files a/_module/ncs/jw_door_open_lvr.ncs and b/_module/ncs/jw_door_open_lvr.ncs differ diff --git a/_module/ncs/jw_doordummy_spa.ncs b/_module/ncs/jw_doordummy_spa.ncs index 37f99b6..60826d9 100644 Binary files a/_module/ncs/jw_doordummy_spa.ncs and b/_module/ncs/jw_doordummy_spa.ncs differ diff --git a/_module/ncs/jw_doordummy_usd.ncs b/_module/ncs/jw_doordummy_usd.ncs index c395d05..5b3ec16 100644 Binary files a/_module/ncs/jw_doordummy_usd.ncs and b/_module/ncs/jw_doordummy_usd.ncs differ diff --git a/_module/ncs/jw_dopple_spawn.ncs b/_module/ncs/jw_dopple_spawn.ncs index 104ca0e..e1964cf 100644 Binary files a/_module/ncs/jw_dopple_spawn.ncs and b/_module/ncs/jw_dopple_spawn.ncs differ diff --git a/_module/ncs/jw_dopple_usd.ncs b/_module/ncs/jw_dopple_usd.ncs index 5257bf0..966ec90 100644 Binary files a/_module/ncs/jw_dopple_usd.ncs and b/_module/ncs/jw_dopple_usd.ncs differ diff --git a/_module/ncs/jw_dragon_spawn.ncs b/_module/ncs/jw_dragon_spawn.ncs index fc65116..19a30b4 100644 Binary files a/_module/ncs/jw_dragon_spawn.ncs and b/_module/ncs/jw_dragon_spawn.ncs differ diff --git a/_module/ncs/jw_dridvamp_sp.ncs b/_module/ncs/jw_dridvamp_sp.ncs index 644886c..f8df1cf 100644 Binary files a/_module/ncs/jw_dridvamp_sp.ncs and b/_module/ncs/jw_dridvamp_sp.ncs differ diff --git a/_module/ncs/jw_dridvamp_usd.ncs b/_module/ncs/jw_dridvamp_usd.ncs index 98c9dfd..dd45849 100644 Binary files a/_module/ncs/jw_dridvamp_usd.ncs and b/_module/ncs/jw_dridvamp_usd.ncs differ diff --git a/_module/ncs/jw_drowboss_spaw.ncs b/_module/ncs/jw_drowboss_spaw.ncs index 0d26bba..03d7f4e 100644 Binary files a/_module/ncs/jw_drowboss_spaw.ncs and b/_module/ncs/jw_drowboss_spaw.ncs differ diff --git a/_module/ncs/jw_drunk_usd.ncs b/_module/ncs/jw_drunk_usd.ncs index 35c8eb9..88e88a9 100644 Binary files a/_module/ncs/jw_drunk_usd.ncs and b/_module/ncs/jw_drunk_usd.ncs differ diff --git a/_module/ncs/jw_duergasla_usd.ncs b/_module/ncs/jw_duergasla_usd.ncs index 913d85a..b0937ba 100644 Binary files a/_module/ncs/jw_duergasla_usd.ncs and b/_module/ncs/jw_duergasla_usd.ncs differ diff --git a/_module/ncs/jw_dungeon_enter.ncs b/_module/ncs/jw_dungeon_enter.ncs index ba60998..1279ad0 100644 Binary files a/_module/ncs/jw_dungeon_enter.ncs and b/_module/ncs/jw_dungeon_enter.ncs differ diff --git a/_module/ncs/jw_elvbooks_dist.ncs b/_module/ncs/jw_elvbooks_dist.ncs index 21060ab..f90018a 100644 Binary files a/_module/ncs/jw_elvbooks_dist.ncs and b/_module/ncs/jw_elvbooks_dist.ncs differ diff --git a/_module/ncs/jw_erthb_spawn.ncs b/_module/ncs/jw_erthb_spawn.ncs index 4e76b2c..70dc853 100644 Binary files a/_module/ncs/jw_erthb_spawn.ncs and b/_module/ncs/jw_erthb_spawn.ncs differ diff --git a/_module/ncs/jw_erthbetfog_a.ncs b/_module/ncs/jw_erthbetfog_a.ncs index 6e743e4..75e651e 100644 Binary files a/_module/ncs/jw_erthbetfog_a.ncs and b/_module/ncs/jw_erthbetfog_a.ncs differ diff --git a/_module/ncs/jw_firefun_spell.ncs b/_module/ncs/jw_firefun_spell.ncs index 8b74c2e..5d203a2 100644 Binary files a/_module/ncs/jw_firefun_spell.ncs and b/_module/ncs/jw_firefun_spell.ncs differ diff --git a/_module/ncs/jw_firemon_sp.ncs b/_module/ncs/jw_firemon_sp.ncs index a865b45..53cfc58 100644 Binary files a/_module/ncs/jw_firemon_sp.ncs and b/_module/ncs/jw_firemon_sp.ncs differ diff --git a/_module/ncs/jw_firemonster_u.ncs b/_module/ncs/jw_firemonster_u.ncs index 508e74a..5d8ff0f 100644 Binary files a/_module/ncs/jw_firemonster_u.ncs and b/_module/ncs/jw_firemonster_u.ncs differ diff --git a/_module/ncs/jw_fireoven_use.ncs b/_module/ncs/jw_fireoven_use.ncs index b1ed828..2240879 100644 Binary files a/_module/ncs/jw_fireoven_use.ncs and b/_module/ncs/jw_fireoven_use.ncs differ diff --git a/_module/ncs/jw_foven_use.ncs b/_module/ncs/jw_foven_use.ncs index 5a0881e..64f41ef 100644 Binary files a/_module/ncs/jw_foven_use.ncs and b/_module/ncs/jw_foven_use.ncs differ diff --git a/_module/ncs/jw_gcubeaoe_ent.ncs b/_module/ncs/jw_gcubeaoe_ent.ncs index 5c2b41e..6e05469 100644 Binary files a/_module/ncs/jw_gcubeaoe_ent.ncs and b/_module/ncs/jw_gcubeaoe_ent.ncs differ diff --git a/_module/ncs/jw_gcubeaoe_hb.ncs b/_module/ncs/jw_gcubeaoe_hb.ncs index 68aad7b..2ee6500 100644 Binary files a/_module/ncs/jw_gcubeaoe_hb.ncs and b/_module/ncs/jw_gcubeaoe_hb.ncs differ diff --git a/_module/ncs/jw_ghost_spawn.ncs b/_module/ncs/jw_ghost_spawn.ncs index 44392c1..44e2a65 100644 Binary files a/_module/ncs/jw_ghost_spawn.ncs and b/_module/ncs/jw_ghost_spawn.ncs differ diff --git a/_module/ncs/jw_ghoull_usd.ncs b/_module/ncs/jw_ghoull_usd.ncs index 191d8ec..41246c1 100644 Binary files a/_module/ncs/jw_ghoull_usd.ncs and b/_module/ncs/jw_ghoull_usd.ncs differ diff --git a/_module/ncs/jw_ghoulord_spaw.ncs b/_module/ncs/jw_ghoulord_spaw.ncs index 0d26bba..03d7f4e 100644 Binary files a/_module/ncs/jw_ghoulord_spaw.ncs and b/_module/ncs/jw_ghoulord_spaw.ncs differ diff --git a/_module/ncs/jw_girl_runaddie.ncs b/_module/ncs/jw_girl_runaddie.ncs index 17b17da..8030b03 100644 Binary files a/_module/ncs/jw_girl_runaddie.ncs and b/_module/ncs/jw_girl_runaddie.ncs differ diff --git a/_module/ncs/jw_girlvictm_usd.ncs b/_module/ncs/jw_girlvictm_usd.ncs index eeffced..9611a19 100644 Binary files a/_module/ncs/jw_girlvictm_usd.ncs and b/_module/ncs/jw_girlvictm_usd.ncs differ diff --git a/_module/ncs/jw_gnoll1_spawn.ncs b/_module/ncs/jw_gnoll1_spawn.ncs index 01be75a..97f119a 100644 Binary files a/_module/ncs/jw_gnoll1_spawn.ncs and b/_module/ncs/jw_gnoll1_spawn.ncs differ diff --git a/_module/ncs/jw_gnoll2_spawn.ncs b/_module/ncs/jw_gnoll2_spawn.ncs index 41373b6..7db1e86 100644 Binary files a/_module/ncs/jw_gnoll2_spawn.ncs and b/_module/ncs/jw_gnoll2_spawn.ncs differ diff --git a/_module/ncs/jw_gnollha_spawn.ncs b/_module/ncs/jw_gnollha_spawn.ncs index 21d59cc..bcc9c36 100644 Binary files a/_module/ncs/jw_gnollha_spawn.ncs and b/_module/ncs/jw_gnollha_spawn.ncs differ diff --git a/_module/ncs/jw_gobalch_use.ncs b/_module/ncs/jw_gobalch_use.ncs index 6234820..e542427 100644 Binary files a/_module/ncs/jw_gobalch_use.ncs and b/_module/ncs/jw_gobalch_use.ncs differ diff --git a/_module/ncs/jw_gobboalch_use.ncs b/_module/ncs/jw_gobboalch_use.ncs index f6fe3dd..5182c51 100644 Binary files a/_module/ncs/jw_gobboalch_use.ncs and b/_module/ncs/jw_gobboalch_use.ncs differ diff --git a/_module/ncs/jw_gobwiz_usd.ncs b/_module/ncs/jw_gobwiz_usd.ncs index 4f9b543..c90bb8e 100644 Binary files a/_module/ncs/jw_gobwiz_usd.ncs and b/_module/ncs/jw_gobwiz_usd.ncs differ diff --git a/_module/ncs/jw_golem_spawn.ncs b/_module/ncs/jw_golem_spawn.ncs index 2cda511..db4dd53 100644 Binary files a/_module/ncs/jw_golem_spawn.ncs and b/_module/ncs/jw_golem_spawn.ncs differ diff --git a/_module/ncs/jw_golemn_spawn.ncs b/_module/ncs/jw_golemn_spawn.ncs index 6d67755..cb91bf8 100644 Binary files a/_module/ncs/jw_golemn_spawn.ncs and b/_module/ncs/jw_golemn_spawn.ncs differ diff --git a/_module/ncs/jw_golemn_usd.ncs b/_module/ncs/jw_golemn_usd.ncs index 5a7a0dc..40fe3df 100644 Binary files a/_module/ncs/jw_golemn_usd.ncs and b/_module/ncs/jw_golemn_usd.ncs differ diff --git a/_module/ncs/jw_goody_exit.ncs b/_module/ncs/jw_goody_exit.ncs index 590ef52..0b21b1c 100644 Binary files a/_module/ncs/jw_goody_exit.ncs and b/_module/ncs/jw_goody_exit.ncs differ diff --git a/_module/ncs/jw_grell_usd.ncs b/_module/ncs/jw_grell_usd.ncs index f46a70a..3437eef 100644 Binary files a/_module/ncs/jw_grell_usd.ncs and b/_module/ncs/jw_grell_usd.ncs differ diff --git a/_module/ncs/jw_guard_spawn.ncs b/_module/ncs/jw_guard_spawn.ncs index c82feb4..061b49c 100644 Binary files a/_module/ncs/jw_guard_spawn.ncs and b/_module/ncs/jw_guard_spawn.ncs differ diff --git a/_module/ncs/jw_half_fem_usd.ncs b/_module/ncs/jw_half_fem_usd.ncs index 0b09fff..5f1ca98 100644 Binary files a/_module/ncs/jw_half_fem_usd.ncs and b/_module/ncs/jw_half_fem_usd.ncs differ diff --git a/_module/ncs/jw_half_mal_usd.ncs b/_module/ncs/jw_half_mal_usd.ncs index 0ebba11..0688dcc 100644 Binary files a/_module/ncs/jw_half_mal_usd.ncs and b/_module/ncs/jw_half_mal_usd.ncs differ diff --git a/_module/ncs/jw_halfbar_chc.ncs b/_module/ncs/jw_halfbar_chc.ncs index 491453e..7a39f4c 100644 Binary files a/_module/ncs/jw_halfbar_chc.ncs and b/_module/ncs/jw_halfbar_chc.ncs differ diff --git a/_module/ncs/jw_halfling_con_.ncs b/_module/ncs/jw_halfling_con_.ncs index 41cbf9c..91d5989 100644 Binary files a/_module/ncs/jw_halfling_con_.ncs and b/_module/ncs/jw_halfling_con_.ncs differ diff --git a/_module/ncs/jw_halfling_usd.ncs b/_module/ncs/jw_halfling_usd.ncs index 16735b2..b91de7d 100644 Binary files a/_module/ncs/jw_halfling_usd.ncs and b/_module/ncs/jw_halfling_usd.ncs differ diff --git a/_module/ncs/jw_hurt_object.ncs b/_module/ncs/jw_hurt_object.ncs index ae41fd7..78fab62 100644 Binary files a/_module/ncs/jw_hurt_object.ncs and b/_module/ncs/jw_hurt_object.ncs differ diff --git a/_module/ncs/jw_icespider_usd.ncs b/_module/ncs/jw_icespider_usd.ncs index 2345ead..1e375a6 100644 Binary files a/_module/ncs/jw_icespider_usd.ncs and b/_module/ncs/jw_icespider_usd.ncs differ diff --git a/_module/ncs/jw_im_nextcolour.ncs b/_module/ncs/jw_im_nextcolour.ncs index 2221d95..ccfecd7 100644 Binary files a/_module/ncs/jw_im_nextcolour.ncs and b/_module/ncs/jw_im_nextcolour.ncs differ diff --git a/_module/ncs/jw_im_prevcolour.ncs b/_module/ncs/jw_im_prevcolour.ncs index 24f9c88..df3e4db 100644 Binary files a/_module/ncs/jw_im_prevcolour.ncs and b/_module/ncs/jw_im_prevcolour.ncs differ diff --git a/_module/ncs/jw_innef_sp.ncs b/_module/ncs/jw_innef_sp.ncs index eed7a4d..df07ca0 100644 Binary files a/_module/ncs/jw_innef_sp.ncs and b/_module/ncs/jw_innef_sp.ncs differ diff --git a/_module/ncs/jw_jeghri_spell.ncs b/_module/ncs/jw_jeghri_spell.ncs index 2d80d5e..057deb6 100644 Binary files a/_module/ncs/jw_jeghri_spell.ncs and b/_module/ncs/jw_jeghri_spell.ncs differ diff --git a/_module/ncs/jw_jump_trig_cl2.ncs b/_module/ncs/jw_jump_trig_cl2.ncs index d4d2a77..a3a1afe 100644 Binary files a/_module/ncs/jw_jump_trig_cl2.ncs and b/_module/ncs/jw_jump_trig_cl2.ncs differ diff --git a/_module/ncs/jw_jump_trig_cli.ncs b/_module/ncs/jw_jump_trig_cli.ncs index bc2b8e1..1423424 100644 Binary files a/_module/ncs/jw_jump_trig_cli.ncs and b/_module/ncs/jw_jump_trig_cli.ncs differ diff --git a/_module/ncs/jw_jump_trig_ok.ncs b/_module/ncs/jw_jump_trig_ok.ncs index 6a22ed7..e61a37a 100644 Binary files a/_module/ncs/jw_jump_trig_ok.ncs and b/_module/ncs/jw_jump_trig_ok.ncs differ diff --git a/_module/ncs/jw_killer_usd.ncs b/_module/ncs/jw_killer_usd.ncs index 5f93704..e4ccfbf 100644 Binary files a/_module/ncs/jw_killer_usd.ncs and b/_module/ncs/jw_killer_usd.ncs differ diff --git a/_module/ncs/jw_leavetr4ac_tr.ncs b/_module/ncs/jw_leavetr4ac_tr.ncs index e83eb2b..72a19aa 100644 Binary files a/_module/ncs/jw_leavetr4ac_tr.ncs and b/_module/ncs/jw_leavetr4ac_tr.ncs differ diff --git a/_module/ncs/jw_leveactrig_en.ncs b/_module/ncs/jw_leveactrig_en.ncs index fd2ba39..6b9e742 100644 Binary files a/_module/ncs/jw_leveactrig_en.ncs and b/_module/ncs/jw_leveactrig_en.ncs differ diff --git a/_module/ncs/jw_lever_onoff.ncs b/_module/ncs/jw_lever_onoff.ncs index 9519eca..6b67dc5 100644 Binary files a/_module/ncs/jw_lever_onoff.ncs and b/_module/ncs/jw_lever_onoff.ncs differ diff --git a/_module/ncs/jw_lever_usd.ncs b/_module/ncs/jw_lever_usd.ncs index 51a4d62..9cabe17 100644 Binary files a/_module/ncs/jw_lever_usd.ncs and b/_module/ncs/jw_lever_usd.ncs differ diff --git a/_module/ncs/jw_lighting_usd.ncs b/_module/ncs/jw_lighting_usd.ncs index f2b3087..7ef58a4 100644 Binary files a/_module/ncs/jw_lighting_usd.ncs and b/_module/ncs/jw_lighting_usd.ncs differ diff --git a/_module/ncs/jw_lion_spawn.ncs b/_module/ncs/jw_lion_spawn.ncs index 85e8d53..48ad0ba 100644 Binary files a/_module/ncs/jw_lion_spawn.ncs and b/_module/ncs/jw_lion_spawn.ncs differ diff --git a/_module/ncs/jw_lion_usd.ncs b/_module/ncs/jw_lion_usd.ncs index a3e658a..d0b1533 100644 Binary files a/_module/ncs/jw_lion_usd.ncs and b/_module/ncs/jw_lion_usd.ncs differ diff --git a/_module/ncs/jw_lockdoor_open.ncs b/_module/ncs/jw_lockdoor_open.ncs index ec13dc1..7238040 100644 Binary files a/_module/ncs/jw_lockdoor_open.ncs and b/_module/ncs/jw_lockdoor_open.ncs differ diff --git a/_module/ncs/jw_lybear_d.ncs b/_module/ncs/jw_lybear_d.ncs index d7b17ec..77a4d48 100644 Binary files a/_module/ncs/jw_lybear_d.ncs and b/_module/ncs/jw_lybear_d.ncs differ diff --git a/_module/ncs/jw_machone_distu.ncs b/_module/ncs/jw_machone_distu.ncs index c5782e6..e6c2aa8 100644 Binary files a/_module/ncs/jw_machone_distu.ncs and b/_module/ncs/jw_machone_distu.ncs differ diff --git a/_module/ncs/jw_malar_used.ncs b/_module/ncs/jw_malar_used.ncs index 3409cbb..52e35f0 100644 Binary files a/_module/ncs/jw_malar_used.ncs and b/_module/ncs/jw_malar_used.ncs differ diff --git a/_module/ncs/jw_marshboss_exi.ncs b/_module/ncs/jw_marshboss_exi.ncs index 7dcdf82..b4befa5 100644 Binary files a/_module/ncs/jw_marshboss_exi.ncs and b/_module/ncs/jw_marshboss_exi.ncs differ diff --git a/_module/ncs/jw_maus_exit.ncs b/_module/ncs/jw_maus_exit.ncs index 7d73c55..958f2cc 100644 Binary files a/_module/ncs/jw_maus_exit.ncs and b/_module/ncs/jw_maus_exit.ncs differ diff --git a/_module/ncs/jw_mines3dr_open.ncs b/_module/ncs/jw_mines3dr_open.ncs index 48d2265..955c687 100644 Binary files a/_module/ncs/jw_mines3dr_open.ncs and b/_module/ncs/jw_mines3dr_open.ncs differ diff --git a/_module/ncs/jw_mobtran_si_en.ncs b/_module/ncs/jw_mobtran_si_en.ncs index 8978ce7..57f79b3 100644 Binary files a/_module/ncs/jw_mobtran_si_en.ncs and b/_module/ncs/jw_mobtran_si_en.ncs differ diff --git a/_module/ncs/jw_mobtransf_ent.ncs b/_module/ncs/jw_mobtransf_ent.ncs index b74d2c5..46eff0d 100644 Binary files a/_module/ncs/jw_mobtransf_ent.ncs and b/_module/ncs/jw_mobtransf_ent.ncs differ diff --git a/_module/ncs/jw_mobtscic_ent.ncs b/_module/ncs/jw_mobtscic_ent.ncs index 9ce2417..e847eb4 100644 Binary files a/_module/ncs/jw_mobtscic_ent.ncs and b/_module/ncs/jw_mobtscic_ent.ncs differ diff --git a/_module/ncs/jw_moradin_open.ncs b/_module/ncs/jw_moradin_open.ncs index ba5e387..c2baaf4 100644 Binary files a/_module/ncs/jw_moradin_open.ncs and b/_module/ncs/jw_moradin_open.ncs differ diff --git a/_module/ncs/jw_mordsword_spn.ncs b/_module/ncs/jw_mordsword_spn.ncs index 78228a5..ac0b21c 100644 Binary files a/_module/ncs/jw_mordsword_spn.ncs and b/_module/ncs/jw_mordsword_spn.ncs differ diff --git a/_module/ncs/jw_mosbraz_spell.ncs b/_module/ncs/jw_mosbraz_spell.ncs index 131e8b3..ee12bd1 100644 Binary files a/_module/ncs/jw_mosbraz_spell.ncs and b/_module/ncs/jw_mosbraz_spell.ncs differ diff --git a/_module/ncs/jw_mosbraz_use.ncs b/_module/ncs/jw_mosbraz_use.ncs index 2f14998..146dde3 100644 Binary files a/_module/ncs/jw_mosbraz_use.ncs and b/_module/ncs/jw_mosbraz_use.ncs differ diff --git a/_module/ncs/jw_mose_cat_exit.ncs b/_module/ncs/jw_mose_cat_exit.ncs index 5ba1014..2782040 100644 Binary files a/_module/ncs/jw_mose_cat_exit.ncs and b/_module/ncs/jw_mose_cat_exit.ncs differ diff --git a/_module/ncs/jw_mystra_open.ncs b/_module/ncs/jw_mystra_open.ncs index 7b30742..d2725ac 100644 Binary files a/_module/ncs/jw_mystra_open.ncs and b/_module/ncs/jw_mystra_open.ncs differ diff --git a/_module/ncs/jw_neg_vortspawn.ncs b/_module/ncs/jw_neg_vortspawn.ncs index f1360fb..6df1dac 100644 Binary files a/_module/ncs/jw_neg_vortspawn.ncs and b/_module/ncs/jw_neg_vortspawn.ncs differ diff --git a/_module/ncs/jw_negvortex_usd.ncs b/_module/ncs/jw_negvortex_usd.ncs index 8b84e45..d0ebf85 100644 Binary files a/_module/ncs/jw_negvortex_usd.ncs and b/_module/ncs/jw_negvortex_usd.ncs differ diff --git a/_module/ncs/jw_new_armoire_o.ncs b/_module/ncs/jw_new_armoire_o.ncs index d1d6e37..f7178b4 100644 Binary files a/_module/ncs/jw_new_armoire_o.ncs and b/_module/ncs/jw_new_armoire_o.ncs differ diff --git a/_module/ncs/jw_new_attack_co.ncs b/_module/ncs/jw_new_attack_co.ncs index b3d755d..9adca0b 100644 Binary files a/_module/ncs/jw_new_attack_co.ncs and b/_module/ncs/jw_new_attack_co.ncs differ diff --git a/_module/ncs/jw_new_bguard_sp.ncs b/_module/ncs/jw_new_bguard_sp.ncs index 1d5cf12..e59dbce 100644 Binary files a/_module/ncs/jw_new_bguard_sp.ncs and b/_module/ncs/jw_new_bguard_sp.ncs differ diff --git a/_module/ncs/jw_new_bigdrfail.ncs b/_module/ncs/jw_new_bigdrfail.ncs index 22b29d4..e03d365 100644 Binary files a/_module/ncs/jw_new_bigdrfail.ncs and b/_module/ncs/jw_new_bigdrfail.ncs differ diff --git a/_module/ncs/jw_new_br_con_sc.ncs b/_module/ncs/jw_new_br_con_sc.ncs index 7655bb3..0dd539a 100644 Binary files a/_module/ncs/jw_new_br_con_sc.ncs and b/_module/ncs/jw_new_br_con_sc.ncs differ diff --git a/_module/ncs/jw_new_br_dr_bar.ncs b/_module/ncs/jw_new_br_dr_bar.ncs index e8a107c..1da9078 100644 Binary files a/_module/ncs/jw_new_br_dr_bar.ncs and b/_module/ncs/jw_new_br_dr_bar.ncs differ diff --git a/_module/ncs/jw_new_br_opendo.ncs b/_module/ncs/jw_new_br_opendo.ncs index f75f9fa..074abaa 100644 Binary files a/_module/ncs/jw_new_br_opendo.ncs and b/_module/ncs/jw_new_br_opendo.ncs differ diff --git a/_module/ncs/jw_new_chck_p8ai.ncs b/_module/ncs/jw_new_chck_p8ai.ncs index 07f6583..d0a81b6 100644 Binary files a/_module/ncs/jw_new_chck_p8ai.ncs and b/_module/ncs/jw_new_chck_p8ai.ncs differ diff --git a/_module/ncs/jw_new_drins_fai.ncs b/_module/ncs/jw_new_drins_fai.ncs index 33710a6..6f19148 100644 Binary files a/_module/ncs/jw_new_drins_fai.ncs and b/_module/ncs/jw_new_drins_fai.ncs differ diff --git a/_module/ncs/jw_new_walk_wp.ncs b/_module/ncs/jw_new_walk_wp.ncs index 3a803a7..6e39ac6 100644 Binary files a/_module/ncs/jw_new_walk_wp.ncs and b/_module/ncs/jw_new_walk_wp.ncs differ diff --git a/_module/ncs/jw_new_zen_def4.ncs b/_module/ncs/jw_new_zen_def4.ncs index baa6e2b..6218262 100644 Binary files a/_module/ncs/jw_new_zen_def4.ncs and b/_module/ncs/jw_new_zen_def4.ncs differ diff --git a/_module/ncs/jw_new_zen_def6.ncs b/_module/ncs/jw_new_zen_def6.ncs index e5439d2..d247bd0 100644 Binary files a/_module/ncs/jw_new_zen_def6.ncs and b/_module/ncs/jw_new_zen_def6.ncs differ diff --git a/_module/ncs/jw_new_zen_def8.ncs b/_module/ncs/jw_new_zen_def8.ncs index 78d3cb2..46e20de 100644 Binary files a/_module/ncs/jw_new_zen_def8.ncs and b/_module/ncs/jw_new_zen_def8.ncs differ diff --git a/_module/ncs/jw_new_zen_hb.ncs b/_module/ncs/jw_new_zen_hb.ncs index 6eb02fb..5981bc1 100644 Binary files a/_module/ncs/jw_new_zen_hb.ncs and b/_module/ncs/jw_new_zen_hb.ncs differ diff --git a/_module/ncs/jw_new_zh_dr_fai.ncs b/_module/ncs/jw_new_zh_dr_fai.ncs index 1782fdf..5d8884d 100644 Binary files a/_module/ncs/jw_new_zh_dr_fai.ncs and b/_module/ncs/jw_new_zh_dr_fai.ncs differ diff --git a/_module/ncs/jw_new_zh_dr_op.ncs b/_module/ncs/jw_new_zh_dr_op.ncs index 20b3767..3be8840 100644 Binary files a/_module/ncs/jw_new_zh_dr_op.ncs and b/_module/ncs/jw_new_zh_dr_op.ncs differ diff --git a/_module/ncs/jw_new_zhpat_spa.ncs b/_module/ncs/jw_new_zhpat_spa.ncs index e3faa78..958b3f1 100644 Binary files a/_module/ncs/jw_new_zhpat_spa.ncs and b/_module/ncs/jw_new_zhpat_spa.ncs differ diff --git a/_module/ncs/jw_newgaurd_usd.ncs b/_module/ncs/jw_newgaurd_usd.ncs index 41b86d4..d57a39e 100644 Binary files a/_module/ncs/jw_newgaurd_usd.ncs and b/_module/ncs/jw_newgaurd_usd.ncs differ diff --git a/_module/ncs/jw_night_usd.ncs b/_module/ncs/jw_night_usd.ncs index 7114e8d..4fb5b9f 100644 Binary files a/_module/ncs/jw_night_usd.ncs and b/_module/ncs/jw_night_usd.ncs differ diff --git a/_module/ncs/jw_nighthag_usd.ncs b/_module/ncs/jw_nighthag_usd.ncs index 298cbef..87bc7d2 100644 Binary files a/_module/ncs/jw_nighthag_usd.ncs and b/_module/ncs/jw_nighthag_usd.ncs differ diff --git a/_module/ncs/jw_noxp_baldeath.ncs b/_module/ncs/jw_noxp_baldeath.ncs index 26ece62..6410320 100644 Binary files a/_module/ncs/jw_noxp_baldeath.ncs and b/_module/ncs/jw_noxp_baldeath.ncs differ diff --git a/_module/ncs/jw_nun_gelc_usd.ncs b/_module/ncs/jw_nun_gelc_usd.ncs index 78b6cf6..3f0eb74 100644 Binary files a/_module/ncs/jw_nun_gelc_usd.ncs and b/_module/ncs/jw_nun_gelc_usd.ncs differ diff --git a/_module/ncs/jw_nun_wild_eff.ncs b/_module/ncs/jw_nun_wild_eff.ncs index aa181f1..ce166d4 100644 Binary files a/_module/ncs/jw_nun_wild_eff.ncs and b/_module/ncs/jw_nun_wild_eff.ncs differ diff --git a/_module/ncs/jw_ogregrds_usd.ncs b/_module/ncs/jw_ogregrds_usd.ncs index 32972e0..2c4c72c 100644 Binary files a/_module/ncs/jw_ogregrds_usd.ncs and b/_module/ncs/jw_ogregrds_usd.ncs differ diff --git a/_module/ncs/jw_orbwraith_sp.ncs b/_module/ncs/jw_orbwraith_sp.ncs index 53cb055..6934e2f 100644 Binary files a/_module/ncs/jw_orbwraith_sp.ncs and b/_module/ncs/jw_orbwraith_sp.ncs differ diff --git a/_module/ncs/jw_palorsscript.ncs b/_module/ncs/jw_palorsscript.ncs index 5d9c462..87fb964 100644 Binary files a/_module/ncs/jw_palorsscript.ncs and b/_module/ncs/jw_palorsscript.ncs differ diff --git a/_module/ncs/jw_panth_spawn.ncs b/_module/ncs/jw_panth_spawn.ncs index 2b23c25..0af84c7 100644 Binary files a/_module/ncs/jw_panth_spawn.ncs and b/_module/ncs/jw_panth_spawn.ncs differ diff --git a/_module/ncs/jw_panth_usd.ncs b/_module/ncs/jw_panth_usd.ncs index 285e2d9..04fe12c 100644 Binary files a/_module/ncs/jw_panth_usd.ncs and b/_module/ncs/jw_panth_usd.ncs differ diff --git a/_module/ncs/jw_parmold_ent.ncs b/_module/ncs/jw_parmold_ent.ncs index 7f9c4f3..56dbd4b 100644 Binary files a/_module/ncs/jw_parmold_ent.ncs and b/_module/ncs/jw_parmold_ent.ncs differ diff --git a/_module/ncs/jw_parmold_hb.ncs b/_module/ncs/jw_parmold_hb.ncs index ed8e88e..3895e71 100644 Binary files a/_module/ncs/jw_parmold_hb.ncs and b/_module/ncs/jw_parmold_hb.ncs differ diff --git a/_module/ncs/jw_phat_li_spn.ncs b/_module/ncs/jw_phat_li_spn.ncs index 0e1cc5a..77997ec 100644 Binary files a/_module/ncs/jw_phat_li_spn.ncs and b/_module/ncs/jw_phat_li_spn.ncs differ diff --git a/_module/ncs/jw_phat_palre_us.ncs b/_module/ncs/jw_phat_palre_us.ncs index 6293483..178e709 100644 Binary files a/_module/ncs/jw_phat_palre_us.ncs and b/_module/ncs/jw_phat_palre_us.ncs differ diff --git a/_module/ncs/jw_phat_rav_sp.ncs b/_module/ncs/jw_phat_rav_sp.ncs index e1e8fc2..eca46b7 100644 Binary files a/_module/ncs/jw_phat_rav_sp.ncs and b/_module/ncs/jw_phat_rav_sp.ncs differ diff --git a/_module/ncs/jw_phat_spawn.ncs b/_module/ncs/jw_phat_spawn.ncs index 90d4cd0..6fc73cf 100644 Binary files a/_module/ncs/jw_phat_spawn.ncs and b/_module/ncs/jw_phat_spawn.ncs differ diff --git a/_module/ncs/jw_pit_enter.ncs b/_module/ncs/jw_pit_enter.ncs index 9a017a4..28e808f 100644 Binary files a/_module/ncs/jw_pit_enter.ncs and b/_module/ncs/jw_pit_enter.ncs differ diff --git a/_module/ncs/jw_pit_enter2.ncs b/_module/ncs/jw_pit_enter2.ncs index 98c29a7..34aa665 100644 Binary files a/_module/ncs/jw_pit_enter2.ncs and b/_module/ncs/jw_pit_enter2.ncs differ diff --git a/_module/ncs/jw_piukk_disturb.ncs b/_module/ncs/jw_piukk_disturb.ncs index 9963093..d1136ac 100644 Binary files a/_module/ncs/jw_piukk_disturb.ncs and b/_module/ncs/jw_piukk_disturb.ncs differ diff --git a/_module/ncs/jw_plant2_death.ncs b/_module/ncs/jw_plant2_death.ncs index fe716f9..b0eb95e 100644 Binary files a/_module/ncs/jw_plant2_death.ncs and b/_module/ncs/jw_plant2_death.ncs differ diff --git a/_module/ncs/jw_plant_death.ncs b/_module/ncs/jw_plant_death.ncs index 36c507c..caef912 100644 Binary files a/_module/ncs/jw_plant_death.ncs and b/_module/ncs/jw_plant_death.ncs differ diff --git a/_module/ncs/jw_plant_spawn.ncs b/_module/ncs/jw_plant_spawn.ncs index 3fb7e1c..732a3b3 100644 Binary files a/_module/ncs/jw_plant_spawn.ncs and b/_module/ncs/jw_plant_spawn.ncs differ diff --git a/_module/ncs/jw_plotdoor_open.ncs b/_module/ncs/jw_plotdoor_open.ncs index 654d786..e0bd3cc 100644 Binary files a/_module/ncs/jw_plotdoor_open.ncs and b/_module/ncs/jw_plotdoor_open.ncs differ diff --git a/_module/ncs/jw_proto_lich_sp.ncs b/_module/ncs/jw_proto_lich_sp.ncs index ae668cd..210a80e 100644 Binary files a/_module/ncs/jw_proto_lich_sp.ncs and b/_module/ncs/jw_proto_lich_sp.ncs differ diff --git a/_module/ncs/jw_queenspider_s.ncs b/_module/ncs/jw_queenspider_s.ncs index 2b424d1..2a52647 100644 Binary files a/_module/ncs/jw_queenspider_s.ncs and b/_module/ncs/jw_queenspider_s.ncs differ diff --git a/_module/ncs/jw_quith_spawn.ncs b/_module/ncs/jw_quith_spawn.ncs index 1aec3e4..7f69f99 100644 Binary files a/_module/ncs/jw_quith_spawn.ncs and b/_module/ncs/jw_quith_spawn.ncs differ diff --git a/_module/ncs/jw_quith_usd.ncs b/_module/ncs/jw_quith_usd.ncs index d3be469..45a383b 100644 Binary files a/_module/ncs/jw_quith_usd.ncs and b/_module/ncs/jw_quith_usd.ncs differ diff --git a/_module/ncs/jw_rany_death.ncs b/_module/ncs/jw_rany_death.ncs index 8a7d9f7..c7351ee 100644 Binary files a/_module/ncs/jw_rany_death.ncs and b/_module/ncs/jw_rany_death.ncs differ diff --git a/_module/ncs/jw_rany_hb.ncs b/_module/ncs/jw_rany_hb.ncs index 5c867fc..f33ec51 100644 Binary files a/_module/ncs/jw_rany_hb.ncs and b/_module/ncs/jw_rany_hb.ncs differ diff --git a/_module/ncs/jw_rany_stay.ncs b/_module/ncs/jw_rany_stay.ncs index 0520979..d30dcc0 100644 Binary files a/_module/ncs/jw_rany_stay.ncs and b/_module/ncs/jw_rany_stay.ncs differ diff --git a/_module/ncs/jw_raven_spawn.ncs b/_module/ncs/jw_raven_spawn.ncs index 150fc54..6795da4 100644 Binary files a/_module/ncs/jw_raven_spawn.ncs and b/_module/ncs/jw_raven_spawn.ncs differ diff --git a/_module/ncs/jw_raven_usd.ncs b/_module/ncs/jw_raven_usd.ncs index 22090cc..a2e0e7b 100644 Binary files a/_module/ncs/jw_raven_usd.ncs and b/_module/ncs/jw_raven_usd.ncs differ diff --git a/_module/ncs/jw_resume_wwp.ncs b/_module/ncs/jw_resume_wwp.ncs index 08231bd..29a8afb 100644 Binary files a/_module/ncs/jw_resume_wwp.ncs and b/_module/ncs/jw_resume_wwp.ncs differ diff --git a/_module/ncs/jw_resume_wwprun.ncs b/_module/ncs/jw_resume_wwprun.ncs index 0191863..181715d 100644 Binary files a/_module/ncs/jw_resume_wwprun.ncs and b/_module/ncs/jw_resume_wwprun.ncs differ diff --git a/_module/ncs/jw_reswwp_usd.ncs b/_module/ncs/jw_reswwp_usd.ncs index 4ece067..343fcd8 100644 Binary files a/_module/ncs/jw_reswwp_usd.ncs and b/_module/ncs/jw_reswwp_usd.ncs differ diff --git a/_module/ncs/jw_revenancer_us.ncs b/_module/ncs/jw_revenancer_us.ncs index b534f17..a287222 100644 Binary files a/_module/ncs/jw_revenancer_us.ncs and b/_module/ncs/jw_revenancer_us.ncs differ diff --git a/_module/ncs/jw_rogex_spn.ncs b/_module/ncs/jw_rogex_spn.ncs index 068a4d9..43650db 100644 Binary files a/_module/ncs/jw_rogex_spn.ncs and b/_module/ncs/jw_rogex_spn.ncs differ diff --git a/_module/ncs/jw_rogex_usd.ncs b/_module/ncs/jw_rogex_usd.ncs index dfa0d0b..7b42f31 100644 Binary files a/_module/ncs/jw_rogex_usd.ncs and b/_module/ncs/jw_rogex_usd.ncs differ diff --git a/_module/ncs/jw_rotflesh_usd.ncs b/_module/ncs/jw_rotflesh_usd.ncs index 1bd42c5..ef68582 100644 Binary files a/_module/ncs/jw_rotflesh_usd.ncs and b/_module/ncs/jw_rotflesh_usd.ncs differ diff --git a/_module/ncs/jw_sembdun_exit.ncs b/_module/ncs/jw_sembdun_exit.ncs index 81da900..1ddf00a 100644 Binary files a/_module/ncs/jw_sembdun_exit.ncs and b/_module/ncs/jw_sembdun_exit.ncs differ diff --git a/_module/ncs/jw_sembdun_usd.ncs b/_module/ncs/jw_sembdun_usd.ncs index 37542d8..43ed998 100644 Binary files a/_module/ncs/jw_sembdun_usd.ncs and b/_module/ncs/jw_sembdun_usd.ncs differ diff --git a/_module/ncs/jw_shade_disturb.ncs b/_module/ncs/jw_shade_disturb.ncs index 448189d..c09df4a 100644 Binary files a/_module/ncs/jw_shade_disturb.ncs and b/_module/ncs/jw_shade_disturb.ncs differ diff --git a/_module/ncs/jw_shocker_spawm.ncs b/_module/ncs/jw_shocker_spawm.ncs index 41ae79b..22e0c00 100644 Binary files a/_module/ncs/jw_shocker_spawm.ncs and b/_module/ncs/jw_shocker_spawm.ncs differ diff --git a/_module/ncs/jw_si_gard_soul_.ncs b/_module/ncs/jw_si_gard_soul_.ncs index 7066ea1..9b8f895 100644 Binary files a/_module/ncs/jw_si_gard_soul_.ncs and b/_module/ncs/jw_si_gard_soul_.ncs differ diff --git a/_module/ncs/jw_si_grd_tr_clk.ncs b/_module/ncs/jw_si_grd_tr_clk.ncs index 5baf263..429b4b4 100644 Binary files a/_module/ncs/jw_si_grd_tr_clk.ncs and b/_module/ncs/jw_si_grd_tr_clk.ncs differ diff --git a/_module/ncs/jw_si_make_acid.ncs b/_module/ncs/jw_si_make_acid.ncs index 4d0f174..b4b0dcd 100644 Binary files a/_module/ncs/jw_si_make_acid.ncs and b/_module/ncs/jw_si_make_acid.ncs differ diff --git a/_module/ncs/jw_si_make_death.ncs b/_module/ncs/jw_si_make_death.ncs index a7498f6..a484f66 100644 Binary files a/_module/ncs/jw_si_make_death.ncs and b/_module/ncs/jw_si_make_death.ncs differ diff --git a/_module/ncs/jw_si_make_fire.ncs b/_module/ncs/jw_si_make_fire.ncs index 51ac635..946e725 100644 Binary files a/_module/ncs/jw_si_make_fire.ncs and b/_module/ncs/jw_si_make_fire.ncs differ diff --git a/_module/ncs/jw_si_make_ice.ncs b/_module/ncs/jw_si_make_ice.ncs index 31e1d5a..b1c9011 100644 Binary files a/_module/ncs/jw_si_make_ice.ncs and b/_module/ncs/jw_si_make_ice.ncs differ diff --git a/_module/ncs/jw_si_make_light.ncs b/_module/ncs/jw_si_make_light.ncs index fc5b77e..ebee4f0 100644 Binary files a/_module/ncs/jw_si_make_light.ncs and b/_module/ncs/jw_si_make_light.ncs differ diff --git a/_module/ncs/jw_si_make_sonic.ncs b/_module/ncs/jw_si_make_sonic.ncs index 0084385..39e3ba2 100644 Binary files a/_module/ncs/jw_si_make_sonic.ncs and b/_module/ncs/jw_si_make_sonic.ncs differ diff --git a/_module/ncs/jw_silvertra_use.ncs b/_module/ncs/jw_silvertra_use.ncs index 8f12fca..5a3fbc8 100644 Binary files a/_module/ncs/jw_silvertra_use.ncs and b/_module/ncs/jw_silvertra_use.ncs differ diff --git a/_module/ncs/jw_siruin_exit.ncs b/_module/ncs/jw_siruin_exit.ncs index 9df8e08..1036dab 100644 Binary files a/_module/ncs/jw_siruin_exit.ncs and b/_module/ncs/jw_siruin_exit.ncs differ diff --git a/_module/ncs/jw_skel_spawn.ncs b/_module/ncs/jw_skel_spawn.ncs index a4f3204..91c938a 100644 Binary files a/_module/ncs/jw_skel_spawn.ncs and b/_module/ncs/jw_skel_spawn.ncs differ diff --git a/_module/ncs/jw_slasrath_us.ncs b/_module/ncs/jw_slasrath_us.ncs index b4bad8f..d137f5e 100644 Binary files a/_module/ncs/jw_slasrath_us.ncs and b/_module/ncs/jw_slasrath_us.ncs differ diff --git a/_module/ncs/jw_smarttrig_en.ncs b/_module/ncs/jw_smarttrig_en.ncs index 831eed3..0ebc108 100644 Binary files a/_module/ncs/jw_smarttrig_en.ncs and b/_module/ncs/jw_smarttrig_en.ncs differ diff --git a/_module/ncs/jw_smarttrig_ent.ncs b/_module/ncs/jw_smarttrig_ent.ncs index 831eed3..0ebc108 100644 Binary files a/_module/ncs/jw_smarttrig_ent.ncs and b/_module/ncs/jw_smarttrig_ent.ncs differ diff --git a/_module/ncs/jw_smith_cutscen.ncs b/_module/ncs/jw_smith_cutscen.ncs index 3755fb5..3b5fb63 100644 Binary files a/_module/ncs/jw_smith_cutscen.ncs and b/_module/ncs/jw_smith_cutscen.ncs differ diff --git a/_module/ncs/jw_smith_enter.ncs b/_module/ncs/jw_smith_enter.ncs index cd8f574..a8539ae 100644 Binary files a/_module/ncs/jw_smith_enter.ncs and b/_module/ncs/jw_smith_enter.ncs differ diff --git a/_module/ncs/jw_smith_usd.ncs b/_module/ncs/jw_smith_usd.ncs index 9dbce1a..f147a8f 100644 Binary files a/_module/ncs/jw_smith_usd.ncs and b/_module/ncs/jw_smith_usd.ncs differ diff --git a/_module/ncs/jw_smithmain_ent.ncs b/_module/ncs/jw_smithmain_ent.ncs index fd3aa01..e2bc73f 100644 Binary files a/_module/ncs/jw_smithmain_ent.ncs and b/_module/ncs/jw_smithmain_ent.ncs differ diff --git a/_module/ncs/jw_snivmin_usd.ncs b/_module/ncs/jw_snivmin_usd.ncs index b02a120..19b5374 100644 Binary files a/_module/ncs/jw_snivmin_usd.ncs and b/_module/ncs/jw_snivmin_usd.ncs differ diff --git a/_module/ncs/jw_snwiusd_stlth.ncs b/_module/ncs/jw_snwiusd_stlth.ncs index 9d6facd..987f665 100644 Binary files a/_module/ncs/jw_snwiusd_stlth.ncs and b/_module/ncs/jw_snwiusd_stlth.ncs differ diff --git a/_module/ncs/jw_sonbird_usd.ncs b/_module/ncs/jw_sonbird_usd.ncs index f28afda..e3c92c2 100644 Binary files a/_module/ncs/jw_sonbird_usd.ncs and b/_module/ncs/jw_sonbird_usd.ncs differ diff --git a/_module/ncs/jw_songbird_hb.ncs b/_module/ncs/jw_songbird_hb.ncs index c88d92f..bdb7674 100644 Binary files a/_module/ncs/jw_songbird_hb.ncs and b/_module/ncs/jw_songbird_hb.ncs differ diff --git a/_module/ncs/jw_sp_wildamnotr.ncs b/_module/ncs/jw_sp_wildamnotr.ncs index 1be6cb6..0a6872c 100644 Binary files a/_module/ncs/jw_sp_wildamnotr.ncs and b/_module/ncs/jw_sp_wildamnotr.ncs differ diff --git a/_module/ncs/jw_spawn_chourm.ncs b/_module/ncs/jw_spawn_chourm.ncs index 7932e8e..d98b3e2 100644 Binary files a/_module/ncs/jw_spawn_chourm.ncs and b/_module/ncs/jw_spawn_chourm.ncs differ diff --git a/_module/ncs/jw_spawn_dead.ncs b/_module/ncs/jw_spawn_dead.ncs index fe97461..4d39ffa 100644 Binary files a/_module/ncs/jw_spawn_dead.ncs and b/_module/ncs/jw_spawn_dead.ncs differ diff --git a/_module/ncs/jw_spawn_notreas.ncs b/_module/ncs/jw_spawn_notreas.ncs index 07c6a86..06e8cc2 100644 Binary files a/_module/ncs/jw_spawn_notreas.ncs and b/_module/ncs/jw_spawn_notreas.ncs differ diff --git a/_module/ncs/jw_spawn_notrsxp.ncs b/_module/ncs/jw_spawn_notrsxp.ncs index 16355f5..4b3c94b 100644 Binary files a/_module/ncs/jw_spawn_notrsxp.ncs and b/_module/ncs/jw_spawn_notrsxp.ncs differ diff --git a/_module/ncs/jw_spawn_trapped.ncs b/_module/ncs/jw_spawn_trapped.ncs index 3dc74ce..154f0be 100644 Binary files a/_module/ncs/jw_spawn_trapped.ncs and b/_module/ncs/jw_spawn_trapped.ncs differ diff --git a/_module/ncs/jw_spawnwirun_wp.ncs b/_module/ncs/jw_spawnwirun_wp.ncs index 3b4ba7b..267f47b 100644 Binary files a/_module/ncs/jw_spawnwirun_wp.ncs and b/_module/ncs/jw_spawnwirun_wp.ncs differ diff --git a/_module/ncs/jw_spawnwiusd.ncs b/_module/ncs/jw_spawnwiusd.ncs index 5b5a4d6..2413699 100644 Binary files a/_module/ncs/jw_spawnwiusd.ncs and b/_module/ncs/jw_spawnwiusd.ncs differ diff --git a/_module/ncs/jw_spiderstn_spn.ncs b/_module/ncs/jw_spiderstn_spn.ncs index 359ee41..455f130 100644 Binary files a/_module/ncs/jw_spiderstn_spn.ncs and b/_module/ncs/jw_spiderstn_spn.ncs differ diff --git a/_module/ncs/jw_spitspider_us.ncs b/_module/ncs/jw_spitspider_us.ncs index 7271414..c0c4892 100644 Binary files a/_module/ncs/jw_spitspider_us.ncs and b/_module/ncs/jw_spitspider_us.ncs differ diff --git a/_module/ncs/jw_spn_wi_wingbl.ncs b/_module/ncs/jw_spn_wi_wingbl.ncs index cd0c455..dbd875c 100644 Binary files a/_module/ncs/jw_spn_wi_wingbl.ncs and b/_module/ncs/jw_spn_wi_wingbl.ncs differ diff --git a/_module/ncs/jw_spwn_notenc.ncs b/_module/ncs/jw_spwn_notenc.ncs index e7e55ac..9280f4f 100644 Binary files a/_module/ncs/jw_spwn_notenc.ncs and b/_module/ncs/jw_spwn_notenc.ncs differ diff --git a/_module/ncs/jw_ss2bs_tr_oc.ncs b/_module/ncs/jw_ss2bs_tr_oc.ncs index b46547c..0c05665 100644 Binary files a/_module/ncs/jw_ss2bs_tr_oc.ncs and b/_module/ncs/jw_ss2bs_tr_oc.ncs differ diff --git a/_module/ncs/jw_ss2ts_tr_oc.ncs b/_module/ncs/jw_ss2ts_tr_oc.ncs index e7d31a7..057208b 100644 Binary files a/_module/ncs/jw_ss2ts_tr_oc.ncs and b/_module/ncs/jw_ss2ts_tr_oc.ncs differ diff --git a/_module/ncs/jw_stonef_spawn.ncs b/_module/ncs/jw_stonef_spawn.ncs index 3be63b2..0a5faa2 100644 Binary files a/_module/ncs/jw_stonef_spawn.ncs and b/_module/ncs/jw_stonef_spawn.ncs differ diff --git a/_module/ncs/jw_taghen_usd.ncs b/_module/ncs/jw_taghen_usd.ncs index f13d277..d01051a 100644 Binary files a/_module/ncs/jw_taghen_usd.ncs and b/_module/ncs/jw_taghen_usd.ncs differ diff --git a/_module/ncs/jw_talindra_spaw.ncs b/_module/ncs/jw_talindra_spaw.ncs index 164f73f..5613d99 100644 Binary files a/_module/ncs/jw_talindra_spaw.ncs and b/_module/ncs/jw_talindra_spaw.ncs differ diff --git a/_module/ncs/jw_talindra_usd.ncs b/_module/ncs/jw_talindra_usd.ncs index 54c0ecd..a581ea9 100644 Binary files a/_module/ncs/jw_talindra_usd.ncs and b/_module/ncs/jw_talindra_usd.ncs differ diff --git a/_module/ncs/jw_testreasure_s.ncs b/_module/ncs/jw_testreasure_s.ncs index 5d5df21..1529da1 100644 Binary files a/_module/ncs/jw_testreasure_s.ncs and b/_module/ncs/jw_testreasure_s.ncs differ diff --git a/_module/ncs/jw_thesk_give.ncs b/_module/ncs/jw_thesk_give.ncs index 36efd2a..b9e5534 100644 Binary files a/_module/ncs/jw_thesk_give.ncs and b/_module/ncs/jw_thesk_give.ncs differ diff --git a/_module/ncs/jw_thief_usd.ncs b/_module/ncs/jw_thief_usd.ncs index 7a17cc8..131af12 100644 Binary files a/_module/ncs/jw_thief_usd.ncs and b/_module/ncs/jw_thief_usd.ncs differ diff --git a/_module/ncs/jw_tort_spawn.ncs b/_module/ncs/jw_tort_spawn.ncs index 19ff7a9..a9e83c0 100644 Binary files a/_module/ncs/jw_tort_spawn.ncs and b/_module/ncs/jw_tort_spawn.ncs differ diff --git a/_module/ncs/jw_tr4bh_trig_ex.ncs b/_module/ncs/jw_tr4bh_trig_ex.ncs index 63dbbf3..758e7ff 100644 Binary files a/_module/ncs/jw_tr4bh_trig_ex.ncs and b/_module/ncs/jw_tr4bh_trig_ex.ncs differ diff --git a/_module/ncs/jw_transpa_spawn.ncs b/_module/ncs/jw_transpa_spawn.ncs index 7a99f2a..8a1286a 100644 Binary files a/_module/ncs/jw_transpa_spawn.ncs and b/_module/ncs/jw_transpa_spawn.ncs differ diff --git a/_module/ncs/jw_trap_detector.ncs b/_module/ncs/jw_trap_detector.ncs index b07ed1d..e8cb449 100644 Binary files a/_module/ncs/jw_trap_detector.ncs and b/_module/ncs/jw_trap_detector.ncs differ diff --git a/_module/ncs/jw_trap_dogstri.ncs b/_module/ncs/jw_trap_dogstri.ncs index d6dc407..f2184cb 100644 Binary files a/_module/ncs/jw_trap_dogstri.ncs and b/_module/ncs/jw_trap_dogstri.ncs differ diff --git a/_module/ncs/jw_trap_trig_hb.ncs b/_module/ncs/jw_trap_trig_hb.ncs index 9a0a90e..94b8a62 100644 Binary files a/_module/ncs/jw_trap_trig_hb.ncs and b/_module/ncs/jw_trap_trig_hb.ncs differ diff --git a/_module/ncs/jw_troll_door_op.ncs b/_module/ncs/jw_troll_door_op.ncs index 86ffbc1..590589b 100644 Binary files a/_module/ncs/jw_troll_door_op.ncs and b/_module/ncs/jw_troll_door_op.ncs differ diff --git a/_module/ncs/jw_troll_spawn.ncs b/_module/ncs/jw_troll_spawn.ncs index 94ee780..1bdc98d 100644 Binary files a/_module/ncs/jw_troll_spawn.ncs and b/_module/ncs/jw_troll_spawn.ncs differ diff --git a/_module/ncs/jw_trollund_spaw.ncs b/_module/ncs/jw_trollund_spaw.ncs index 319124a..f50e2e2 100644 Binary files a/_module/ncs/jw_trollund_spaw.ncs and b/_module/ncs/jw_trollund_spaw.ncs differ diff --git a/_module/ncs/jw_ts2ss_tr_oc.ncs b/_module/ncs/jw_ts2ss_tr_oc.ncs index 8322f45..ce0d1f0 100644 Binary files a/_module/ncs/jw_ts2ss_tr_oc.ncs and b/_module/ncs/jw_ts2ss_tr_oc.ncs differ diff --git a/_module/ncs/jw_undgon_rit.ncs b/_module/ncs/jw_undgon_rit.ncs index 8e71557..6fd4e95 100644 Binary files a/_module/ncs/jw_undgon_rit.ncs and b/_module/ncs/jw_undgon_rit.ncs differ diff --git a/_module/ncs/jw_undgon_spawn.ncs b/_module/ncs/jw_undgon_spawn.ncs index fcb338f..36fb6d9 100644 Binary files a/_module/ncs/jw_undgon_spawn.ncs and b/_module/ncs/jw_undgon_spawn.ncs differ diff --git a/_module/ncs/jw_undgon_usd.ncs b/_module/ncs/jw_undgon_usd.ncs index c15a055..476b0c9 100644 Binary files a/_module/ncs/jw_undgon_usd.ncs and b/_module/ncs/jw_undgon_usd.ncs differ diff --git a/_module/ncs/jw_undr_open.ncs b/_module/ncs/jw_undr_open.ncs index 16eabf8..5a6799b 100644 Binary files a/_module/ncs/jw_undr_open.ncs and b/_module/ncs/jw_undr_open.ncs differ diff --git a/_module/ncs/jw_undun4_exit.ncs b/_module/ncs/jw_undun4_exit.ncs index c5ea4b4..9972162 100644 Binary files a/_module/ncs/jw_undun4_exit.ncs and b/_module/ncs/jw_undun4_exit.ncs differ diff --git a/_module/ncs/jw_unlocdoor_clo.ncs b/_module/ncs/jw_unlocdoor_clo.ncs index d961730..57aca57 100644 Binary files a/_module/ncs/jw_unlocdoor_clo.ncs and b/_module/ncs/jw_unlocdoor_clo.ncs differ diff --git a/_module/ncs/jw_unlocdoor_ope.ncs b/_module/ncs/jw_unlocdoor_ope.ncs index 4262812..99ff046 100644 Binary files a/_module/ncs/jw_unlocdoor_ope.ncs and b/_module/ncs/jw_unlocdoor_ope.ncs differ diff --git a/_module/ncs/jw_unlockedr_ope.ncs b/_module/ncs/jw_unlockedr_ope.ncs index 9236899..8e991e9 100644 Binary files a/_module/ncs/jw_unlockedr_ope.ncs and b/_module/ncs/jw_unlockedr_ope.ncs differ diff --git a/_module/ncs/jw_vlasiks_spawn.ncs b/_module/ncs/jw_vlasiks_spawn.ncs index 513ad46..2abd4fc 100644 Binary files a/_module/ncs/jw_vlasiks_spawn.ncs and b/_module/ncs/jw_vlasiks_spawn.ncs differ diff --git a/_module/ncs/jw_vlasiks_usd.ncs b/_module/ncs/jw_vlasiks_usd.ncs index a8eb5c7..499a4b6 100644 Binary files a/_module/ncs/jw_vlasiks_usd.ncs and b/_module/ncs/jw_vlasiks_usd.ncs differ diff --git a/_module/ncs/jw_wand_rest.ncs b/_module/ncs/jw_wand_rest.ncs index f0243a1..cbd4907 100644 Binary files a/_module/ncs/jw_wand_rest.ncs and b/_module/ncs/jw_wand_rest.ncs differ diff --git a/_module/ncs/jw_werewolf_usd.ncs b/_module/ncs/jw_werewolf_usd.ncs index ac9fa06..85c6f32 100644 Binary files a/_module/ncs/jw_werewolf_usd.ncs and b/_module/ncs/jw_werewolf_usd.ncs differ diff --git a/_module/ncs/jw_wilberfor_usd.ncs b/_module/ncs/jw_wilberfor_usd.ncs index 2ae4af0..6ec2923 100644 Binary files a/_module/ncs/jw_wilberfor_usd.ncs and b/_module/ncs/jw_wilberfor_usd.ncs differ diff --git a/_module/ncs/jw_woodelf_usd.ncs b/_module/ncs/jw_woodelf_usd.ncs index ad1467a..ecba3fe 100644 Binary files a/_module/ncs/jw_woodelf_usd.ncs and b/_module/ncs/jw_woodelf_usd.ncs differ diff --git a/_module/ncs/jw_wulgar_spawn.ncs b/_module/ncs/jw_wulgar_spawn.ncs index a34199f..3491a0a 100644 Binary files a/_module/ncs/jw_wulgar_spawn.ncs and b/_module/ncs/jw_wulgar_spawn.ncs differ diff --git a/_module/ncs/jw_wulgar_usd.ncs b/_module/ncs/jw_wulgar_usd.ncs index 4ac3842..b231f27 100644 Binary files a/_module/ncs/jw_wulgar_usd.ncs and b/_module/ncs/jw_wulgar_usd.ncs differ diff --git a/_module/ncs/jw_x2_im_finis_m.ncs b/_module/ncs/jw_x2_im_finis_m.ncs index a7d6d81..6efcea1 100644 Binary files a/_module/ncs/jw_x2_im_finis_m.ncs and b/_module/ncs/jw_x2_im_finis_m.ncs differ diff --git a/_module/ncs/jw_x2_im_pol_mod.ncs b/_module/ncs/jw_x2_im_pol_mod.ncs index ed65243..bdcd0be 100644 Binary files a/_module/ncs/jw_x2_im_pol_mod.ncs and b/_module/ncs/jw_x2_im_pol_mod.ncs differ diff --git a/_module/ncs/jw_yak_usd.ncs b/_module/ncs/jw_yak_usd.ncs index 73ce5ac..f0e5474 100644 Binary files a/_module/ncs/jw_yak_usd.ncs and b/_module/ncs/jw_yak_usd.ncs differ diff --git a/_module/ncs/jw_yasdoor_open.ncs b/_module/ncs/jw_yasdoor_open.ncs index c008633..1b2370a 100644 Binary files a/_module/ncs/jw_yasdoor_open.ncs and b/_module/ncs/jw_yasdoor_open.ncs differ diff --git a/_module/ncs/jw_zen_fairy_sp.ncs b/_module/ncs/jw_zen_fairy_sp.ncs index 4e45fdd..244f7cd 100644 Binary files a/_module/ncs/jw_zen_fairy_sp.ncs and b/_module/ncs/jw_zen_fairy_sp.ncs differ diff --git a/_module/ncs/jw_zen_fairy_usd.ncs b/_module/ncs/jw_zen_fairy_usd.ncs index d6c3103..c007d98 100644 Binary files a/_module/ncs/jw_zen_fairy_usd.ncs and b/_module/ncs/jw_zen_fairy_usd.ncs differ diff --git a/_module/ncs/jw_zen_magdoor_f.ncs b/_module/ncs/jw_zen_magdoor_f.ncs index 9ff835a..fffedeb 100644 Binary files a/_module/ncs/jw_zen_magdoor_f.ncs and b/_module/ncs/jw_zen_magdoor_f.ncs differ diff --git a/_module/ncs/jw_zen_magdr_fai.ncs b/_module/ncs/jw_zen_magdr_fai.ncs index 341d511..14781bd 100644 Binary files a/_module/ncs/jw_zen_magdr_fai.ncs and b/_module/ncs/jw_zen_magdr_fai.ncs differ diff --git a/_module/ncs/jw_zen_magdr_ope.ncs b/_module/ncs/jw_zen_magdr_ope.ncs index 8047366..ec6e819 100644 Binary files a/_module/ncs/jw_zen_magdr_ope.ncs and b/_module/ncs/jw_zen_magdr_ope.ncs differ diff --git a/_module/ncs/jw_zen_mages_ent.ncs b/_module/ncs/jw_zen_mages_ent.ncs index 6ee1561..8972385 100644 Binary files a/_module/ncs/jw_zen_mages_ent.ncs and b/_module/ncs/jw_zen_mages_ent.ncs differ diff --git a/_module/ncs/jw_zen_magtrig.ncs b/_module/ncs/jw_zen_magtrig.ncs index 65a2db0..bddd1e8 100644 Binary files a/_module/ncs/jw_zen_magtrig.ncs and b/_module/ncs/jw_zen_magtrig.ncs differ diff --git a/_module/ncs/jw_zen_milit_con.ncs b/_module/ncs/jw_zen_milit_con.ncs index 16e9c7b..5d2350c 100644 Binary files a/_module/ncs/jw_zen_milit_con.ncs and b/_module/ncs/jw_zen_milit_con.ncs differ diff --git a/_module/ncs/jw_zhent3_spawn.ncs b/_module/ncs/jw_zhent3_spawn.ncs index 89c6339..8f30600 100644 Binary files a/_module/ncs/jw_zhent3_spawn.ncs and b/_module/ncs/jw_zhent3_spawn.ncs differ diff --git a/_module/ncs/jw_zhent_con.ncs b/_module/ncs/jw_zhent_con.ncs index 72cb408..f66cf0c 100644 Binary files a/_module/ncs/jw_zhent_con.ncs and b/_module/ncs/jw_zhent_con.ncs differ diff --git a/_module/ncs/jw_zhent_pat_cbe.ncs b/_module/ncs/jw_zhent_pat_cbe.ncs index 29751c1..849ad2e 100644 Binary files a/_module/ncs/jw_zhent_pat_cbe.ncs and b/_module/ncs/jw_zhent_pat_cbe.ncs differ diff --git a/_module/ncs/jw_zhenttrig_ent.ncs b/_module/ncs/jw_zhenttrig_ent.ncs index 329c89a..553e1d6 100644 Binary files a/_module/ncs/jw_zhenttrig_ent.ncs and b/_module/ncs/jw_zhenttrig_ent.ncs differ diff --git a/_module/ncs/jw_zhtsftfem_usd.ncs b/_module/ncs/jw_zhtsftfem_usd.ncs index d2aaa44..24464e3 100644 Binary files a/_module/ncs/jw_zhtsftfem_usd.ncs and b/_module/ncs/jw_zhtsftfem_usd.ncs differ diff --git a/_module/ncs/jw_zovut_usd.ncs b/_module/ncs/jw_zovut_usd.ncs index 7bb1304..6bbbcab 100644 Binary files a/_module/ncs/jw_zovut_usd.ncs and b/_module/ncs/jw_zovut_usd.ncs differ diff --git a/_module/ncs/mod_activate.ncs b/_module/ncs/mod_activate.ncs index 07619f0..384f329 100644 Binary files a/_module/ncs/mod_activate.ncs and b/_module/ncs/mod_activate.ncs differ diff --git a/_module/ncs/mod_death.ncs b/_module/ncs/mod_death.ncs index 2766540..a014bd6 100644 Binary files a/_module/ncs/mod_death.ncs and b/_module/ncs/mod_death.ncs differ diff --git a/_module/ncs/mod_respawn.ncs b/_module/ncs/mod_respawn.ncs index 6bd7680..3dd5d23 100644 Binary files a/_module/ncs/mod_respawn.ncs and b/_module/ncs/mod_respawn.ncs differ diff --git a/_module/ncs/mod_resting.ncs b/_module/ncs/mod_resting.ncs index 189a08d..17db245 100644 Binary files a/_module/ncs/mod_resting.ncs and b/_module/ncs/mod_resting.ncs differ diff --git a/_module/ncs/mouther_spawn.ncs b/_module/ncs/mouther_spawn.ncs index 1669410..70b3308 100644 Binary files a/_module/ncs/mouther_spawn.ncs and b/_module/ncs/mouther_spawn.ncs differ diff --git a/_module/ncs/nk_am2_ogretrap.ncs b/_module/ncs/nk_am2_ogretrap.ncs index 6b6a2db..f42530e 100644 Binary files a/_module/ncs/nk_am2_ogretrap.ncs and b/_module/ncs/nk_am2_ogretrap.ncs differ diff --git a/_module/ncs/nk_doorcloselock.ncs b/_module/ncs/nk_doorcloselock.ncs index e2b7ae6..f47e6a4 100644 Binary files a/_module/ncs/nk_doorcloselock.ncs and b/_module/ncs/nk_doorcloselock.ncs differ diff --git a/_module/ncs/nk_drcloselck240.ncs b/_module/ncs/nk_drcloselck240.ncs index 5145d1a..6eded32 100644 Binary files a/_module/ncs/nk_drcloselck240.ncs and b/_module/ncs/nk_drcloselck240.ncs differ diff --git a/_module/ncs/nk_facewest.ncs b/_module/ncs/nk_facewest.ncs index a1f0244..034941b 100644 Binary files a/_module/ncs/nk_facewest.ncs and b/_module/ncs/nk_facewest.ncs differ diff --git a/_module/ncs/nk_fp_balordeath.ncs b/_module/ncs/nk_fp_balordeath.ncs index 30e0619..4a4128b 100644 Binary files a/_module/ncs/nk_fp_balordeath.ncs and b/_module/ncs/nk_fp_balordeath.ncs differ diff --git a/_module/ncs/nk_fp_createston.ncs b/_module/ncs/nk_fp_createston.ncs index 6b23dd0..2cece0d 100644 Binary files a/_module/ncs/nk_fp_createston.ncs and b/_module/ncs/nk_fp_createston.ncs differ diff --git a/_module/ncs/nk_fp_door3close.ncs b/_module/ncs/nk_fp_door3close.ncs index 62871c0..d0d6901 100644 Binary files a/_module/ncs/nk_fp_door3close.ncs and b/_module/ncs/nk_fp_door3close.ncs differ diff --git a/_module/ncs/nk_fp_impopen.ncs b/_module/ncs/nk_fp_impopen.ncs index 80f382e..e89759c 100644 Binary files a/_module/ncs/nk_fp_impopen.ncs and b/_module/ncs/nk_fp_impopen.ncs differ diff --git a/_module/ncs/nk_fp_polyimp.ncs b/_module/ncs/nk_fp_polyimp.ncs index 06f0f8a..f6c58c9 100644 Binary files a/_module/ncs/nk_fp_polyimp.ncs and b/_module/ncs/nk_fp_polyimp.ncs differ diff --git a/_module/ncs/nk_fp_pp01.ncs b/_module/ncs/nk_fp_pp01.ncs index b7bb412..c598d7f 100644 Binary files a/_module/ncs/nk_fp_pp01.ncs and b/_module/ncs/nk_fp_pp01.ncs differ diff --git a/_module/ncs/nk_fp_weightente.ncs b/_module/ncs/nk_fp_weightente.ncs index 31846e5..bb5de4c 100644 Binary files a/_module/ncs/nk_fp_weightente.ncs and b/_module/ncs/nk_fp_weightente.ncs differ diff --git a/_module/ncs/nk_loot_gobbo.ncs b/_module/ncs/nk_loot_gobbo.ncs index 833a735..5700fd7 100644 Binary files a/_module/ncs/nk_loot_gobbo.ncs and b/_module/ncs/nk_loot_gobbo.ncs differ diff --git a/_module/ncs/nk_opengonddoor.ncs b/_module/ncs/nk_opengonddoor.ncs index c618980..d458c85 100644 Binary files a/_module/ncs/nk_opengonddoor.ncs and b/_module/ncs/nk_opengonddoor.ncs differ diff --git a/_module/ncs/nw_c2_default1.ncs b/_module/ncs/nw_c2_default1.ncs index dd9ceb3..d81ac6e 100644 Binary files a/_module/ncs/nw_c2_default1.ncs and b/_module/ncs/nw_c2_default1.ncs differ diff --git a/_module/ncs/nw_c2_default2.ncs b/_module/ncs/nw_c2_default2.ncs index 390d28c..c743e9b 100644 Binary files a/_module/ncs/nw_c2_default2.ncs and b/_module/ncs/nw_c2_default2.ncs differ diff --git a/_module/ncs/nw_c2_default3.ncs b/_module/ncs/nw_c2_default3.ncs index 30c94d3..c54384c 100644 Binary files a/_module/ncs/nw_c2_default3.ncs and b/_module/ncs/nw_c2_default3.ncs differ diff --git a/_module/ncs/nw_c2_default4.ncs b/_module/ncs/nw_c2_default4.ncs index f9e26da..ce6a215 100644 Binary files a/_module/ncs/nw_c2_default4.ncs and b/_module/ncs/nw_c2_default4.ncs differ diff --git a/_module/ncs/nw_c2_default5.ncs b/_module/ncs/nw_c2_default5.ncs index a8ec456..42612c0 100644 Binary files a/_module/ncs/nw_c2_default5.ncs and b/_module/ncs/nw_c2_default5.ncs differ diff --git a/_module/ncs/nw_c2_default6.ncs b/_module/ncs/nw_c2_default6.ncs index 5ab6171..eedf2bc 100644 Binary files a/_module/ncs/nw_c2_default6.ncs and b/_module/ncs/nw_c2_default6.ncs differ diff --git a/_module/ncs/nw_c2_default8.ncs b/_module/ncs/nw_c2_default8.ncs index 9914fbc..d95c279 100644 Binary files a/_module/ncs/nw_c2_default8.ncs and b/_module/ncs/nw_c2_default8.ncs differ diff --git a/_module/ncs/nw_c2_defaultb.ncs b/_module/ncs/nw_c2_defaultb.ncs index 77c49b0..49e625a 100644 Binary files a/_module/ncs/nw_c2_defaultb.ncs and b/_module/ncs/nw_c2_defaultb.ncs differ diff --git a/_module/ncs/nw_c2_dimdoor.ncs b/_module/ncs/nw_c2_dimdoor.ncs index 4fb0b33..1d5bd39 100644 Binary files a/_module/ncs/nw_c2_dimdoor.ncs and b/_module/ncs/nw_c2_dimdoor.ncs differ diff --git a/_module/ncs/nw_c2_dropin9.ncs b/_module/ncs/nw_c2_dropin9.ncs index ba5b2d7..359960f 100644 Binary files a/_module/ncs/nw_c2_dropin9.ncs and b/_module/ncs/nw_c2_dropin9.ncs differ diff --git a/_module/ncs/nw_c2_lycan_9.ncs b/_module/ncs/nw_c2_lycan_9.ncs index f757736..585553b 100644 Binary files a/_module/ncs/nw_c2_lycan_9.ncs and b/_module/ncs/nw_c2_lycan_9.ncs differ diff --git a/_module/ncs/nw_o2_bookshelf.ncs b/_module/ncs/nw_o2_bookshelf.ncs index 65781d1..547ada4 100644 Binary files a/_module/ncs/nw_o2_bookshelf.ncs and b/_module/ncs/nw_o2_bookshelf.ncs differ diff --git a/_module/ncs/nw_o2_boss.ncs b/_module/ncs/nw_o2_boss.ncs index 941c5f5..41e0a0c 100644 Binary files a/_module/ncs/nw_o2_boss.ncs and b/_module/ncs/nw_o2_boss.ncs differ diff --git a/_module/ncs/nw_o2_classhig.ncs b/_module/ncs/nw_o2_classhig.ncs index bb87537..3b9b5de 100644 Binary files a/_module/ncs/nw_o2_classhig.ncs and b/_module/ncs/nw_o2_classhig.ncs differ diff --git a/_module/ncs/nw_o2_classlow.ncs b/_module/ncs/nw_o2_classlow.ncs index 4f49047..c9d01cf 100644 Binary files a/_module/ncs/nw_o2_classlow.ncs and b/_module/ncs/nw_o2_classlow.ncs differ diff --git a/_module/ncs/nw_o2_classmed.ncs b/_module/ncs/nw_o2_classmed.ncs index 5243f0b..431d4a8 100644 Binary files a/_module/ncs/nw_o2_classmed.ncs and b/_module/ncs/nw_o2_classmed.ncs differ diff --git a/_module/ncs/nw_o2_classweap.ncs b/_module/ncs/nw_o2_classweap.ncs index aa88867..99af4d7 100644 Binary files a/_module/ncs/nw_o2_classweap.ncs and b/_module/ncs/nw_o2_classweap.ncs differ diff --git a/_module/ncs/nw_o2_generalhig.ncs b/_module/ncs/nw_o2_generalhig.ncs index c400c5f..8af2e04 100644 Binary files a/_module/ncs/nw_o2_generalhig.ncs and b/_module/ncs/nw_o2_generalhig.ncs differ diff --git a/_module/ncs/nw_o2_generallow.ncs b/_module/ncs/nw_o2_generallow.ncs index 5fba954..377ffac 100644 Binary files a/_module/ncs/nw_o2_generallow.ncs and b/_module/ncs/nw_o2_generallow.ncs differ diff --git a/_module/ncs/nw_o2_generalmed.ncs b/_module/ncs/nw_o2_generalmed.ncs index c17ad51..f296ce8 100644 Binary files a/_module/ncs/nw_o2_generalmed.ncs and b/_module/ncs/nw_o2_generalmed.ncs differ diff --git a/_module/ncs/nw_o2_generalmid.ncs b/_module/ncs/nw_o2_generalmid.ncs index 5243f0b..431d4a8 100644 Binary files a/_module/ncs/nw_o2_generalmid.ncs and b/_module/ncs/nw_o2_generalmid.ncs differ diff --git a/_module/ncs/openstore001.ncs b/_module/ncs/openstore001.ncs index 7eaf792..d4c8449 100644 Binary files a/_module/ncs/openstore001.ncs and b/_module/ncs/openstore001.ncs differ diff --git a/_module/ncs/prevappearance1.ncs b/_module/ncs/prevappearance1.ncs index 16105a9..abfe1b7 100644 Binary files a/_module/ncs/prevappearance1.ncs and b/_module/ncs/prevappearance1.ncs differ diff --git a/_module/ncs/px_alchemytbl.ncs b/_module/ncs/px_alchemytbl.ncs index 1acacac..917f6aa 100644 Binary files a/_module/ncs/px_alchemytbl.ncs and b/_module/ncs/px_alchemytbl.ncs differ diff --git a/_module/ncs/px_boidoc_work.ncs b/_module/ncs/px_boidoc_work.ncs index 6eb1884..5df6120 100644 Binary files a/_module/ncs/px_boidoc_work.ncs and b/_module/ncs/px_boidoc_work.ncs differ diff --git a/_module/ncs/px_curst_spawnin.ncs b/_module/ncs/px_curst_spawnin.ncs index 3df7ee2..ed03b2d 100644 Binary files a/_module/ncs/px_curst_spawnin.ncs and b/_module/ncs/px_curst_spawnin.ncs differ diff --git a/_module/ncs/px_darkspawn.ncs b/_module/ncs/px_darkspawn.ncs index 5a2cf76..717e2bc 100644 Binary files a/_module/ncs/px_darkspawn.ncs and b/_module/ncs/px_darkspawn.ncs differ diff --git a/_module/ncs/px_faeridrag_usd.ncs b/_module/ncs/px_faeridrag_usd.ncs index aaa4c57..0de84db 100644 Binary files a/_module/ncs/px_faeridrag_usd.ncs and b/_module/ncs/px_faeridrag_usd.ncs differ diff --git a/_module/ncs/px_faeriebeing_s.ncs b/_module/ncs/px_faeriebeing_s.ncs index 888712f..b43f667 100644 Binary files a/_module/ncs/px_faeriebeing_s.ncs and b/_module/ncs/px_faeriebeing_s.ncs differ diff --git a/_module/ncs/px_faeriebeing_u.ncs b/_module/ncs/px_faeriebeing_u.ncs index b3d1edc..8d3b8f7 100644 Binary files a/_module/ncs/px_faeriebeing_u.ncs and b/_module/ncs/px_faeriebeing_u.ncs differ diff --git a/_module/ncs/px_faeriedrow_sp.ncs b/_module/ncs/px_faeriedrow_sp.ncs index d0b7db3..64ecdc2 100644 Binary files a/_module/ncs/px_faeriedrow_sp.ncs and b/_module/ncs/px_faeriedrow_sp.ncs differ diff --git a/_module/ncs/px_faeriedrow_us.ncs b/_module/ncs/px_faeriedrow_us.ncs index 4f2690e..1de7389 100644 Binary files a/_module/ncs/px_faeriedrow_us.ncs and b/_module/ncs/px_faeriedrow_us.ncs differ diff --git a/_module/ncs/px_faerienymph_u.ncs b/_module/ncs/px_faerienymph_u.ncs index db1d17d..e13ddd6 100644 Binary files a/_module/ncs/px_faerienymph_u.ncs and b/_module/ncs/px_faerienymph_u.ncs differ diff --git a/_module/ncs/px_faeriespwn_1.ncs b/_module/ncs/px_faeriespwn_1.ncs index 82a0c67..75107be 100644 Binary files a/_module/ncs/px_faeriespwn_1.ncs and b/_module/ncs/px_faeriespwn_1.ncs differ diff --git a/_module/ncs/px_faerispawn_2.ncs b/_module/ncs/px_faerispawn_2.ncs index 2425a77..af1577d 100644 Binary files a/_module/ncs/px_faerispawn_2.ncs and b/_module/ncs/px_faerispawn_2.ncs differ diff --git a/_module/ncs/px_golem_onspwn.ncs b/_module/ncs/px_golem_onspwn.ncs index 9244b20..e105714 100644 Binary files a/_module/ncs/px_golem_onspwn.ncs and b/_module/ncs/px_golem_onspwn.ncs differ diff --git a/_module/ncs/px_golem_usd.ncs b/_module/ncs/px_golem_usd.ncs index 72d9be8..38c1d85 100644 Binary files a/_module/ncs/px_golem_usd.ncs and b/_module/ncs/px_golem_usd.ncs differ diff --git a/_module/ncs/px_grudg_hammer.ncs b/_module/ncs/px_grudg_hammer.ncs index 0d99f2a..9e67b83 100644 Binary files a/_module/ncs/px_grudg_hammer.ncs and b/_module/ncs/px_grudg_hammer.ncs differ diff --git a/_module/ncs/px_grudg_ring.ncs b/_module/ncs/px_grudg_ring.ncs index 1d46c2e..fc0821b 100644 Binary files a/_module/ncs/px_grudg_ring.ncs and b/_module/ncs/px_grudg_ring.ncs differ diff --git a/_module/ncs/px_kezzirspawnin.ncs b/_module/ncs/px_kezzirspawnin.ncs index 80c4a54..6b9877f 100644 Binary files a/_module/ncs/px_kezzirspawnin.ncs and b/_module/ncs/px_kezzirspawnin.ncs differ diff --git a/_module/ncs/px_lightspawn.ncs b/_module/ncs/px_lightspawn.ncs index 3b53af6..93f8b26 100644 Binary files a/_module/ncs/px_lightspawn.ncs and b/_module/ncs/px_lightspawn.ncs differ diff --git a/_module/ncs/px_luc_gate2wnd.ncs b/_module/ncs/px_luc_gate2wnd.ncs index 81f9a68..c8552a5 100644 Binary files a/_module/ncs/px_luc_gate2wnd.ncs and b/_module/ncs/px_luc_gate2wnd.ncs differ diff --git a/_module/ncs/px_lucita_door.ncs b/_module/ncs/px_lucita_door.ncs index 4166bc8..da5ad0f 100644 Binary files a/_module/ncs/px_lucita_door.ncs and b/_module/ncs/px_lucita_door.ncs differ diff --git a/_module/ncs/px_lucita_gate.ncs b/_module/ncs/px_lucita_gate.ncs index 153dac5..ccfa697 100644 Binary files a/_module/ncs/px_lucita_gate.ncs and b/_module/ncs/px_lucita_gate.ncs differ diff --git a/_module/ncs/px_lvl2_machine.ncs b/_module/ncs/px_lvl2_machine.ncs index 903233e..9807cd6 100644 Binary files a/_module/ncs/px_lvl2_machine.ncs and b/_module/ncs/px_lvl2_machine.ncs differ diff --git a/_module/ncs/px_makedoor.ncs b/_module/ncs/px_makedoor.ncs index f35ad69..650fba9 100644 Binary files a/_module/ncs/px_makedoor.ncs and b/_module/ncs/px_makedoor.ncs differ diff --git a/_module/ncs/px_marsh_boss.ncs b/_module/ncs/px_marsh_boss.ncs index 376ea7d..cac7cdd 100644 Binary files a/_module/ncs/px_marsh_boss.ncs and b/_module/ncs/px_marsh_boss.ncs differ diff --git a/_module/ncs/px_marshboss_res.ncs b/_module/ncs/px_marshboss_res.ncs index fea9b31..abb511f 100644 Binary files a/_module/ncs/px_marshboss_res.ncs and b/_module/ncs/px_marshboss_res.ncs differ diff --git a/_module/ncs/px_marshtmpl_fai.ncs b/_module/ncs/px_marshtmpl_fai.ncs index 58aebc3..fdab4ad 100644 Binary files a/_module/ncs/px_marshtmpl_fai.ncs and b/_module/ncs/px_marshtmpl_fai.ncs differ diff --git a/_module/ncs/px_poly_chicken.ncs b/_module/ncs/px_poly_chicken.ncs index 927af45..584f9e0 100644 Binary files a/_module/ncs/px_poly_chicken.ncs and b/_module/ncs/px_poly_chicken.ncs differ diff --git a/_module/ncs/px_polymorph_bad.ncs b/_module/ncs/px_polymorph_bad.ncs index c3087ba..ff6fb0f 100644 Binary files a/_module/ncs/px_polymorph_bad.ncs and b/_module/ncs/px_polymorph_bad.ncs differ diff --git a/_module/ncs/px_polymorph_beh.ncs b/_module/ncs/px_polymorph_beh.ncs index aad104e..5f2c50d 100644 Binary files a/_module/ncs/px_polymorph_beh.ncs and b/_module/ncs/px_polymorph_beh.ncs differ diff --git a/_module/ncs/px_polymorph_cow.ncs b/_module/ncs/px_polymorph_cow.ncs index 6b03e5d..2d4ff84 100644 Binary files a/_module/ncs/px_polymorph_cow.ncs and b/_module/ncs/px_polymorph_cow.ncs differ diff --git a/_module/ncs/px_polymorph_dro.ncs b/_module/ncs/px_polymorph_dro.ncs index 5d7e3b1..7610da0 100644 Binary files a/_module/ncs/px_polymorph_dro.ncs and b/_module/ncs/px_polymorph_dro.ncs differ diff --git a/_module/ncs/px_polymorph_imp.ncs b/_module/ncs/px_polymorph_imp.ncs index 7983a60..b9c8e0e 100644 Binary files a/_module/ncs/px_polymorph_imp.ncs and b/_module/ncs/px_polymorph_imp.ncs differ diff --git a/_module/ncs/px_polymorph_min.ncs b/_module/ncs/px_polymorph_min.ncs index eb36d6c..ca1cec8 100644 Binary files a/_module/ncs/px_polymorph_min.ncs and b/_module/ncs/px_polymorph_min.ncs differ diff --git a/_module/ncs/px_polymorph_rat.ncs b/_module/ncs/px_polymorph_rat.ncs index 9faead3..222e479 100644 Binary files a/_module/ncs/px_polymorph_rat.ncs and b/_module/ncs/px_polymorph_rat.ncs differ diff --git a/_module/ncs/px_polymorph_spi.ncs b/_module/ncs/px_polymorph_spi.ncs index a18cd85..6c70462 100644 Binary files a/_module/ncs/px_polymorph_spi.ncs and b/_module/ncs/px_polymorph_spi.ncs differ diff --git a/_module/ncs/px_polymorph_tro.ncs b/_module/ncs/px_polymorph_tro.ncs index 1d30526..219e8a6 100644 Binary files a/_module/ncs/px_polymorph_tro.ncs and b/_module/ncs/px_polymorph_tro.ncs differ diff --git a/_module/ncs/px_sorelonspawn.ncs b/_module/ncs/px_sorelonspawn.ncs index 65ab7ae..7e8625f 100644 Binary files a/_module/ncs/px_sorelonspawn.ncs and b/_module/ncs/px_sorelonspawn.ncs differ diff --git a/_module/ncs/px_trap_lvl2.ncs b/_module/ncs/px_trap_lvl2.ncs index 20badbc..36096ac 100644 Binary files a/_module/ncs/px_trap_lvl2.ncs and b/_module/ncs/px_trap_lvl2.ncs differ diff --git a/_module/ncs/px_traplvl1fire.ncs b/_module/ncs/px_traplvl1fire.ncs index 6444388..033b7f6 100644 Binary files a/_module/ncs/px_traplvl1fire.ncs and b/_module/ncs/px_traplvl1fire.ncs differ diff --git a/_module/ncs/px_zhenttrap.ncs b/_module/ncs/px_zhenttrap.ncs index f70ad3e..a9730ba 100644 Binary files a/_module/ncs/px_zhenttrap.ncs and b/_module/ncs/px_zhenttrap.ncs differ diff --git a/_module/ncs/sc_attspeaker.ncs b/_module/ncs/sc_attspeaker.ncs index 306e9e4..c76f399 100644 Binary files a/_module/ncs/sc_attspeaker.ncs and b/_module/ncs/sc_attspeaker.ncs differ diff --git a/_module/ncs/sc_farmer_field.ncs b/_module/ncs/sc_farmer_field.ncs index 0261b01..3ae7f76 100644 Binary files a/_module/ncs/sc_farmer_field.ncs and b/_module/ncs/sc_farmer_field.ncs differ diff --git a/_module/ncs/sc_farmer_spawn.ncs b/_module/ncs/sc_farmer_spawn.ncs index 84314e8..5114d55 100644 Binary files a/_module/ncs/sc_farmer_spawn.ncs and b/_module/ncs/sc_farmer_spawn.ncs differ diff --git a/_module/ncs/sc_fmr_hrtbt.ncs b/_module/ncs/sc_fmr_hrtbt.ncs index b9fbdd0..1d19425 100644 Binary files a/_module/ncs/sc_fmr_hrtbt.ncs and b/_module/ncs/sc_fmr_hrtbt.ncs differ diff --git a/_module/ncs/sc_fmr_walkways.ncs b/_module/ncs/sc_fmr_walkways.ncs index f036252..cf34bd1 100644 Binary files a/_module/ncs/sc_fmr_walkways.ncs and b/_module/ncs/sc_fmr_walkways.ncs differ diff --git a/_module/ncs/sc_guard_hb.ncs b/_module/ncs/sc_guard_hb.ncs index 5e9e273..5f0c764 100644 Binary files a/_module/ncs/sc_guard_hb.ncs and b/_module/ncs/sc_guard_hb.ncs differ diff --git a/_module/ncs/sc_guard_percept.ncs b/_module/ncs/sc_guard_percept.ncs index 197fec5..9bd8df1 100644 Binary files a/_module/ncs/sc_guard_percept.ncs and b/_module/ncs/sc_guard_percept.ncs differ diff --git a/_module/ncs/sc_guardcap_u001.ncs b/_module/ncs/sc_guardcap_u001.ncs index 18269e7..03adf47 100644 Binary files a/_module/ncs/sc_guardcap_u001.ncs and b/_module/ncs/sc_guardcap_u001.ncs differ diff --git a/_module/ncs/sc_guards_udef.ncs b/_module/ncs/sc_guards_udef.ncs index 6476777..dbcff65 100644 Binary files a/_module/ncs/sc_guards_udef.ncs and b/_module/ncs/sc_guards_udef.ncs differ diff --git a/_module/ncs/sc_hero_hb.ncs b/_module/ncs/sc_hero_hb.ncs index ce89ba0..b52660d 100644 Binary files a/_module/ncs/sc_hero_hb.ncs and b/_module/ncs/sc_hero_hb.ncs differ diff --git a/_module/ncs/sc_jumpforcrypt.ncs b/_module/ncs/sc_jumpforcrypt.ncs index c165b16..0f5ab6a 100644 Binary files a/_module/ncs/sc_jumpforcrypt.ncs and b/_module/ncs/sc_jumpforcrypt.ncs differ diff --git a/_module/ncs/sc_nightwatch.ncs b/_module/ncs/sc_nightwatch.ncs index 53467d4..3deb8b3 100644 Binary files a/_module/ncs/sc_nightwatch.ncs and b/_module/ncs/sc_nightwatch.ncs differ diff --git a/_module/ncs/sc_ospawn_att.ncs b/_module/ncs/sc_ospawn_att.ncs index d1996e6..ade57ef 100644 Binary files a/_module/ncs/sc_ospawn_att.ncs and b/_module/ncs/sc_ospawn_att.ncs differ diff --git a/_module/ncs/sc_ospawn_common.ncs b/_module/ncs/sc_ospawn_common.ncs index 9075b8e..70504bc 100644 Binary files a/_module/ncs/sc_ospawn_common.ncs and b/_module/ncs/sc_ospawn_common.ncs differ diff --git a/_module/ncs/sc_ospawn_grdcap.ncs b/_module/ncs/sc_ospawn_grdcap.ncs index 2aeace0..1b22ac8 100644 Binary files a/_module/ncs/sc_ospawn_grdcap.ncs and b/_module/ncs/sc_ospawn_grdcap.ncs differ diff --git a/_module/ncs/sc_ospawn_hp.ncs b/_module/ncs/sc_ospawn_hp.ncs index 35bcce6..4ee3221 100644 Binary files a/_module/ncs/sc_ospawn_hp.ncs and b/_module/ncs/sc_ospawn_hp.ncs differ diff --git a/_module/ncs/sc_ospawn_nwatch.ncs b/_module/ncs/sc_ospawn_nwatch.ncs index e8697b9..725c80b 100644 Binary files a/_module/ncs/sc_ospawn_nwatch.ncs and b/_module/ncs/sc_ospawn_nwatch.ncs differ diff --git a/_module/ncs/sc_ospawn_thief.ncs b/_module/ncs/sc_ospawn_thief.ncs index 5a8bc1a..4cd6768 100644 Binary files a/_module/ncs/sc_ospawn_thief.ncs and b/_module/ncs/sc_ospawn_thief.ncs differ diff --git a/_module/ncs/sc_prisdoor_open.ncs b/_module/ncs/sc_prisdoor_open.ncs index 447dc87..32da07e 100644 Binary files a/_module/ncs/sc_prisdoor_open.ncs and b/_module/ncs/sc_prisdoor_open.ncs differ diff --git a/_module/ncs/sc_prison_udef.ncs b/_module/ncs/sc_prison_udef.ncs index 5354f18..9a52fca 100644 Binary files a/_module/ncs/sc_prison_udef.ncs and b/_module/ncs/sc_prison_udef.ncs differ diff --git a/_module/ncs/sc_rest.ncs b/_module/ncs/sc_rest.ncs index 0beefba..bf2a077 100644 Binary files a/_module/ncs/sc_rest.ncs and b/_module/ncs/sc_rest.ncs differ diff --git a/_module/ncs/sc_sitnearbench.ncs b/_module/ncs/sc_sitnearbench.ncs index 8337b79..40c3394 100644 Binary files a/_module/ncs/sc_sitnearbench.ncs and b/_module/ncs/sc_sitnearbench.ncs differ diff --git a/_module/ncs/sc_townthief.ncs b/_module/ncs/sc_townthief.ncs index 1d8797c..88660d7 100644 Binary files a/_module/ncs/sc_townthief.ncs and b/_module/ncs/sc_townthief.ncs differ diff --git a/_module/ncs/sc_treas_low_opn.ncs b/_module/ncs/sc_treas_low_opn.ncs index fa96407..e40f576 100644 Binary files a/_module/ncs/sc_treas_low_opn.ncs and b/_module/ncs/sc_treas_low_opn.ncs differ diff --git a/_module/ncs/sc_userheartbeat.ncs b/_module/ncs/sc_userheartbeat.ncs index e8697b9..725c80b 100644 Binary files a/_module/ncs/sc_userheartbeat.ncs and b/_module/ncs/sc_userheartbeat.ncs differ diff --git a/_module/ncs/sc_wp_spawn.ncs b/_module/ncs/sc_wp_spawn.ncs index 08c9c77..4bc7d7f 100644 Binary files a/_module/ncs/sc_wp_spawn.ncs and b/_module/ncs/sc_wp_spawn.ncs differ diff --git a/_module/ncs/setbaseappearanc.ncs b/_module/ncs/setbaseappearanc.ncs index fe4b8b7..1fb2e2d 100644 Binary files a/_module/ncs/setbaseappearanc.ncs and b/_module/ncs/setbaseappearanc.ncs differ diff --git a/_module/ncs/stoneport2guild.ncs b/_module/ncs/stoneport2guild.ncs index 8e90933..a9d1996 100644 Binary files a/_module/ncs/stoneport2guild.ncs and b/_module/ncs/stoneport2guild.ncs differ diff --git a/_module/ncs/stoneportshome.ncs b/_module/ncs/stoneportshome.ncs index bb8805a..2a71cb4 100644 Binary files a/_module/ncs/stoneportshome.ncs and b/_module/ncs/stoneportshome.ncs differ diff --git a/_module/ncs/stonerecallspc.ncs b/_module/ncs/stonerecallspc.ncs index d740692..8c5d521 100644 Binary files a/_module/ncs/stonerecallspc.ncs and b/_module/ncs/stonerecallspc.ncs differ diff --git a/_module/ncs/stx_cr_nextcolor.ncs b/_module/ncs/stx_cr_nextcolor.ncs index bfcf300..2b7940b 100644 Binary files a/_module/ncs/stx_cr_nextcolor.ncs and b/_module/ncs/stx_cr_nextcolor.ncs differ diff --git a/_module/ncs/stx_cr_nextpart.ncs b/_module/ncs/stx_cr_nextpart.ncs index fa6c845..c7dbe38 100644 Binary files a/_module/ncs/stx_cr_nextpart.ncs and b/_module/ncs/stx_cr_nextpart.ncs differ diff --git a/_module/ncs/stx_cr_prevcolor.ncs b/_module/ncs/stx_cr_prevcolor.ncs index 131e403..b9feb87 100644 Binary files a/_module/ncs/stx_cr_prevcolor.ncs and b/_module/ncs/stx_cr_prevcolor.ncs differ diff --git a/_module/ncs/stx_cr_prevpart.ncs b/_module/ncs/stx_cr_prevpart.ncs index b2022b8..498a618 100644 Binary files a/_module/ncs/stx_cr_prevpart.ncs and b/_module/ncs/stx_cr_prevpart.ncs differ diff --git a/_module/ncs/stx_cr_stop_abrt.ncs b/_module/ncs/stx_cr_stop_abrt.ncs index 6f40a09..d16baf8 100644 Binary files a/_module/ncs/stx_cr_stop_abrt.ncs and b/_module/ncs/stx_cr_stop_abrt.ncs differ diff --git a/_module/ncs/stx_cr_stop_make.ncs b/_module/ncs/stx_cr_stop_make.ncs index ba3d339..5d6a4ee 100644 Binary files a/_module/ncs/stx_cr_stop_make.ncs and b/_module/ncs/stx_cr_stop_make.ncs differ diff --git a/_module/ncs/swt_door_close.ncs b/_module/ncs/swt_door_close.ncs index 6607c11..dc2d31c 100644 Binary files a/_module/ncs/swt_door_close.ncs and b/_module/ncs/swt_door_close.ncs differ diff --git a/_module/ncs/swt_door_clsound.ncs b/_module/ncs/swt_door_clsound.ncs index 531d46b..149c761 100644 Binary files a/_module/ncs/swt_door_clsound.ncs and b/_module/ncs/swt_door_clsound.ncs differ diff --git a/_module/ncs/swt_npc_random.ncs b/_module/ncs/swt_npc_random.ncs index 84b528d..8116181 100644 Binary files a/_module/ncs/swt_npc_random.ncs and b/_module/ncs/swt_npc_random.ncs differ diff --git a/_module/ncs/swt_npc_rdcon_jw.ncs b/_module/ncs/swt_npc_rdcon_jw.ncs index 25381ed..9dc04f2 100644 Binary files a/_module/ncs/swt_npc_rdcon_jw.ncs and b/_module/ncs/swt_npc_rdcon_jw.ncs differ diff --git a/_module/ncs/swt_user_waitres.ncs b/_module/ncs/swt_user_waitres.ncs index 61266f1..93bc00c 100644 Binary files a/_module/ncs/swt_user_waitres.ncs and b/_module/ncs/swt_user_waitres.ncs differ diff --git a/_module/ncs/tri_aeneaspaw.ncs b/_module/ncs/tri_aeneaspaw.ncs index 17d1f39..82ba09e 100644 Binary files a/_module/ncs/tri_aeneaspaw.ncs and b/_module/ncs/tri_aeneaspaw.ncs differ diff --git a/_module/ncs/tri_attackzhent.ncs b/_module/ncs/tri_attackzhent.ncs index b3d755d..9adca0b 100644 Binary files a/_module/ncs/tri_attackzhent.ncs and b/_module/ncs/tri_attackzhent.ncs differ diff --git a/_module/ncs/tri_bonedev.ncs b/_module/ncs/tri_bonedev.ncs index 1d6469d..a63cb18 100644 Binary files a/_module/ncs/tri_bonedev.ncs and b/_module/ncs/tri_bonedev.ncs differ diff --git a/_module/ncs/tri_deathslaad.ncs b/_module/ncs/tri_deathslaad.ncs index b3ee560..fb657a0 100644 Binary files a/_module/ncs/tri_deathslaad.ncs and b/_module/ncs/tri_deathslaad.ncs differ diff --git a/_module/ncs/tri_devicedest.ncs b/_module/ncs/tri_devicedest.ncs index f99ade8..0973bb6 100644 Binary files a/_module/ncs/tri_devicedest.ncs and b/_module/ncs/tri_devicedest.ncs differ diff --git a/_module/ncs/tri_disp.ncs b/_module/ncs/tri_disp.ncs index d6b9d4e..e94cbcb 100644 Binary files a/_module/ncs/tri_disp.ncs and b/_module/ncs/tri_disp.ncs differ diff --git a/_module/ncs/tri_doorautoclos.ncs b/_module/ncs/tri_doorautoclos.ncs index 18f8b94..8a0cb44 100644 Binary files a/_module/ncs/tri_doorautoclos.ncs and b/_module/ncs/tri_doorautoclos.ncs differ diff --git a/_module/ncs/tri_dooruse.ncs b/_module/ncs/tri_dooruse.ncs index d3653a6..6914ccc 100644 Binary files a/_module/ncs/tri_dooruse.ncs and b/_module/ncs/tri_dooruse.ncs differ diff --git a/_module/ncs/tri_enteringdra.ncs b/_module/ncs/tri_enteringdra.ncs index ad565bb..24bbb28 100644 Binary files a/_module/ncs/tri_enteringdra.ncs and b/_module/ncs/tri_enteringdra.ncs differ diff --git a/_module/ncs/tri_gelugoa.ncs b/_module/ncs/tri_gelugoa.ncs index b3d755d..9adca0b 100644 Binary files a/_module/ncs/tri_gelugoa.ncs and b/_module/ncs/tri_gelugoa.ncs differ diff --git a/_module/ncs/tri_gelugon.ncs b/_module/ncs/tri_gelugon.ncs index a0b5f40..2edb52a 100644 Binary files a/_module/ncs/tri_gelugon.ncs and b/_module/ncs/tri_gelugon.ncs differ diff --git a/_module/ncs/tri_hellcat.ncs b/_module/ncs/tri_hellcat.ncs index edb2822..76f09eb 100644 Binary files a/_module/ncs/tri_hellcat.ncs and b/_module/ncs/tri_hellcat.ncs differ diff --git a/_module/ncs/tri_hobladder.ncs b/_module/ncs/tri_hobladder.ncs index 433a7a8..e1f8670 100644 Binary files a/_module/ncs/tri_hobladder.ncs and b/_module/ncs/tri_hobladder.ncs differ diff --git a/_module/ncs/tri_hoblver2.ncs b/_module/ncs/tri_hoblver2.ncs index 588cd6f..2ba9b56 100644 Binary files a/_module/ncs/tri_hoblver2.ncs and b/_module/ncs/tri_hoblver2.ncs differ diff --git a/_module/ncs/tri_hoblver3.ncs b/_module/ncs/tri_hoblver3.ncs index f0cc7f0..a85baa2 100644 Binary files a/_module/ncs/tri_hoblver3.ncs and b/_module/ncs/tri_hoblver3.ncs differ diff --git a/_module/ncs/tri_hobshrubdoo2.ncs b/_module/ncs/tri_hobshrubdoo2.ncs index d9168bd..a7f9431 100644 Binary files a/_module/ncs/tri_hobshrubdoo2.ncs and b/_module/ncs/tri_hobshrubdoo2.ncs differ diff --git a/_module/ncs/tri_hobshrubdoo3.ncs b/_module/ncs/tri_hobshrubdoo3.ncs index 022bac9..cc24585 100644 Binary files a/_module/ncs/tri_hobshrubdoo3.ncs and b/_module/ncs/tri_hobshrubdoo3.ncs differ diff --git a/_module/ncs/tri_hobshrubdoor.ncs b/_module/ncs/tri_hobshrubdoor.ncs index a6e200b..945f82c 100644 Binary files a/_module/ncs/tri_hobshrubdoor.ncs and b/_module/ncs/tri_hobshrubdoor.ncs differ diff --git a/_module/ncs/tri_hobtrap1.ncs b/_module/ncs/tri_hobtrap1.ncs index 59269c7..ba441db 100644 Binary files a/_module/ncs/tri_hobtrap1.ncs and b/_module/ncs/tri_hobtrap1.ncs differ diff --git a/_module/ncs/tri_hobtrap2.ncs b/_module/ncs/tri_hobtrap2.ncs index 5131b84..152a32c 100644 Binary files a/_module/ncs/tri_hobtrap2.ncs and b/_module/ncs/tri_hobtrap2.ncs differ diff --git a/_module/ncs/tri_iceskin.ncs b/_module/ncs/tri_iceskin.ncs index 3a126b0..cbdc940 100644 Binary files a/_module/ncs/tri_iceskin.ncs and b/_module/ncs/tri_iceskin.ncs differ diff --git a/_module/ncs/tri_infernaldre.ncs b/_module/ncs/tri_infernaldre.ncs index 4d9ad63..60eb6ab 100644 Binary files a/_module/ncs/tri_infernaldre.ncs and b/_module/ncs/tri_infernaldre.ncs differ diff --git a/_module/ncs/tri_inv_liste.ncs b/_module/ncs/tri_inv_liste.ncs index e1b96d6..c2bceed 100644 Binary files a/_module/ncs/tri_inv_liste.ncs and b/_module/ncs/tri_inv_liste.ncs differ diff --git a/_module/ncs/tri_koboldspa.ncs b/_module/ncs/tri_koboldspa.ncs index 34e7de3..4914a05 100644 Binary files a/_module/ncs/tri_koboldspa.ncs and b/_module/ncs/tri_koboldspa.ncs differ diff --git a/_module/ncs/tri_laddertele.ncs b/_module/ncs/tri_laddertele.ncs index b7a9cd5..dfdbb8b 100644 Binary files a/_module/ncs/tri_laddertele.ncs and b/_module/ncs/tri_laddertele.ncs differ diff --git a/_module/ncs/tri_lichlordsp.ncs b/_module/ncs/tri_lichlordsp.ncs index 90d4cd0..6fc73cf 100644 Binary files a/_module/ncs/tri_lichlordsp.ncs and b/_module/ncs/tri_lichlordsp.ncs differ diff --git a/_module/ncs/tri_lichlordsum.ncs b/_module/ncs/tri_lichlordsum.ncs index f11a04f..dbde944 100644 Binary files a/_module/ncs/tri_lichlordsum.ncs and b/_module/ncs/tri_lichlordsum.ncs differ diff --git a/_module/ncs/tri_mithralspawn.ncs b/_module/ncs/tri_mithralspawn.ncs index b8ba528..f906e66 100644 Binary files a/_module/ncs/tri_mithralspawn.ncs and b/_module/ncs/tri_mithralspawn.ncs differ diff --git a/_module/ncs/tri_newped.ncs b/_module/ncs/tri_newped.ncs index 7542fcf..27e15a3 100644 Binary files a/_module/ncs/tri_newped.ncs and b/_module/ncs/tri_newped.ncs differ diff --git a/_module/ncs/tri_newped2.ncs b/_module/ncs/tri_newped2.ncs index d8672b5..2aac433 100644 Binary files a/_module/ncs/tri_newped2.ncs and b/_module/ncs/tri_newped2.ncs differ diff --git a/_module/ncs/tri_pitfiendspaw.ncs b/_module/ncs/tri_pitfiendspaw.ncs index 42470fe..104320e 100644 Binary files a/_module/ncs/tri_pitfiendspaw.ncs and b/_module/ncs/tri_pitfiendspaw.ncs differ diff --git a/_module/ncs/tri_spinaflysp.ncs b/_module/ncs/tri_spinaflysp.ncs index 312653b..492d11e 100644 Binary files a/_module/ncs/tri_spinaflysp.ncs and b/_module/ncs/tri_spinaflysp.ncs differ diff --git a/_module/ncs/tri_stormspawn.ncs b/_module/ncs/tri_stormspawn.ncs index 5091910..084afb5 100644 Binary files a/_module/ncs/tri_stormspawn.ncs and b/_module/ncs/tri_stormspawn.ncs differ diff --git a/_module/ncs/tri_takerecipe.ncs b/_module/ncs/tri_takerecipe.ncs index 6d0fc05..52f4f2d 100644 Binary files a/_module/ncs/tri_takerecipe.ncs and b/_module/ncs/tri_takerecipe.ncs differ diff --git a/_module/ncs/tri_templetele1.ncs b/_module/ncs/tri_templetele1.ncs index 54afd72..357c348 100644 Binary files a/_module/ncs/tri_templetele1.ncs and b/_module/ncs/tri_templetele1.ncs differ diff --git a/_module/ncs/tri_templetele2.ncs b/_module/ncs/tri_templetele2.ncs index 51ac2b0..4906b94 100644 Binary files a/_module/ncs/tri_templetele2.ncs and b/_module/ncs/tri_templetele2.ncs differ diff --git a/_module/ncs/tri_towaopal.ncs b/_module/ncs/tri_towaopal.ncs index d3b9352..4caf4ee 100644 Binary files a/_module/ncs/tri_towaopal.ncs and b/_module/ncs/tri_towaopal.ncs differ diff --git a/_module/ncs/tri_towertele.ncs b/_module/ncs/tri_towertele.ncs index ab72329..6ff1bab 100644 Binary files a/_module/ncs/tri_towertele.ncs and b/_module/ncs/tri_towertele.ncs differ diff --git a/_module/ncs/tri_trapdoortele.ncs b/_module/ncs/tri_trapdoortele.ncs index 373e20e..25509bf 100644 Binary files a/_module/ncs/tri_trapdoortele.ncs and b/_module/ncs/tri_trapdoortele.ncs differ diff --git a/_module/ncs/tri_undeaddeath.ncs b/_module/ncs/tri_undeaddeath.ncs index 15aec00..d357825 100644 Binary files a/_module/ncs/tri_undeaddeath.ncs and b/_module/ncs/tri_undeaddeath.ncs differ diff --git a/_module/ncs/tri_undeadsp.ncs b/_module/ncs/tri_undeadsp.ncs index 0ce3112..e02cf28 100644 Binary files a/_module/ncs/tri_undeadsp.ncs and b/_module/ncs/tri_undeadsp.ncs differ diff --git a/_module/ncs/tri_undeanew.ncs b/_module/ncs/tri_undeanew.ncs index 2cc11df..4d0861e 100644 Binary files a/_module/ncs/tri_undeanew.ncs and b/_module/ncs/tri_undeanew.ncs differ diff --git a/_module/ncs/tri_worship.ncs b/_module/ncs/tri_worship.ncs index c33e64d..09ae550 100644 Binary files a/_module/ncs/tri_worship.ncs and b/_module/ncs/tri_worship.ncs differ diff --git a/_module/ncs/tri_yugolith.ncs b/_module/ncs/tri_yugolith.ncs index d6881fc..e56e5c0 100644 Binary files a/_module/ncs/tri_yugolith.ncs and b/_module/ncs/tri_yugolith.ncs differ diff --git a/_module/ncs/tri_yugolith2.ncs b/_module/ncs/tri_yugolith2.ncs index 146a3c8..df0499f 100644 Binary files a/_module/ncs/tri_yugolith2.ncs and b/_module/ncs/tri_yugolith2.ncs differ diff --git a/_module/ncs/tri_yuholith_sp.ncs b/_module/ncs/tri_yuholith_sp.ncs index 7f1108e..ac4a79e 100644 Binary files a/_module/ncs/tri_yuholith_sp.ncs and b/_module/ncs/tri_yuholith_sp.ncs differ diff --git a/_module/ncs/tri_zleveruse.ncs b/_module/ncs/tri_zleveruse.ncs index 11ed07b..5978a10 100644 Binary files a/_module/ncs/tri_zleveruse.ncs and b/_module/ncs/tri_zleveruse.ncs differ diff --git a/_module/ncs/ty_closeportal.ncs b/_module/ncs/ty_closeportal.ncs index 1766526..eaa10af 100644 Binary files a/_module/ncs/ty_closeportal.ncs and b/_module/ncs/ty_closeportal.ncs differ diff --git a/_module/ncs/ty_cyrspawn.ncs b/_module/ncs/ty_cyrspawn.ncs index 0c9ca60..550fd5d 100644 Binary files a/_module/ncs/ty_cyrspawn.ncs and b/_module/ncs/ty_cyrspawn.ncs differ diff --git a/_module/ncs/ty_eilspawn.ncs b/_module/ncs/ty_eilspawn.ncs index 67edbbe..00f6028 100644 Binary files a/_module/ncs/ty_eilspawn.ncs and b/_module/ncs/ty_eilspawn.ncs differ diff --git a/_module/ncs/ty_helspawn.ncs b/_module/ncs/ty_helspawn.ncs index 70e6597..c9b5b45 100644 Binary files a/_module/ncs/ty_helspawn.ncs and b/_module/ncs/ty_helspawn.ncs differ diff --git a/_module/ncs/ty_ilmspawn.ncs b/_module/ncs/ty_ilmspawn.ncs index 5e43710..477ee2a 100644 Binary files a/_module/ncs/ty_ilmspawn.ncs and b/_module/ncs/ty_ilmspawn.ncs differ diff --git a/_module/ncs/ty_labdoorclose.ncs b/_module/ncs/ty_labdoorclose.ncs index 6b297a9..9e9565b 100644 Binary files a/_module/ncs/ty_labdoorclose.ncs and b/_module/ncs/ty_labdoorclose.ncs differ diff --git a/_module/ncs/ty_latspawn.ncs b/_module/ncs/ty_latspawn.ncs index b8751f6..e81a3d4 100644 Binary files a/_module/ncs/ty_latspawn.ncs and b/_module/ncs/ty_latspawn.ncs differ diff --git a/_module/ncs/ty_openportal.ncs b/_module/ncs/ty_openportal.ncs index 78e4fac..264688d 100644 Binary files a/_module/ncs/ty_openportal.ncs and b/_module/ncs/ty_openportal.ncs differ diff --git a/_module/ncs/ty_r1_southexit.ncs b/_module/ncs/ty_r1_southexit.ncs index b0800e5..d669280 100644 Binary files a/_module/ncs/ty_r1_southexit.ncs and b/_module/ncs/ty_r1_southexit.ncs differ diff --git a/_module/ncs/ty_solspawn.ncs b/_module/ncs/ty_solspawn.ncs index e4e4410..97196d2 100644 Binary files a/_module/ncs/ty_solspawn.ncs and b/_module/ncs/ty_solspawn.ncs differ diff --git a/_module/ncs/ty_talspawn.ncs b/_module/ncs/ty_talspawn.ncs index 48c4a23..b6d943d 100644 Binary files a/_module/ncs/ty_talspawn.ncs and b/_module/ncs/ty_talspawn.ncs differ diff --git a/_module/ncs/ty_temspawn.ncs b/_module/ncs/ty_temspawn.ncs index f75a7cc..457d5ea 100644 Binary files a/_module/ncs/ty_temspawn.ncs and b/_module/ncs/ty_temspawn.ncs differ diff --git a/_module/ncs/ty_trckdoor2clse.ncs b/_module/ncs/ty_trckdoor2clse.ncs index 4462cdc..7a590b6 100644 Binary files a/_module/ncs/ty_trckdoor2clse.ncs and b/_module/ncs/ty_trckdoor2clse.ncs differ diff --git a/_module/ncs/ty_trckdoorclose.ncs b/_module/ncs/ty_trckdoorclose.ncs index 0fd844e..01e386c 100644 Binary files a/_module/ncs/ty_trckdoorclose.ncs and b/_module/ncs/ty_trckdoorclose.ncs differ diff --git a/_module/ncs/ty_trickdoor2opn.ncs b/_module/ncs/ty_trickdoor2opn.ncs index c266e0c..15ec313 100644 Binary files a/_module/ncs/ty_trickdoor2opn.ncs and b/_module/ncs/ty_trickdoor2opn.ncs differ diff --git a/_module/ncs/ty_trickdooropen.ncs b/_module/ncs/ty_trickdooropen.ncs index e41efeb..0b657b6 100644 Binary files a/_module/ncs/ty_trickdooropen.ncs and b/_module/ncs/ty_trickdooropen.ncs differ diff --git a/_module/ncs/ty_turnmillshaft.ncs b/_module/ncs/ty_turnmillshaft.ncs index 2a39d93..106983f 100644 Binary files a/_module/ncs/ty_turnmillshaft.ncs and b/_module/ncs/ty_turnmillshaft.ncs differ diff --git a/_module/ncs/user_bartender.ncs b/_module/ncs/user_bartender.ncs index a95a34b..5480053 100644 Binary files a/_module/ncs/user_bartender.ncs and b/_module/ncs/user_bartender.ncs differ diff --git a/_module/ncs/user_crate.ncs b/_module/ncs/user_crate.ncs index 93ad9dc..b8f3663 100644 Binary files a/_module/ncs/user_crate.ncs and b/_module/ncs/user_crate.ncs differ diff --git a/_module/ncs/vortexspawn.ncs b/_module/ncs/vortexspawn.ncs index 98930e3..8718d5e 100644 Binary files a/_module/ncs/vortexspawn.ncs and b/_module/ncs/vortexspawn.ncs differ diff --git a/_module/ncs/vortexude.ncs b/_module/ncs/vortexude.ncs index 3a3d785..cfda49b 100644 Binary files a/_module/ncs/vortexude.ncs and b/_module/ncs/vortexude.ncs differ diff --git a/_module/ncs/x0_s3_gemspray.ncs b/_module/ncs/x0_s3_gemspray.ncs index 13c0e78..3e2783f 100644 Binary files a/_module/ncs/x0_s3_gemspray.ncs and b/_module/ncs/x0_s3_gemspray.ncs differ diff --git a/_module/ncs/x2_im_cancel.ncs b/_module/ncs/x2_im_cancel.ncs index 01f255d..a404515 100644 Binary files a/_module/ncs/x2_im_cancel.ncs and b/_module/ncs/x2_im_cancel.ncs differ diff --git a/_module/ncs/x2_im_finished.ncs b/_module/ncs/x2_im_finished.ncs index dbd33d1..6f5d297 100644 Binary files a/_module/ncs/x2_im_finished.ncs and b/_module/ncs/x2_im_finished.ncs differ diff --git a/_module/ncs/x2_im_nextpart.ncs b/_module/ncs/x2_im_nextpart.ncs index 8235b29..5454ab7 100644 Binary files a/_module/ncs/x2_im_nextpart.ncs and b/_module/ncs/x2_im_nextpart.ncs differ diff --git a/_module/ncs/x2_im_prevpart.ncs b/_module/ncs/x2_im_prevpart.ncs index a3ad9c0..bdb767b 100644 Binary files a/_module/ncs/x2_im_prevpart.ncs and b/_module/ncs/x2_im_prevpart.ncs differ diff --git a/_module/ncs/x2_s1_hurlrock.ncs b/_module/ncs/x2_s1_hurlrock.ncs index 3d308aa..e504d38 100644 Binary files a/_module/ncs/x2_s1_hurlrock.ncs and b/_module/ncs/x2_s1_hurlrock.ncs differ diff --git a/_release/Battledale [PRC8-CEP3].7z b/_release/Battledale [PRC8-CEP3].7z index df5da9f..4ad8e15 100644 Binary files a/_release/Battledale [PRC8-CEP3].7z and b/_release/Battledale [PRC8-CEP3].7z differ