Skip to content

Commit d1519ec

Browse files
committed
Update make-a-bg3-mod-with-lua.mdx
1 parent b41f8fd commit d1519ec

File tree

1 file changed

+18
-7
lines changed

1 file changed

+18
-7
lines changed

β€Žprojects/make-a-bg3-mod-with-lua/make-a-bg3-mod-with-lua.mdxβ€Ž

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -87,13 +87,24 @@ Here's the structure you'll be working with inside the **Mods** folder (you'll l
8787

8888
[Here’s a zip folder](https://drive.google.com/drive/folders/1JOE5uq8Ky6MKy3agzan6Zqdr7Z2HAYtJ?usp=sharing) containing the starter files for this project! It contains the basic file structure you’ll be working with.
8989
```
90-
Mods/Frog/Mods/Frog
91-
β”œβ”€β”€ meta.lsx
92-
└── ScriptExtender/
93-
└── Lua/
94-
β”œβ”€β”€ BoostrapServer.lua
95-
└── Server/
96-
└── Frog.lua
90+
Mods/Frog/
91+
β”œβ”€β”€ Mods
92+
└── Frog
93+
└── ScriptExtender
94+
└── Lua
95+
└── Server
96+
β”œβ”€β”€ Frog.lua
97+
└── BootstrapServer.lua
98+
β”œβ”€β”€ Config.json
99+
└── meta.lsx
100+
β”œβ”€β”€ Public
101+
└── Frog
102+
└── Stats
103+
└── Generated
104+
└── Data
105+
β”œβ”€β”€ Character.txt
106+
β”œβ”€β”€ Object.txt
107+
β”œβ”€β”€ Spell_Target.txt
97108
```
98109

99110
## Set up the .lsx file

0 commit comments

Comments
Β (0)