I know Dawnguard isn't out yet but, based on past gamesas games with DLC, how would I detect if Dawnguard was installed?
Bool[] Property bDLCArray Auto ; 1 'False' element per DLCString[] Property sDLCArray Auto ; Dawnguard.ESM, Hearthfire.ESM, Killer Bees.ESM, etc.Function CheckForDLC(Int aiIndex = 0, String asDLCName = "") aiIndex = bDLCArray.Length While aiIndex > 0 aiIndex -= 1 If bDLCArray[aiIndex] != Game.GetFormFromFile(0x00000800, sDLCArray[aiIndex]) bDLCArray[aiIndex] = !bDLCArray[aiIndex] If bDLCArray[aiIndex] Debug.Trace(sDLCArray[aiIndex] + " is loaded.") Else Debug.Trace(sDLCArray[aiIndex] + " was loaded, but is no longer.") EndIf EndIf EndWhileEndFunction
iVar -= 1...is just like...
iVar = (iVar - 1)...but with less typing.
iVar -= 1...is just like...
iVar = (iVar - 1)...but with less typing.