Mod request

Hello modding peoples this is your friendly neighborhood heaven here with a little modding request for QoT. I had asked frog if there were going to be anykind of changes to these skills and he said no, so I am turning to you the modding community for help. This is a mod request simply for my enjoyment for both on (if possible with me not having to always be the host) and offline. Well without any further wasting your time here is the requests.

Queen of thorn's bramble shiel

Level 7: Adsorbs 1300 damage for 30 seconds and will reflect 20% of all damage done back on the attacker, cost 650 mana.

Level 10: absorbs 1350 damage, reduces all damage by 50%, reflects 25% of damage back onto the attacker, makes user immune to stuns and slow for the first 15 seconds of the shield. Cost 700 mana

 

 

Queen of thorn's Goddess of thorns

Level 15: Goddess of thorns: Requires bramble shield, ground spike. Once The queen of thorns ascends to the status of a goddess she has the power to reduce mana cost of all her allies abilities by 25%. (including herself)

 

Queen of thorn's open form

Bonus: 50% attack speed, 50% AA damage increase, AA attack range increase

Cons: Lacks minions, low hp

Ground spikes: Gains a vampire effect, regens hp and mp of allies and self for ever enemy killed (Basically another Devine justice)

 

Here are some joking changes if you feel like doing them... maybe put them on a seperate mod.

Fan service: QoT uses tentacle vines to give service to all who plays her, If sedna is around she will tentacle rape sedna.

MAke ground spikes cover the entire field.

 

2,428 views 16 replies
Reply #1 Top

You do realise how difficult this is, right?

Reply #2 Top

Quoting morpheas768, reply 1
You do realise how difficult this is, right?
This is why I am asking can someone do it. I am not expecting something like this done in like two or three days.

Reply #3 Top

They actually aren't that bad, it would just take some time hacking things together. The lua isn't that bad, you just have to spend some time trying things until you get the hang of it.

Morpheas - I looked at your lua and made some changes, but it still hasn't worked. I put it on a backburner while I played with the colors and fixed the minion hp bug. I'll work with it some more when I get some more time.

Reply #4 Top

Morpheas - I looked at your lua and made some changes, but it still hasn't worked. I put it on a backburner while I played with the colors and fixed the minion hp bug. I'll work with it some more when I get some more time.

Are you talking about the Vampiric Effect i tried to put into Entourage?

It was just my noob attempt. I am sure i have made a big mistake in this .lua file , but i cant spot it.

As i dont know the LUA language, i simply copy/paste text in all my mods, making the neccessary changes in it ofc, and trying to make it work. I cant write my own commands, so i try my best with copy/pasting and my simple understanding of obvious things like GetHealthBonus = ......... etc etc

Well you get my point ;)

Reply #5 Top

You two lost me with the modding talk X|

Reply #6 Top

Yeah. The Vampiric effect. Things looked like they should work. You did screw up the effects and the calls, but I think I fixed all of that. Figuring out the rest of what went wrong I've put on my list of things to do.

As a side note, why not just give them health regen? Vampiric aura's are really overated anyway, they grant weak health regeneration, but only when you attack. It is a lot of overhead for little gain.

Reply #7 Top

Quoting Ptarth, reply 6
Yeah. The Vampiric effect. Things looked like they should work. You did screw up the effects and the calls, but I think I fixed all of that. Figuring out the rest of what went wrong I've put on my list of things to do.

As a side note, why not just give them health regen? Vampiric aura's are really overated anyway, they grant weak health regeneration, but only when you attack. It is a lot of overhead for little gain.

Can you tell me what exactly where my mistakes in the code? If you could simply copy paste the text and post it with highlighted the mistakes, that would be great. It would help me knowing "what went wrong", and improve my modding skills.

Thanks O:)

Reply #8 Top

As long as they restore health when enemies are slain than you can call it what you wish or mod it how you wish lol. Wait are you two actually working on the mod now?

Reply #9 Top

I dont, but Ptarth is working on it.

I dont have the skill and knowledge to do it, and Ptarth is great in modding, so it is better that he does it.

Reply #10 Top

#################################################################################################################
# Entourage I
#################################################################################################################
AbilityBlueprint {
    Name = 'HQueenEntourage01',
    DisplayName = 'Entourage I',
    Description = 'Queen of Thorns gains a Life Steal Aura.',
    AbilityCategory = 'HQUEENPACKED',
    AbilityType = 'Aura',
    TargetAlliance = 'Ally',
#    Tooltip = {
#        TargetAlliance = 'Ally',
#        DescriptionValues = {
#            10,
#        },
#    },
    TargetCategory = 'MOBILE - UNTARGETABLE',
    AffectRadius = 20,
    AuraPulseTime = 2,
    Buffs = {
        BuffBlueprint {
            Name = 'HQueenEntourageBuff01',
            Debuff = false,
            DisplayName = '<LOC ABILITY_Vampire_0053>Vampiric Aura',
            Description = '<LOC ABILITY_Vampire_0054>Life Steal increased.',
            BuffType = 'HQUEENVAMPIRICAURA',
            Stacks = 'REPLACE',
            Duration = 5,
            Affects = {
                LifeSteal = {Add = 0.10},
            },
            Icon = '/dgqueenofthorns/NewQueenEntourage01',
        },
        BuffBlueprint {
            Name = 'HQueenEntourage01FX',
            Debuff = false,
            Description = '<LOC ABILITY_Vampire_0095>Vampiric Aura Effects',
            BuffType = 'HQUEENLIFESTEALAURAFX',
            Stacks = 'IGNORE',
            Duration = 6,
            Affects = {
                Dummy = {},
            },
            OnApplyBuff = function( self, unit, instigator )
                if unit != instigator then
                    #AttachBuffEffectAtBone( unit, 'Lifesteal01', -2, unit.Buffs.BuffTable[self.BuffType][self.Name].Trash )
                end
            end,
        },
    },
    CreateAbilityAmbients = function(self, unit, trash)
#        HQueenEntourage01FX(unit, trash)
    end,
    Icon = '/dgqueenofthorns/NewQueenEntourage01',
}

#################################################################################################################
# VFX - Vampiric Aura
#################################################################################################################
#function HQueenEntourage01FX(unit, trash)
#    trash:Destroy()
#    local fx = AttachCharacterEffectsAtBone( unit, 'queen_unpacked', 'HQueenEntourage01', -2, trash )
#    for k, vEffect in fx do
#        unit.TrashOnKilled:Add(vEffect)
#    end
#end

 

I got it to work to the point of giving the QoT lifesteal. It doesn't give her minions lifesteal. It should give allies. I think. I comment out a lot of things which shouldn't really matter, however this should give you a push in the right direction. Once you see where you went wrong, you can start adding back in things like the animations and the descriptions.

Reply #11 Top

uhh interesting....if I actually understood it X|

 

edit

 

Cant wait to see itin action yay!

Reply #12 Top

Great! thank you!

I tried to make everything work at the same time and to have all the effects and give minions Vamp Aura, like erebus does, and i guess thats why i failed.

I will try it soon,

again thanks ;)

Reply #13 Top

heavenlysynn,

The Vampiric Aura works great! Both in QoT and her minions. and ofc the aura applies to allies too.

I got it to work into Entourage, basically Ptarth got it to work ;)

I will now try to get it to work with Ground Spikes, like you asked, i dont know if can make it like Divine Justice but i will try.

Reply #14 Top

Yay thanks let me know how it comes along.

Reply #15 Top

I will upload a mod soon, although it not what you asked for, i am hoping you will like it.

Please do check it out.

Reply #16 Top

ok