When ever any projectile is shot (spell or arrow) all npc and the player all run a "walk the cell" script to see if the projectile is a candidate for tracking.
If the projectile is a tracking candidate another script checks the ref to see if and when it is about to hit the tracking actor/player. I do this by doing many checks such as comparing the direction of the projectile to the position of the npc or player and how much closer it is to the actor / player then other projectiles.
The slow down does not seem to happen because of the second script only when the first walk the cell script runs becasue (I think) all the npc and player walk the cell for projectiles at the same time. So I want to instead make a master array list that all the actors and the player will use instead, however I don't know how to completely do this yet. I will need to ask the OBSE guys about this, but first I want to TRY to cobble a script together first the best I can.
My problem is I only understand about half of what I need to understand concerning arrays and how to build them and then access the ref in them, and finally remove refs from them that are not valid anymore.
Here is my firs attempt to gather projectiles refs into an master array. please make corrections (if you understand arrays) to this script so that it will actually WORK:
scn aadpTestRef NextItemRef mearray_var ListOfProjectilesbegin gamemodeif eval (ar_Size ListOfProjectiles) == 0let ListOfProjectiles := ar_Construct Array; Create the listsendifif Radar > 0;--- see Note 2set nextItem to GetFirstRef 34 1;--- most likely the last projectile put into the cell if eval (ar_Size ListOfProjectiles) > 0 && ( NOTE 1) let index := 0 While index < ar_Size ListOfProjectiles let Nextitem := ListOfProjectiles[index];--- add to the array list of arrows if (Nextitem != 0 && IsFormValid Nextitem);--- Check to see if the ref is still valid Set index to index + 1 else ar_Erase ListOfProjectiles index;--- Not legal formId, so just remove it from the list endif set nextItem to getNextRef loop endifendifend
Note 1: some obse array command to check that nextItem is not already in the array list.
Note 2: radar is a count of frames that is set to greater than 0 when ever any actor or the player fires a spell or arrow. This I have working already so I am not worried about this part.