SkyrimThiago Posted April 15 Share Posted April 15 (edited) Link: https://thiago099.github.io/bbcode-papyrus-coloring/ Source code: https://github.com/Thiago099/bbcode-papyrus-coloring You can paste or write your papyrus code on the left and it will appear with the bbcode coloring on the right. Here is an example: Here is how it looks like: Quote scriptName FC_MiscItemScript extends Quest MiscObject Property StatsSoruce Auto MiscObject Property ModelSource Auto Event OnInit() RegisterForSingleUpdate(2) EndEvent Event OnUpdate() MiscObject newMiscObject = DynamicPersistentForms.Create(StatsSoruce) as MiscObject if(newMiscObject) newMiscObject.SetName("My New Dynamic Misc Item") newMiscObject.SetGoldValue(1003) DynamicPersistentForms.CopyAppearance(ModelSource, newMiscObject) Game.GetPlayer().AddItem(newMiscObject) Game.GetPlayer().AddItem(StatsSoruce) Game.GetPlayer().AddItem(ModelSource) endif EndEvent Edited April 15 by SkyrimThiago Link to comment Share on other sites More sharing options...
Recommended Posts