Wonder Scripts - Docs
  • About Me
  • SCRIPTS
    • Wonder Fakeid
      • Config file
    • Wonder Warehouse
      • Config file
    • Wonder Peacetime
      • Config file
    • Wonder Storage
      • Config file
    • Wonder Apartments
      • Config file
    • Wonder Notify
      • Config file
Powered by GitBook
On this page
  • Installation
  • Putting script to server
  • Inserting into database
  1. SCRIPTS

Wonder Apartments

PreviousConfig fileNextConfig file

Last updated 8 months ago

Installation

Putting script to server

  • Download script from

  • Put in your server files

  • put ensure wonder_apartments in your server.cfg

Inserting into database

  • open your program where you work with your server database

  • find import file button

  • select import.sql file

ALTER TABLE users ADD wonder_apartments VARCHAR(32) NOT NULL DEFAULT 'no';

CREATE TABLE IF NOT EXISTS `wonder_apartments` (
  `identifier` varchar(46) NOT NULL,
  `apartmentid` int(50) NOT NULL AUTO_INCREMENT,
  `purchased` varchar(50) NOT NULL DEFAULT 'no',
  `size` varchar(50) NOT NULL,
  `pincode` int(4) DEFAULT NULL,
  PRIMARY KEY (`apartmentid`) USING BTREE
);
keymaster