worm82075 Posted June 8, 2024 Share Posted June 8, 2024 Why isn't Better Console doing this? Does F4SE not make this possible? SKSE could do it. Am I seriously going to have to make an in game cell grid map for yet another game? I thought we were past this. Harrumph. Edit: Answer is; it does and i'm an idiot. Link to comment Share on other sites More sharing options...
SKKmods Posted June 9, 2024 Share Posted June 9, 2024 Quick lookup reference if your doing XY for NSEW manipulations; ;******************************************************************* String Function GetMapQuadrant(ObjectReference thisTarget) String sMapQuadrant If(thisTarget != None) Float ftargetPosX = thisTarget.GetPositionX() Float ftargetPosY = thisTarget.GetPositionY() If(ftargetPosX <= 0) && (ftargetPosY >= 0) sMapQuadrant = "NW" ;Sanctuary ElseIf(ftargetPosX <= 0) && (ftargetPosY <= 0) sMapQuadrant = "SW" ;Natick ElseIf(ftargetPosX >= 0) && (ftargetPosY >= 0) sMapQuadrant = "NE" ;Costal ElseIf(ftargetPosX >= 0) && (ftargetPosY <= 0) sMapQuadrant = "SE" ;Warwick EndIf EndIf Return sMapQuadrant EndFunction ;******************************************************************* Link to comment Share on other sites More sharing options...
DiodeLadder Posted June 9, 2024 Share Posted June 9, 2024 Here's a Commonwealth Grid Map, by the way : https://www.nexusmods.com/fallout4/mods/18601?tab=description 2 Link to comment Share on other sites More sharing options...
Recommended Posts