Hello, Guest

By registering with us, you'll be able to discuss, share and private message with other members of our community.
What's new

Installing GTA 5 RP - Project Reborn

Alexalsaud

Administrative
Staff member
Admin
Joined
Aug 5, 2024
Messages
337
ICoins
1,501
How to install the server:
  1. Download the archive, unzip it anywhere (there should be no Russian characters on the way to the folder).
  2. Install a MySQL server (e.g. Connect to localhost and create a database - reborn
  3. Once created, import the reborn.sql file from the archive
    1725036161191.png.

  4. For convenient database management, use or other similar SQL managers.

  5. After successful import, edit the data for connecting the server to the MySQL database, in two files:
    server/packages/server/index.js
    server/packages/server/systems/mysql.js


  6. The last step is to edit the "whitelist" - the server system does not allow all players, except for those who are on the list.
    Add your Social Club login in the file - server/packages/server/white.js

  7. JavaScript:
    var sc_allowed = [
    "kfc",
    "ваш логин social club",
    "логин друга"
    ];

    1. If you did everything correctly and there were no errors during the installation process, you can start the server.
  8. I hope the manual for installing this RAGE:MP server is clear to you, I tried to describe it in as much detail as possible.

    The admin panel is displayed in the database, the table is user, the column is admin, the maximum level is 6

JavaScript:
mysql.connection = mysql2.createConnection({
host : 'localhost', // Оставляйте localhost если запускаете у себя на ПК
user : 'root', // пользователь, чаще всего root
password : 'root', // пароль
database : 'reborn' // название базы данных
});
 
Back
Top