Plomyk-dev / redutzu-tablet

A helpful tablet script for beginners

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

✨ 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>

About

A helpful tablet script for beginners

License:MIT License


Languages

Language:CSS 37.2%Language:HTML 28.5%Language:Lua 17.7%Language:JavaScript 16.6%