Jump to content

Nismo_Gleichu

Members
  • Posts

    5
  • Joined

  • Last visited

Everything posted by Nismo_Gleichu

  1. Look this https://ibb.co/cfRLam I have problem with dpCore from Drift Paradise ;x Database.lua --- Основной модуль для работы с базой данных -- @module dpCore.Database -- @author Wherry Database = {} local dbConnection --- Выполняет подключение к базе данных. -- Для подключения используются параметры из DatabaseConfig -- @treturn bool удалось ли подключиться к БД function Database.connect() if isElement(dbConnection) then outputDebugString("WARNING: Database.connect: connection already exists") return false end local host = DatabaseUtils.prepareDatabaseOptionsString { host = DatabaseConfig.host, port = DatabaseConfig.port, dbname = DatabaseConfig.dbName } local options = DatabaseUtils.prepareDatabaseOptionsString(DatabaseConfig.options) dbConnection = Connection( DatabaseConfig.dbType, host, DatabaseConfig.username, DatabaseConfig.password, options ) if not dbConnection then outputDebugString("ERROR: Database.connect: failed to connect") root:setData("dbConnected", false) return false end root:setData("dbConnected", true) return true end --- Возвращает MTA-элемент подключения к БД -- @treturn element подключение function Database.getConnection() if not isElement(dbConnection) then dbConnection = nil end return dbConnection end --- Отключается от базы данных -- @treturn bool удалось ли отключиться от база данных function Database.disconnect() if not isElement(dbConnection) then outputDebugString("WARNING: Database.disconnect: no connection") return false end dbConnection:destroy() dbConnection = nil return true end
  2. Skąd mam wźiąść skrypt Steering Help/Smooth Steering jak na Drop Club Prosze pomocy
  3. Yo Guys I need steering help script looks like Drop Club
×
×
  • Create New...