All Projects → No-Bling → Dota

No-Bling / Dota

Licence: mit
"hats" "what rules?" "free game" "no bitching" "glance value" - Delay the inevitable!

Projects that are alternatives of or similar to Dota

LegionTD-Reborn
A custom game mode inspired by Legion TD for DotA 2
Stars: ✭ 34 (-81.01%)
Mutual labels:  mod, dota2
Advancecontent
Advance Content, a mindustry mod that gives you 50+ turrets most of which uses scripts, this mod will help beginners learn the art of modding, scripting and sprite making(hopefully)
Stars: ✭ 157 (-12.29%)
Mutual labels:  mod
Tickthreading
[not yet functional] Multi-threaded minecraft. Performance over correctness. What could go wrong?
Stars: ✭ 141 (-21.23%)
Mutual labels:  mod
Proton
Javascript particle animation library
Stars: ✭ 1,958 (+993.85%)
Mutual labels:  particles
Crafttweaker
Tweak your minecraft experience
Stars: ✭ 146 (-18.44%)
Mutual labels:  mod
Agricraft
The source code for the Minecraft mod: AgriCraft
Stars: ✭ 160 (-10.61%)
Mutual labels:  mod
Notion Enhancer
an enhancer/customiser for the all-in-one productivity workspace notion.so (app)
Stars: ✭ 3,114 (+1639.66%)
Mutual labels:  mod
Unity resources
A list of resources and tutorials for those doing programming in Unity.
Stars: ✭ 170 (-5.03%)
Mutual labels:  particles
Ice and fire
Minecraft mystical mod
Stars: ✭ 164 (-8.38%)
Mutual labels:  mod
Multiplayer
Zetrith's Multiplayer mod for RimWorld
Stars: ✭ 154 (-13.97%)
Mutual labels:  mod
Bee2.4
Tool to mod Portal 2's Puzzlemaker
Stars: ✭ 152 (-15.08%)
Mutual labels:  mod
Factorioclusterio
internet communication for factorio mods
Stars: ✭ 147 (-17.88%)
Mutual labels:  mod
D Optimizer
Make Dota 2 fps great again
Stars: ✭ 161 (-10.06%)
Mutual labels:  dota2
Baubles
A mod api that adds 7 bauble slots to the players inventory.
Stars: ✭ 143 (-20.11%)
Mutual labels:  mod
Unity Bullet Hell
An extremely efficient projectile generator for unity.
Stars: ✭ 168 (-6.15%)
Mutual labels:  particles
Nyan
Modding API with a typesafe hierarchical key-value database with inheritance and dynamic patching 😺
Stars: ✭ 141 (-21.23%)
Mutual labels:  mod
Parcels
Main code for Parcels (Probably A Really Computationally Efficient Lagrangian Simulator)
Stars: ✭ 148 (-17.32%)
Mutual labels:  particles
Layaair discard
This is old LayaAir veriosn writetten by ActionScript 3.0 ,now LayaAir is using TypeScript as the Engine Script,Please use https://github.com/layabox/LayaAir instead.
Stars: ✭ 1,858 (+937.99%)
Mutual labels:  particles
Black
World's fastest HTML5 2D game engine   🛸
Stars: ✭ 174 (-2.79%)
Mutual labels:  particles
The Betweenlands
A dark, hostile environment...
Stars: ✭ 167 (-6.7%)
Mutual labels:  mod

No-Bling DOTA "GlanceValue" restoration mod

We have not reached TF2 levels of visual diarrhea in 2020 but we're getting awfully close...

Glance

About

A competent companion to Settings -- Video -- Effects Quality with the main focus on GlanceValue.
No-Blingtm mod is economy-friendly, gracefully disabling particle spam while leaving hats model untouched by default.
Might say it even helps differentiate great artistic work, shadowed by the particle effects galore Valve slaps on top.

Before you ask about VAC:

Don't worry, this is a perfectly safe, well intended, hats friendly, good behaviour cosmetic-only mod,
optimally swapping just original Valve authored files with no 3^rd party content alteration whatsoever,
and whitelist-able at a glance...

How to use

Get the repository as zip, extract all files
Execute No-Bling-builder.bat script on Windows or No-Bling-builder.sh on Linux
Then add launch option -tempcontent if not already present.
Run the script before launching DOTA to have an always up to date mod and prevent schema mismatch errors.
A desktop shortcut is created to run the builder quicker, without compiling and with previous choices.

Back in Beta

Choices are a work in progress - not as feature-rich and complete as the old script, but we will get there..
Filters on the other hand are more complex and useful.

Getting started with user filters

Script uses a rather block first, white-list later aproach, so various issues need to be corrected via hard-coded filters.
Most filters use item numbers (ids) but also generic hero and slot names.
Basically:
~ See generated items_reference.txt with only the relevant items included and portraits section removed.
~ Search for a partial item name; note item "number", note used_by_heroes, note item_slot (if missing, assume "weapon").
~ Use details learned above to create your user filters exceptions in a No-Bling-filters.txt file:

"user-filters"
{
  keep_item "12930,13456"  // keep item id 12930 : Eminence of Ristul and 13456 : Crown of the One True King
}

A more advanced No-Bling-filters.txt file example with resource replacement:

"user-filters"
{
  keep_soundboard "TI10_Ceeeb,Brutal"      // see scripts/chat_wheel.txt
  keep_rarity     "legendary,ancient"
  keep_slot       "head,voice"
  keep_hero       "npc_dota_hero_crystal_maiden,npc_dota_rattletrap_cog"
  keep_item       "12930,13456,12,38"
  keep_model      "4004,6054"
  keep_visuals    "4004"
  keep_ability    "7978"
  keep_ambient    "6694"

  // replace id1 with id2 content or { defined manually }
  38 7385
  12 {
    "model_player"    "models/items/kunkka/kunkka_shadow_blade/kunkka_shadow_blade.vmdl"
    "visuals"
    {
      "asset_modifier0"
      {
        "type"    "particle"
        "asset"   "particles/units/heroes/hero_kunkka/kunkka_weapon_glow_ambient.vpcf"
        "modifier"    "particles/econ/items/kunkka/kunkka_weapon_shadow/kunkka_weapon_glow_shadow_ambient.vpcf"
      }
      "asset_modifier3"
      {
        "type"    "particle_create"
        "modifier"    "particles/units/heroes/hero_kunkka/kunkka_weapon_glow_ambient.vpcf"
      }
    }
  }

  // Can also make use of the internal filters format:
  replace_item {
    246 { visuals{} }
    247 246
  }
  replace_visuals {
    6972 5712                              // explicit id1 "visuals" = id2 "visuals"
    npc_dota_hero_furion { weapon 4159 }   // generic hero - slot "visuals"  = id2 "visuals"
  }
  keep_asset {
    npc_dota_hero_warlock ability_ultimate // generic keep hero - slot having "type" "particle"
  }
  keep_modifier {
    npc_dota_hero_skywrath_mage weapon     // generic keep hero - slot having "type" "particle_create"
    particles/units/heroes/hero_juggernaut/juggernaut_blade_generic.vpcf -
  }
}

TODO

Expand choices; populate internal filters; fix visual issues; seek feedback; thank you for your patience!

Published under MIT license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].