Skip to content
View DarkoniusXNG's full-sized avatar

Organizations

@OpenAngelArena

Block or report DarkoniusXNG

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. barebones barebones Public template

    Forked from bmddota/barebones

    🍖 A starter Dota 2 custom game with useful hooks, settings, and libraries.

    Lua 47 10

  2. ancient_battle ancient_battle Public

    Ancient Battle custom game mode for Dota 2

    Lua 4

  3. custom spawner custom spawner
    1
    local delay_before_spawn = 30
    2
    local repeat_interval = 60
    3
    Timers:CreateTimer(delay_before_spawn, function()
    4
      local spawner_name = "name_of_your_spawner_entity_in_hammer"
    5
      local destination_name = "name_of_your_path_corner_entity_in_hammer"
  4. OpenAngelArena/oaa OpenAngelArena/oaa Public

    A really great Dota 2 game mode.

    Lua 237 227

  5. xtasy99/dota2buttemplate_fixed xtasy99/dota2buttemplate_fixed Public template

    Lua 29 15

  6. Adjusting creep bounties with Damage... Adjusting creep bounties with Damage Filter
    1
    -- Damage filter function
    2
    function gamemode:DamageFilter(keys)
    3
    	local attacker
    4
    	local victim
    5
    	if keys.entindex_attacker_const and keys.entindex_victim_const then