Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 630 Bytes

README.md

File metadata and controls

23 lines (19 loc) · 630 Bytes

Scripting docs

TES3MP

Table of contents

  1. Introduction
  2. GUI
    1. Dynamic GUI IDs
  3. Another paragraph

Introduction

Some introduction text, formatted in heading 2 style

GUI

These are some usefull tidbits when using GUIs.

Dynamic GUI IDs

Due to how the guiHelper is scripted the best way to add a new guiID is this:

local GUIID = "name"
if not guiHelper.ID[GUIID] then
    guiHelper.ID[GUIID] = tableHelper.getCount(guiHelper.ID) + 1
end