Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/31/20 in all areas

  1. Guten Tag zusammen. Aufgrund, dass ich mich nun aus der GTA RP Scene zurück ziehe hinterlasse ich euch das User Control System von mir. Macht was ihr wollt damit.... In diesen Sinne Viel Spaß damit. Requirements: Webserver MySQL server with MySQLi from the master branch or pdo from the pdo version branch Php 7.3 Github: Version 1.4.6: https://github.com/eodclan/User-Control-System/releases/tag/1.4.6 Version 1.4.8: https://github.com/eodclan/User-Control-System/releases/tag/1.4.8
    1 point
  2. Добрый день, может у кого кого то была такая же ошибка, и он как то её решил, помогите, пожалуйста, я не могу прикрепить скриншот, но вот текст этой ошибки Failed to retrieve the install directory. Specify your game patch now? Press cancel to terminate rage MP. Я пользуюсь стим версией гта пять, и поэтому не представляю из за чего может такое быть, при нажатии окей и указании директории ничего не происходит ,он просто сбрасфввается и просит заного указать, я посмотрел много роликов и гайдов у всех при запуске начинает докачивать лаунчер, у меня такого нет, помогите пожалуйста... Good day, maybe someone had the same error, and he somehow decided to help, please, I can not attach a screenshot, but here is the text of this error Failed to retrieve the install directory. Specify your game patch now? Press cancel to terminate rage MP. I use the steam version of GTA five, and therefore I can not imagine why this can be, when you click OK and specify the directory nothing happens ,it just sbrasfvaetsya and asks zanogo to specify, I looked a lot of videos and guides at all when you start the launcher starts to pump, I do not have this, please help...
    1 point
  3. Version 1.0.0

    137 downloads

    A library to easier manage CEF windows. Creating a CEF Window Function is based on Promise because I need this in my own resources. Promise return a CEF window object. cef window name (string) url (string) parameters to exec (array) - take a look on Executing a function into a CEF Window for parameters cefManager.createCef(cef window name, url, parametersToExec).then(cef => {}) cefManager.createCef('hud', 'package://rage/browsers/hud/index.html').then(cef => {}) Executing a function into a CEF Window Again function is based on Promise but returns nothing. cef window name (string) [function name (string), args how much you need(number, string, boolean etc.)] cefManager.executeCef(cef window name, [function name, args]).then(() => {}) cefManager.executeCef('hud', ['console.log', mp.players.length]).then(() => {}) Checking if CEF with name exists cef window name (string) cefManager.existsCef(cef window name) const exists = cefManager.existsCef('hud') Get CEF window object cef window name (string) cefManager.getCef(cef window name) const cef = cefManager.getCef('hud') Get CEF window current URL cef window name (string) cefManager.getCurrentCefURL(cef window name) const url = cefManager.getCurrentCefURL('hud') Get CEF window URL which was set in creating CEF window cef window name (string) cefManager.getCefURL(cef window name) const url = cefManager.getCefURL('hud') Reload CEF window Again Promise cef window name (string) ignore cache (boolean) - true to ignore cache (Browser::reload) cefManager.reloadCef(cef window name, ignore cache) cefManager.reloadCef('hud', true).then(() => {}) ps. no support from me for this library, if something works bad fix it.
    1 point
×
×
  • Create New...