Jump to content

Search the Community

Showing results for tags 'Помощь'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • RAGE Multiplayer
    • Announcements
    • Discussion
    • Suggestions
  • Scripting
    • Scripting
    • Resources
  • Community
    • Support
    • Servers
    • Media Gallery
  • Non-English
    • Русский - Russian
    • Français - French
    • Deutsch - German
    • Espanol - Spanish
    • Română - Romanian
    • Portuguesa - Portuguese
    • Polski - Polish

Categories

  • Scripts
  • Gamemodes
  • Libraries
  • Plugins
  • Maps
  • Tools

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Facebook


Youtube


Skype


Web


VK

Found 6 results

  1. Ищу человека который писал код(-ы) для серверов Rage, что бы мог объяснить как правильно составлять код и что-то делать(языки программирования знаю). Заранее спасибо! Discord: Tony Barrera#1975
  2. Привет. Короче, ответьте на 4 вопроса пожалуйста:) Буду сверхблагодарен, если кто-нибудь еще и код-пример поскидывает (там где надо) 1. Как использовать команду на игрока по его ID? 2. Как создать группы для игроков и сделать для них определённые пермишены и оформления (например, что б игрок в группе "игрок" не могу вводить определённую команду и его ник над головой был, например, желтый) 3. Тут должен был быть вопрос про встроенные менюшки ГТА, но я полистал форум, и понял, что пока это не возможно, однако: Где взять интерьеры с ГТА? 4. Как сделать оформление шрифтов в чате (изменить шрифт, цвет, размер (жирный/тонкий) и т.д.)
  3. 1. Если у вас есть небольшой вопрос по небольшому коду, можете задать его в этой теме, чтобы не создавать новых тем. Для обсуждения более объемных вопросов, прочтите второе правило и создайте новую тему. 2. Темы по "Скриптинг"у, которые не имеют конкретных названий, будут удаляться. Примеры таких названий - "ХЭЛП, КАК ЭТО СДЕЛАТЬ", "ПОМОГИТЕ СО СКРИПТОМ", "ОШИБКА В КОДЕ", "НЕ МОГУ ПОНЯТЬ В ЧЕМ ОШИБКА" и т.д. Чтобы ваша новая тема не была удалена, перед созданием темы сформулируйте ее название так, чтобы оно максимально точно отражало суть вашего вопроса.
  4. Запустил updater скачивались все файлы, потом прихожу и вижу ошибку
  5. Помогите, не могу зайти на сервер, как обойти эту систему с портами и real ip и неreal ip
  6. После создании структуры персонажа не удается вызвать функцию из структуры Существует данный скрипт global.PLAYERS = {}; function AddPlayer(playerid, skin, name, health, armor, eat, money, bank, weapons, arrests, stars, drugs, fraction, rank) { PLAYERS[playerid] = {}; const temp = {}; temp.name = name; temp.skin = skin; temp.health = health; temp.armor = armor; temp.eat = eat; temp.money = money; temp.bank = bank; temp.weapons = weapons; temp.arrests = arrests; temp.stars = stars; temp.fraction = fraction; temp.rank = rank; temp.drugs = drugs; this.GetName=function(){ return this.name; } this.GetSkin=function(){ return this.skin; } this.SetSkin=function(skin){ this.skin = skin; } this.GetHp=function(){ return this.health; } this.SetHp=function(health){ this.health = health; } this.GetHp=function(){ return this.health; } this.SetHp=function(health){ this.health = health; } this.GetArm=function(){ return this.armor; } this.SetArm=function(armor){ this.armor = armor; } this.GetEat=function(){ return this.eat; } this.SetEat=function(eat){ this.eat = eat; } this.GetMoney=function(){ return this.money; } this.SetMoney=function(money){ this.money = money; } this.GetBank=function(){ return this.bank; } this.SetBank=function(bank){ this.bank = bank; } this.GetDrugs=function(){ return this.drugs; } this.SetDrugs=function(drugs){ this.drugs = drugs; } this.GetWeapons=function(){ return this.weapons; } this.SetBank=function(weapons){ this.weapons = weapons; } this.AddWeapon=function(weapon){ this.weapons.push(weapon);} this.RemoveWeapon=function(weapon){ this.weapons.remove(this.indexOf(weapon));} this.GetArrests=function(){ return this.arrests; } this.AddArrests=function(){ this.arrests += 1; } this.GetStars=function(){ return this.stars; } this.SetStars=function(stars){ this.stars = stars; } this.GetFraction=function(){ return this.fraction; } this.SetFraction=function(fraction){ this.fraction = fraction; } this.GetRank=function(){ return this.rank; } this.SetRank=function(rank){ this.rank = rank; } PLAYERS[playerid] = temp; } function RemovePlayer(playerid) { PLAYERS[playerid] = {}; } При подключении игрока вызывается эвент "playerJoin" а в нем функция : AddPlayer(player.id, models["a_f_y_hipster_02"], player.name, 100, 100, 100, 500, 0, {"Pistol": 900}, 0, 0, 0, 0, 0); В мод добавлена команда: "getdata": (player, args) => { let id = player.id; player.outputChatBox('Name:<br /><b>'+PLAYERS[id].name+'</b>'); player.outputChatBox('skin:<br /><b>'+PLAYERS[id].skin+'</b>'); player.outputChatBox('health:<br /><b>'+PLAYERS[id].health+'</b>'); player.outputChatBox('armor:<br /><b>'+PLAYERS[id].armor+'</b>'); player.outputChatBox('eat:<br /><b>'+PLAYERS[id].eat+'</b>'); player.outputChatBox('money:<br /><b>'+PLAYERS[id].money+'</b>'); player.outputChatBox('bank:<br /><b>'+PLAYERS[id].bank+'</b>'); }, При вызове команды выходит ошибка, PLAYERS[0].name is not defined где именно я накосячил с ООП структурой? (P.S переходил с Lua )
×
×
  • Create New...