Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/02/19 in all areas

  1. Hey dear RAGE:MP staff, I'm a guy from Turkey, I hope you doing well. I've noticed that we don't have a flag option to show up in the masterlist, Turkish section either. I just searched few topics which includes same requests but they are kinda old. I believe that there are much players from Turkey who plays in RAGE:MP also there are couple of Turkish servers incoming soon which means we getting populated soon. Would you please add a Turkish section in non-English forums and the Turkish flag for the masterlist? Thanks in advence.
    2 points
  2. Version 1.9.6

    84 downloads

    This library is discontinued and lacks some features. I'm working on a new remote call library which is faster and more secure Asynchronous Javascript Communication is a module to allow easy communication between server, client and CEF/browser. This module lets you call server handlers from clients (and vice versa) without dealing with adding and managing custom event handlers. You can easily call a handler and get your callback called as soon as everything is returned from the handler in a promise like way! Let's see how it works in action: // server side const ajcom = require("./ajcom") ajcom.register("getServerName", hCtx => { return mp.config.name }) // client side const ajcom = require("./[package name]/ajcom.js") mp.events.add("guiReady", () => { ajcom.callServer("getServerName").then((ctx, serverName) => { mp.gui.chat.push(`Welcome to ${serverName} ragemp server!`) }) }) That's all! Not convinced yet? See how the above code is done without ajcom: // server side mp.events.add("getServerName", (player) => { player.call("gotServerName", [mp.config.name]) }) // client side mp.events.add("gotServerName", (serverName) => { mp.gui.chat.push(`Welcome to ${serverName} ragemp server!`) }) mp.events.add("guiReady", () => { mp.events.callRemote("getServerName") }) See? It eases the event handling mess. But there's a lot more to ajcom. You can easily handle errors happening on handler's side or any of the callbacks, set delays and other stuff. The full documentation is available here Please post your questions and issues to the forum post Github repo
    2 points
  3. Version 0.0.2

    780 downloads

    This resource will help many newcomers in the development of the server. At this gamemode, used the sequelize framework, for easy work with the database. Also used frameworks ReactJS + ReduxJS special for CEF. GitHub URL: https://github.com/HEXisGOD/RAGEMP_sequelize_react_redux Installing 1. Download this archive, unpack it in RAGE:MP new server folder. 2. To work with the database locally I suggest using Denwer. 3. Config connection data at packages\sequelize\modules\db.js 4. Import example database into phpMyAdmin 5. Then start server, and test it !) Needed node modules 1. MySQL2 - [ npm install mysql2 -save ] 2. Sequelize - [ npm install sequelize -save ] - Thanks @kemperrr for make "pleaseCallCEF" function and event on ReactJS!! This is first version, During the time there can be changes and improvements!!
    1 point
  4. Parking spots for vehicles in GTA5. There are over 1,500 entries. It's very well spread across the whole map. Includes parking lots, side street parking, etc. It's NOT a complete list. It's NOT a perfect list! No emergency, no military, and no police vehicle spawns. There are a few boat spawns. There are heli, and possibly plane spawns. There may be entries were vehicles are parked at a gas station, at a stop light, or in the middle of the street, but these cases are rare and cleaning them up shouldn't be too painful. Grab the json data file here: https://github.com/Kthksdie/GTA5-SpawnPoints_Vehicles/
    1 point
  5. игра лицензия ,захожу на сервер идет подключение в низу в правом углу грузиться круглишок и стоит на нуле и та постоянно
    1 point
  6. select size Либо свой делать
    1 point
  7. We surely need a Turkish flag for the masterlist.
    1 point
  8. на сервере могу менять название блипов спокойно а у клиента нет такого свойства как .Name или .SetName. Если бы мне нужно было только создать и все я бы не парился на мне нужно иногда менять имя )
    1 point
  9. I'm owner of an upcoming Turkish roleplay server and we expect a lot of people to come RageMP. We need turkish flag on masterlist and a Turkish section.
    1 point
  10. Yeah definitely, as an active member of the roleplaying Turkish community, I have heard a lot of people are planning to open servers/create communities in Rage MP.
    1 point
  11. Зайди на сайт сервера и перейди во вкладку донат. Порой удивлюсь как люди ещё играют на таком проекте как RedAge, ещё и донатят туда...
    1 point
  12. Include animation-viewer resource in settings.xml. kann mir das mal wer erklären ich check nicht wie ich da was machen soll? can someone tell me what i need to do? dont understand this (Include animation-viewer resource in settings.xml.)
    1 point
  13. This error happens due to an unknown reason currently. Temp/Possible fixes: 1) go to client_resources/ip:port of the server and delete that folder. 2) Restarting the game sometimes work. 3) Making the game as windowed mode sometimes avoids the issue.
    1 point
×
×
  • Create New...