Jump to content
DAYZ-CODE.RU - Создай свой игровой сервер
Уважаемый пользователь сайта DAYZ-CODE.RU Уделите одну минуту перед любой приватной сделкой! ОБЯЗАТЕЛЬНО! Перед сделкой сверьте контакты пользователя, скопируйте логин из мессенджера и сверьте с тем, что указан в профиле. Не лишним будет проверить пользователя через личные сообщения на форуме, написав: "Привет, это ты мне пишешь в Telegram или Discord? Или иной месседжер!".

RAVAGER

Members
  • Posts

    40
  • Joined

  • Last visited

  • Days Won

    12
  • Отзыв

    0%

RAVAGER last won the day on July 6

RAVAGER had the most liked content!

4 Followers

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

RAVAGER's Achievements

Experienced

Experienced (11/25)

  • 250 likes Rare
  • Three years Rare
  • Very Popular Rare
  • 100 likes Rare
  • Conversation Starter

Recent Badges

261

Reputation

  1. @Droganeti Что за взрывчата модовая или обычная ванильная ? Если модовая то какая ? Возможно мод не корректно работает сам по себе.
  2. @Andreevich Это тебе только если пбо вскрывать и править конфиг мутантов.
  3. Просмотр файла Предметы для эхо коллекции Мод на рп предметы для обмена: Включает в себя: Плюшевые игрушки / статуэтки (4 предмета) Предметы для обмена Escape From Tarkov (13 предметов) Консоль (1 предмет) Mod for RP items for exchange: Includes: Plush toys / figurines (4 items) Exchange items Escape From Tarkov (13 items) Console (1 item) Добавил RAVAGER Добавлено 26.09.2024 Категория Скрипты, моды  
  4. Небольшой скрипт config.cpp на стак патронов по 200 штук. class CfgPatches { class bartschamber_ammostack { units[]={}; weapons[]={}; requiredVersion=0.1; requiredAddons[]= { "DZ_Weapons_Ammunition", "DZ_Weapons_Magazines" }; }; }; class CfgMagazines { class Magazine_Base; class Ammunition_Base: Magazine_Base { }; class Ammo_45ACP: Ammunition_Base { count=200; }; class Ammo_308Win: Ammunition_Base { count=200; }; class Ammo_9x19: Ammunition_Base { count=200; }; class Ammo_380: Ammunition_Base { count=200; }; class Ammo_556x45: Ammunition_Base { count=200; }; class Ammo_556x45Tracer: Ammunition_Base { count=200; }; class Ammo_762x54: Ammunition_Base { count=250; }; class Ammo_762x54Tracer: Ammunition_Base { count=200; }; class Ammo_762x39: Ammunition_Base { count=200; }; class Ammo_762x39Tracer: Ammunition_Base { count=200; }; class Ammo_9x39: Ammunition_Base { count= 500; }; class Ammo_9x39AP : Ammunition_Base { count = 500; }; class Ammo_22: Ammunition_Base { count=200; }; class Ammo_12gaPellets: Ammunition_Base { count=200; }; class Ammo_12gaSlug: Ammunition_Base { count=200; }; class Ammo_357: Ammunition_Base { count=200; }; class Ammo_545x39: Ammunition_Base { count=200; }; class Ammo_545x39Tracer: Ammunition_Base { count=200; }; class Ammo_ArrowComposite: Ammunition_Base { count=200; }; class Ammo_SharpStick: Ammunition_Base { count=200; }; class Ammo_ArrowPrimitive: Ammunition_Base { count=200; }; class Ammo_ArrowBoned: Ammunition_Base { count=200; }; class Ammo_ArrowBolt: Ammunition_Base { count=200; }; class Ammo_DartSyringe: Ammunition_Base { count=200; }; class Ammo_Flare: Ammunition_Base { count=200; }; class Ammo_RPG7_HE: Ammunition_Base { count=4; }; class Ammo_RPG7_AP: Ammunition_Base { count=4; }; class Ammo_LAW_HE: Ammunition_Base { count=4; }; class Ammo_GrenadeM4: Ammunition_Base { count=4; }; class Ammo_46x30: Ammunition_Base { count=200; }; class Ammo_8mm: Ammunition_Base { count=200; }; class Ammo_338: Ammunition_Base { count=200; }; class Ammo_408Chey: Ammunition_Base { count=200; }; class Ammo_12GaBB: Ammunition_Base { count=200; }; class Ammo_303: Ammunition_Base { count=200; }; class Ammo_12gaNeedles: Ammunition_Base { count=200; }; class Ammo_FUGAS: Ammunition_Base { count=4; }; class Ammo_12gaPellets_tracer: Ammunition_Base { count=200; }; class Ammo_4x30: Ammunition_Base { count=200; }; class Ammo_338Tracer: Ammunition_Base { count=200; }; class Ammo_408: Ammunition_Base { count=200; }; class Ammo_408Tracer: Ammunition_Base { count=200; }; class Ammo_792x33: Ammunition_Base { count=200; }; class Ammo_12_7x55: Ammunition_Base { count=200; }; class Ammo_12x99: Ammunition_Base { count=200; }; class Ammo_12x99Tracer_Green: Ammunition_Base { count=200; }; class Ammo_12x99Tracer_Yell: Ammunition_Base { count=200; }; class Ammo_nails: Ammunition_Base { count=200; }; class Ammo_762x25: Ammunition_Base { count=200; }; class Ammo_5_7x28: Ammunition_Base { count=200; }; class Ammo_5_7x28Tracer: Ammunition_Base { count=200; }; class Ammo_762x33: Ammunition_Base { count=200; }; class Ammo_792x57: Ammunition_Base { count=200; }; class Ammo_9x18: Ammunition_Base { count=200; }; class Ammo_shock: Ammunition_Base { count=4; }; };
  5. Запрет на связывание игроков 4_World modded class ActionRestrainTarget { override bool ActionConditionContinue(ActionData action_data) { return false; } } Запрет на накидывание мешка на голову игрока 4_World modded class ActionCoverHeadTarget { override bool ActionCondition( PlayerBase player, ActionTarget target, ItemBase item ) { if ( !super.ActionCondition(player, target, item) ) { return false; } PlayerBase targetPlayer = PlayerBase.Cast(target.GetObject()); if ( targetPlayer && targetPlayer.GetIdentity() != NULL ) { return true; } return false; } } Убрать кнопку пульса 4_World modded class ActionCheckPulseTarget { override bool ActionCondition(PlayerBase player,ActionTarget target,ItemBase item) { return false; } }; Удаление брызгов крови 3_Game modded class Hit_MeatBones { override void BloodSplatGround( vector start_pos, vector speed_vector, float decay_coef ) { }; };
  6. Version 1.0.0

    27 downloads

    Мод на рп предметы для обмена: Включает в себя: Плюшевые игрушки / статуэтки (4 предмета) Предметы для обмена Escape From Tarkov (13 предметов) Консоль (1 предмет) Mod for RP items for exchange: Includes: Plush toys / figurines (4 items) Exchange items Escape From Tarkov (13 items) Console (1 item)
    Free
  7. Просмотр файла Столы для выращивания канабиса 2 стола с неновой подсветкой для выращивания канабиса. 2 tables with neon lighting for growing cannabis. Добавил RAVAGER Добавлено 04.09.2024 Категория Скрипты, моды  
  8. Version 1.0.0

    53 downloads

    2 стола с неновой подсветкой для выращивания канабиса. 2 tables with neon lighting for growing cannabis.
    Free
  9. Просмотр файла СВО - "РПГ" В моде представлено несколько разновидностей гранатометов и серий птуров различных модификаций. На скринах представлено не все, так же имеются боеприпасы к ним. Крутая анимация выстрела и реалистичный эффект от взрыва. Мод подойдет для тематических серверов на тему СВО и боевых действий. The mod features several types of grenade launchers and a series of ATGMs of various modifications. Not everything is shown in the screenshots, there are also ammunition for them. Cool shot animation and realistic explosion effect. The mod is suitable for thematic servers on the theme of military and military operations. Добавил RAVAGER Добавлено 03.09.2024 Категория Оружие  
  10. Просмотр файла СВО - медикаменты Небольшой пак медикаментов в стиле военной тематики СВО. A small pack of medicines in the style of a military theme of SVO. Добавил RAVAGER Добавлено 03.09.2024 Категория Оружие  
  11. Version 1.0.0

    92 downloads

    В моде представлено несколько разновидностей гранатометов и серий птуров различных модификаций. На скринах представлено не все, так же имеются боеприпасы к ним. Крутая анимация выстрела и реалистичный эффект от взрыва. Мод подойдет для тематических серверов на тему СВО и боевых действий. The mod features several types of grenade launchers and a series of ATGMs of various modifications. Not everything is shown in the screenshots, there are also ammunition for them. Cool shot animation and realistic explosion effect. The mod is suitable for thematic servers on the theme of military and military operations.
    Free
  12. Version 1.0.0

    42 downloads

    Небольшой пак медикаментов в стиле военной тематики СВО. A small pack of medicines in the style of a military theme of SVO.
    Free
  13. Просмотр файла FullPack_kr_Сlothing - пак кастомной экипировки более 400 штук. Огромный пак кастомной экипировки + валюта для трейдера более 400 предметов. Все айди и их расшифровка находятся в архиве. Скриншоты всех предметов делать не стал так как их очень много. A huge pack of custom equipment + currency for the trader of more than 400 items. All the IDs and their transcript are in the archive. I didn't take screenshots of all the items because there are a lot of them. Добавил RAVAGER Добавлено 03.09.2024 Категория Скрипты, моды  
  14. Version 1.0.0

    89 downloads

    Огромный пак кастомной экипировки + валюта для трейдера более 400 предметов. Все айди и их расшифровка находятся в архиве. Скриншоты всех предметов делать не стал так как их очень много. A huge pack of custom equipment + currency for the trader of more than 400 items. All the IDs and their transcript are in the archive. I didn't take screenshots of all the items because there are a lot of them.
    Free
  15. @Tvinkiss Так же могут появиться школодосеры который на стрес закинут твой апи и сервер уйдет в долгосрочный сон. Недовольный школьник который тебе донатил а ты его забанил. Смена айпи разумеется тебе не как не поможет. На этом этапе уже может закончиться весь этот шабаш с хостингом в домашних условиях.
×
×
  • Create New...