Здесь должен быть вводный абзац для новости или статьи. Текста должно быть достаточно много, чтобы блок с изображением аватара автора новости красиво вписывался в текст
Debugging Papyrus with VSCode
- Install the VSCode plugin located in
steamapps\common\Starfield\Tools\VSCodePapyrusAddon
(you can do this by going to Extensions in VSCode, clicking the ... and selecting Install from VSIX... - Open the
steamapps\common\Starfield\Data\Scripts\Source
folder in VSCode - Add the following to your
StarfieldCustom.ini
[Papyrus]
iRemoteDebuggingPort=20548
bEnableRemoteDebugging=1
- Start the game and place a breakpoint on your script
- Open Run and Debug in VSCode and select Create a launch.json file and look for
papyrus for starfield
, alternatively make a.vscode\launch.json
with the following:
{
"version": "0.2.0",
"configurations": [
{
"name": "Attach to game",
"type": "papyrus-starfield",
"request": "attach",
"address": "localhost",
"port": 20548
}
]
}
- Run the launch config and enjoy debugging