Skyrim
0 of 0

File information

Last updated

Original upload

Created by

MannyGT

Uploaded by

mannygt

Virus scan

Safe to use

192 comments

  1. mannygt
    mannygt
    • premium
    • 1,499 kudos
    Locked
    Sticky
    If you're updating the mod or SkyUI, please type these commands console

    stopquest mannystatus
    startquest mannystatus

  2. Glanzer
    Glanzer
    • premium
    • 203 kudos
    I use this mod in SE all the time to find the current weather and see which X,Y cell I'm in. It's been a pain to convert the X,Y coordinates to Block/Sub-block so I can find it in xedit, so I created the following Excel spreadsheet to do the conversion. Just type in the X,Y coordinates and the formula will give you the Block and Sub-block equivalent:

    XY_Cell_to_Block_Conversion.xlsx

    The conversion is so easy it could probably be put into this mod and displayed on the screen on the MCM page. If mannygt would give permission for that, I could put up a version of the MCM script to do that.
    1. Glanzer
      Glanzer
      • premium
      • 203 kudos
      Well it was easier than I thought, see pics:

      Spoiler:  
      Show





      See the added code below (in manny_status_mcm.psc) in case you want to do it yourself. I did this in the SE version of the mod:

      Spoiler:  
      Show

      ?    elseif page == "Cell"
          
              SetCursorFillMode(LEFT_TO_RIGHT)

              int xCell = math.Floor(game.getPlayer().getPositionX()/4096)
              int yCell = math.Floor(game.getPlayer().getPositionY()/4096)
              
              int num = game.getPlayer().getParentCell().getFormID()

              result = toHex(num)
              
              ; GLZ START ADDED CODE
              int iSubblock1 = math.Floor(xCell * 0.125)
              int iSubblock2 = math.Floor(yCell * 0.125)
              int iBlock1 = math.Floor(iSubblock1 * 0.25)
              int iBlock2 = math.Floor(iSubblock2 * 0.25)
              ; GLZ STOP ADDED CODE
              
              addMenuOption("Pos. X", game.getPlayer().getPositionX())
              addMenuOption("Light amount", game.getPlayer().getLightLevel())
              addMenuOption("Pos. Y", game.getPlayer().getPositionY())
              addMenuOption("Can Fast Travel",Game.IsFastTravelEnabled())
              addMenuOption("Pos. Z", game.getPlayer().getPositionZ())
              addMenuOption("Cell coords.", xCell+","+yCell)
              addMenuOption("Worldspace", game.getPlayer().getWorldspace().getName())
              addMenuOption("Location", game.getPlayer().getCurrentLocation().getName())
              addMenuOption("Is interior?", game.getPlayer().getParentCell().isInterior())
              addMenuOption("Cell Faction", game.getPlayer().getParentCell().getFactionOwner())
              addMenuOption("Form ID", result)
              
              ; GLZ START ADDED CODE
                  AddTextOption("XEDIT Block AND Sub-Block:", "")
                  AddEmptyOption()
              if (game.getPlayer().getParentCell().isInterior())
                  AddTextOption("     Block: N/A (interior cell)", "")
                  AddEmptyOption()
                  AddTextOption("     Sub-Block: N/A (interior cell)", "")
              else
                  AddTextOption("     Block: "+iBlock1+","+iBlock2, "")
                  AddEmptyOption()
                  AddTextOption("     Sub-Block: "+iSubblock1+","+iSubblock2, "")
              endif
              ; GLZ STOP ADDED CODE
             
    2. Th3Sa1n7
      Th3Sa1n7
      • supporter
      • 4 kudos
      Any chance I can get the newly compiled file? I added the code (thanks for that BTW) and downloaded the SkyUI source scripts from github but I still run across error messages when trying to compile it via the creation kit. 
    3. Glanzer
      Glanzer
      • premium
      • 203 kudos
      Sent you a pm.
  3. User_75306653
    User_75306653
    • account closed
    • 3 kudos
    GOD MODE..... ON
  4. Mookeylama
    Mookeylama
    • premium
    • 88 kudos
    anyone know how often this script runs? a constant effect or only when u check it in MCM?
  5. KainThePheonix
    KainThePheonix
    • premium
    • 52 kudos
    One of my favorite utility mods. I use this alongside Jaxonz Diagnostics and they work very well together for simple information gathering.

    Endorsed.

  6. MKIIV
    MKIIV
    • member
    • 0 kudos
    .resolved
  7. Elgar82
    Elgar82
    • supporter
    • 20 kudos
    Hi MannyGT, since the Bugs reports tab is not enabled for this mod I will make my report here if you don't mind. But before, thank you for this useful mod ! I endorsed it a long time ago.

    - First, I noticed that the ingame date displayed in the Misc section of your MCM is not the same as the one displayed by the popular "A Matter of Time" mod. It differs by one day. Which date is right, I wonder ? If I start a new game, the date displayed by your mod is 07/16/0201, but the HUD clock widget of "A Matter of Time" says Sundas 17 Last Seed, 4E 201. According to uesp, "the game will usually start with your first day, the 17th of Last Seed, as Sundas", so I suppose that "A Matter of Time" has the right date. By the way, the time reported in both mods is the same.

    - Second, my Papyrus log is reporting some errors. Despite the great guide released by Arthmoor, I'm not sure if they are harmless or if they deserved to be reported to you :

    [07/20/2015 - 07:33:45PM] Error: Actor value "EquippedItemCharge" does not exist.
    stack:
    [ (00000014)].Actor.GetActorValue() - "<native>" Line ?
    [mannyStatus (2B000D62)].manny_Status_MCM.OnPageReset() - "manny_Status_MCM.psc" Line 98
    [mannyStatus (2B000D62)].manny_Status_MCM.SetPage() - "SKI_ConfigBase.psc" Line 793
    [SKI_ConfigManagerInstance (13000802)].SKI_ConfigManager.OnPageSelect() - "SKI_ConfigManager.psc" Line 146

    [07/20/2015 - 07:33:45PM] Error: Actor value "EquippedStaffCharge" does not exist.
    stack:
    [ (00000014)].Actor.GetActorValue() - "<native>" Line ?
    [mannyStatus (2B000D62)].manny_Status_MCM.OnPageReset() - "manny_Status_MCM.psc" Line 99
    [mannyStatus (2B000D62)].manny_Status_MCM.SetPage() - "SKI_ConfigBase.psc" Line 793
    [SKI_ConfigManagerInstance (13000802)].SKI_ConfigManager.OnPageSelect() - "SKI_ConfigManager.psc" Line 146

    [07/20/2015 - 07:34:42PM] Error: Cannot call GetFormID() on a None object, aborting function call
    stack:
    [mannyStatus (2B000D62)].manny_Status_MCM.OnPageReset() - "manny_Status_MCM.psc" Line 129
    [mannyStatus (2B000D62)].manny_Status_MCM.SetPage() - "SKI_ConfigBase.psc" Line 793
    [SKI_ConfigManagerInstance (13000802)].SKI_ConfigManager.OnPageSelect() - "SKI_ConfigManager.psc" Line 146

    [07/20/2015 - 07:34:42PM] Warning: Assigning None to a non-object variable named "::temp3"
    stack:
    [mannyStatus (2B000D62)].manny_Status_MCM.OnPageReset() - "manny_Status_MCM.psc" Line 129
    [mannyStatus (2B000D62)].manny_Status_MCM.SetPage() - "SKI_ConfigBase.psc" Line 793
    [SKI_ConfigManagerInstance (13000802)].SKI_ConfigManager.OnPageSelect() - "SKI_ConfigManager.psc" Line 146

    [07/20/2015 - 07:34:48PM] Error: Cannot call GetName() on a None object, aborting function call
    stack:
    [mannyStatus (2B000D62)].manny_Status_MCM.OnPageReset() - "manny_Status_MCM.psc" Line 120
    [mannyStatus (2B000D62)].manny_Status_MCM.SetPage() - "SKI_ConfigBase.psc" Line 793
    [SKI_ConfigManagerInstance (13000802)].SKI_ConfigManager.OnPageSelect() - "SKI_ConfigManager.psc" Line 146

    [07/20/2015 - 07:34:48PM] Warning: Assigning None to a non-object variable named "::temp6"
    stack:
    [mannyStatus (2B000D62)].manny_Status_MCM.OnPageReset() - "manny_Status_MCM.psc" Line 120
    [mannyStatus (2B000D62)].manny_Status_MCM.SetPage() - "SKI_ConfigBase.psc" Line 793
    [SKI_ConfigManagerInstance (13000802)].SKI_ConfigManager.OnPageSelect() - "SKI_ConfigManager.psc" Line 146
    1. mannygt
      mannygt
      • premium
      • 1,499 kudos
      Is SKSE installed? And SkyUI too? These errors are related to missing scripts.
    2. Elgar82
      Elgar82
      • supporter
      • 20 kudos
      Of course ! The latest versions : SKSE 1.7.3 and SkyUI 5.0. They work correctly, since I run several other mods which use MCM and everything is fine.

      It's on a new game : I created a character using LAL by Arthmoor and when I arrived in my first location (I chose to be a Companion) I opened your MCM.
    3. mannygt
      mannygt
      • premium
      • 1,499 kudos
      I never used SkyUI 5 (and didn't know that they released this version). I have to investigate.
    4. Elgar82
      Elgar82
      • supporter
      • 20 kudos
      Thank you MannyGT, much appreciated.

      You'll see, SkyUI 5.0 is really great, it includes crafting, enchanting, alchemy and smithing menus. SKSE 1.7.3 is now the minimum requirement.

      About the date, in my first post I talked about "A Matter of Time", but I forgot that you can check the ingame date by hitting the Wait key (T). I can confirm that the date shown in Status Misc is wrong by one day.
  8. TheNexusLurker
    TheNexusLurker
    • premium
    • 1 kudos
    Another good one by the Mann.
  9. dresden69
    dresden69
    • member
    • 3 kudos
    This is wonderful for my necromancer to check current magicka without having to go into the skills menu (and possibly leveling up at an unwanted time). Can't tell in screenshots, and haven't been in game yet, but does it show your total unarmed damage bonus by any chance?
  10. EHPDJFrANKy
    EHPDJFrANKy
    • premium
    • 79 kudos
    Thanks Manny for this good and useful tool. Very good work will do with this.
  11. djoka86
    djoka86
    • supporter
    • 0 kudos
    i can't seem to find the spell absord status. is it there or am i just blind?