🛠️INSTALLATION

  1. Download and Extract

   - Purchase and download the script
   - Extract the files to your resources folder
   - Rename the folder to `janiel-delivery`
  1. Database Setup

    
       CREATE TABLE IF NOT EXISTS `delivery_job` (
           `citizenid` varchar(50) NOT NULL,
           `level` int(11) DEFAULT 1,
           `xp` int(11) DEFAULT 0,
           `total_orders` int(11) DEFAULT 0,
           `total_earnings` int(11) DEFAULT 0,
           `profile_image` varchar(255) DEFAULT 'images/default-avatar.png',
           PRIMARY KEY (`citizenid`)
       ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
  2. Config Setup

  • Customize other settings according to your needs

  1. Event and Function

event : delivery:client:OpenTablet

function : openDeliveryTablet

you can use them for your own items.

Last updated