Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 827 Bytes

README.md

File metadata and controls

38 lines (29 loc) · 827 Bytes

✨ Information Tablet

Description: A helpful tablet script for beginners

Preview

Configuration

Config.Command = 'help'
Config.CommandDescription = 'Opens the information tablet'
Config.Keybind = true
Config.OpenKey = 'F2'
Config.AnimDict = 'amb@world_human_seat_wall_tablet@female@base'
Config.Prop = 'prop_cs_tablet'
Config.Bone = 28422

How to add a new page?

  • Go to nui/index.js at line 21 and add a new object to the array
Applications: [
    ...,
    { name: 'Page name', icon: 'img/page_icon.svg', href: 'page_name' }
]
  • Go to nui/index.html at line 73 and add the following template
<div class='page' id='page_name' v-if='currentPage == "page_name"'>
    <div class='content'>
        <!-- HTML Content -->
    </div>
</div>