The JAtomic script is a part of Skyrim SE’s Papyrus scripting ecosystem. This script is not present in the vanilla game, but can be found in modded sources like JContainers (JContainers).
For this script, the Papyrus index knows about:
- 20 functions
Inheritance Tree
No indexed scripts extend this script.
Properties
No properties found.
Events
No events found.
Functions
- Found in:
- JContainers
intfunctionfetchAddInt(intobject, stringpath, intvalue, intinitialValue=0, boolcreateMissingKeys=false, intonErrorReturn=0)NativeGlobalA group of the functions that perform various math on the value at the @path of the container. Returns previos value:
T previousValue = container.path container.path = someMathFunction(container.path, value) return previousValueIf the value at the @path is None, then the @initialValue being read and passed into math function instead of None.
If @createMissingKeys is True, the function attemps to create missing @path elements.- Found in:
- JContainers
floatfunctionfetchAddFlt(intobject, stringpath, floatvalue, floatinitialValue=0.0, boolcreateMissingKeys=false, floatonErrorReturn=0.0)NativeGlobal- Found in:
- JContainers
intfunctionfetchMultInt(intobject, stringpath, intvalue, intinitialValue=0, boolcreateMissingKeys=false, intonErrorReturn=0)NativeGlobalx *= v
- Found in:
- JContainers
floatfunctionfetchMultFlt(intobject, stringpath, floatvalue, floatinitialValue=0.0, boolcreateMissingKeys=false, floatonErrorReturn=0.0)NativeGlobal- Found in:
- JContainers
intfunctionfetchModInt(intobject, stringpath, intvalue, intinitialValue=0, boolcreateMissingKeys=false, intonErrorReturn=0)NativeGlobalx %= v
- Found in:
- JContainers
intfunctionfetchDivInt(intobject, stringpath, intvalue, intinitialValue=0, boolcreateMissingKeys=false, intonErrorReturn=0)NativeGlobalx /= v
- Found in:
- JContainers
floatfunctionfetchDivFlt(intobject, stringpath, floatvalue, floatinitialValue=0.0, boolcreateMissingKeys=false, floatonErrorReturn=0.0)NativeGlobal- Found in:
- JContainers
intfunctionfetchAndInt(intobject, stringpath, intvalue, intinitialValue=0, boolcreateMissingKeys=false, intonErrorReturn=0)NativeGlobalx &= v
- Found in:
- JContainers
intfunctionfetchXorInt(intobject, stringpath, intvalue, intinitialValue=0, boolcreateMissingKeys=false, intonErrorReturn=0)NativeGlobalx ^= v
- Found in:
- JContainers
intfunctionfetchOrInt(intobject, stringpath, intvalue, intinitialValue=0, boolcreateMissingKeys=false, intonErrorReturn=0)NativeGlobalx |= v
- Found in:
- JContainers
intfunctionexchangeInt(intobject, stringpath, intvalue, boolcreateMissingKeys=false, intonErrorReturn=0)NativeGlobalExchanges the value at the @path with the @value. Returns previous value.
- Found in:
- JContainers
floatfunctionexchangeFlt(intobject, stringpath, floatvalue, boolcreateMissingKeys=false, floatonErrorReturn=0.0)NativeGlobal- Found in:
- JContainers
stringfunctionexchangeStr(intobject, stringpath, stringvalue, boolcreateMissingKeys=false, stringonErrorReturn="")NativeGlobal- Found in:
- JContainers
FormfunctionexchangeForm(intobject, stringpath, Formvalue, boolcreateMissingKeys=false, FormonErrorReturn=NONE)NativeGlobal- Found in:
- JContainers
intfunctionexchangeObj(intobject, stringpath, intvalue, boolcreateMissingKeys=false, intonErrorReturn=0)NativeGlobal- Found in:
- JContainers
intfunctioncompareExchangeInt(intobject, stringpath, intdesired, intexpected, boolcreateMissingKeys=false, intonErrorReturn=0)NativeGlobalCompares the value at the @path with the @expected and, if they are equal, exchanges the value at the @path with the @desired values.
Returns previous value.- Found in:
- JContainers
floatfunctioncompareExchangeFlt(intobject, stringpath, floatdesired, floatexpected, boolcreateMissingKeys=false, floatonErrorReturn=0.0)NativeGlobal- Found in:
- JContainers
stringfunctioncompareExchangeStr(intobject, stringpath, stringdesired, stringexpected, boolcreateMissingKeys=false, stringonErrorReturn="")NativeGlobal- Found in:
- JContainers
FormfunctioncompareExchangeForm(intobject, stringpath, Formdesired, Formexpected, boolcreateMissingKeys=false, FormonErrorReturn=NONE)NativeGlobal- Found in:
- JContainers
intfunctioncompareExchangeObj(intobject, stringpath, intdesired, intexpected, boolcreateMissingKeys=false, intonErrorReturn=0)NativeGlobal
