🧠Installation

BP Garage Installation Document and Basic Concepts

Depencedies

Resource
Download

garage-map

bp-garage-sql

Bob74_ipl

Place your scripts

The order on server.cfg should be like this.

start bob74_ipl
start qua_houses_s4
start bp_garage

Database Setup

Check if there is a kibra-mechanics table already established in your database.

If it exists, delete it.

And now, enter this SQL code into your mysql database and set up the table.


CREATE TABLE IF NOT EXISTS `bp_garages` (
  `garageid` int(11) NOT NULL AUTO_INCREMENT,
  `garagetype` longtext DEFAULT NULL,
  `garageowner` longtext DEFAULT NULL,
  `garagemeta` longtext DEFAULT NULL,
  `garageimg` longtext DEFAULT NULL,
  `garagename` longtext DEFAULT NULL,
  `garageownername` longtext DEFAULT NULL,
  PRIMARY KEY (`garageid`)
) ENGINE=InnoDB AUTO_INCREMENT=131 DEFAULT CHARSET=utf8mb4;

Installation Completed

Last updated