WIP World of Warcraft3 Instances [Pre-Release Thread]

UndeadDragon

Super Moderator
Reaction score
447
Chains of Ice sould be named Howling Blast, because you says it does AoE... Just nitpicking :p
 

WolfieeifloW

WEHZ Helper
Reaction score
372
Icy Touch does the AoE;
But yes, Howling Blast would be better indeed.

And please, nitpick all you like :) !
 

WolfieeifloW

WEHZ Helper
Reaction score
372
Update
There is now a test map uploaded.
It's nothing special.
The scorpions have no attack, and are just used for testing damages.
The skeleton has an attack, and is used for testing different things (Paladin's Retribution Aura, although the Paladin isn't in this release).

Have fun, and give me some feedback!
 

xAnaMorphine

Active Member
Reaction score
43
I tested your map. Looks great already!
However, I played the feral druid and I had some issues.
I could only stack 1 combo point, whilst the orbs floating around my hero were getting more and more.
(The image did not update either, instead you got a new ability)
Feracious Bite (not sure if typed corectly) does not work properly. (It does not add any damage)
Other then that it was fun to play :)
 

WolfieeifloW

WEHZ Helper
Reaction score
372
Feral Druid should be fixed.

Update
Spells
Frost/Unholy Death Knight auto-spell finished.
Rune of the Fallen Crusader: Has a X% chance to increase Strength by 15% for 5 seconds.

Thread
Test map updated.
 

WolfieeifloW

WEHZ Helper
Reaction score
372
Update
Map
I sort of have to redo everything up to this point.
I'm now using Damage so that the map, overall, will be of a better quality.
This will take some time to redo everything up to this point, but it shouldn't take too long.
 

Dirac

22710180
Reaction score
147
I don't like the way your DK works: there's no rotation whatsoever, only right click and go breakfast cuz im hungry. Also runes don't work like that, i suggest you to copy almost the exact same system WoW uses to make it an interesting class
 

WolfieeifloW

WEHZ Helper
Reaction score
372
I don't want to copy exactly what WoW does, I think the four mana representing two Frost and two Unholy runes is nice.
And I mean, let's be honest, DK's were sort of just a lolattack class.
I played one as my main, and the only thing you really had to do was keep diseases up and attack.

But, I don't want to start a huge WoW discussion here, so PM me if you want to talk further about WoW :p

Anyways, I'm going to be recoding almost the whole map, so I should be back caught up and working on new content within a few days.
 

Rllulium

New Member
Reaction score
10
I have to say that I think you need a better system to handle the feral druid's melee combat. Having to select the ability and then the target rarely feels smmoth for melee range abilities, and having to constantly spam these abilities is royally annoying. The death knights combat flows much better for comparison. Consider making atleast Claw be based of an "on-next-attack" structure.
 

WolfieeifloW

WEHZ Helper
Reaction score
372
I would love to allow all the melee heroes abilities to be an on-next-attack feature;
But only one of those kind of spells can be on a hero at a time.

Dirac messaged me about a targeting system, but that requires all spells to be instant no-target.
I think I prefer to just have the select and target;
As long as you use hotkeys it's not that hard, considering I'm making them all QWER(T).
 

Dirac

22710180
Reaction score
147
Maybe not a targeting system but this:
Everytime the druid deals damage to an oponent, store that unit for the druid so you can know which unit he damaged last, then when he casts the melee ability check if that unit is within range, if it isnt then do nothing, or pick the closest unit to the druid and deal damage to unit. You can use this system for storing damaged units
JASS:
library GetLastDamagedUnit requires AIDS // Don't forget requirements. Implicit requirements are bad practices
    private struct DamageData extends array // array structs are more efficient than regular structs. If possible, you should use Alloc <img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="smilie smilie--sprite smilie--sprite1" alt=":)" title="Smile    :)" loading="lazy" data-shortname=":)" />

        // Our inner variables
        unit damagedUnit
        private trigger t

        // Set the unit variable
        private static method OnDamage takes nothing returns boolean
            set thistype[GetEventDamageSource()].damagedUnit = GetTriggerUnit()
            return false
        endmethod

        // Huzzah! No need for any init functions OR Damage!
        private method AIDS_onCreate takes nothing returns nothing
            set this.t = CreateTrigger()
            call TriggerAddCondition( this.t, Condition(function thistype.OnDamage) )
            call TriggerRegisterUnitEvent( this.t, this.unit, EVENT_UNIT_DAMAGED )
            set this.damagedUnit = null
        endmethod

        // Let&#039;s clean up our act
        private method AIDS_onDestroy takes nothing returns nothing
            call DestroyTrigger(this.t)

            set this.damagedUnit = null
            set this.t = null
        endmethod
        //! runtextmacro AIDS()
    endstruct

    // Lastly, let&#039;s make a pretty function wrapper
    function GetLastDamagedUnit takes unit whichUnit returns unit
        return DamageData[whichUnit].damagedUnit
    endfunction
endlibrary
it was coded by Sevion
 

Rllulium

New Member
Reaction score
10
It is fully possible to make these types of abilities without using Autocast buff placers. If you are using Damage, it is fully possible to simply trigger the effect on the next attack following having activated the ability.
Besides, the druid has no such ability at the moment, one wouldn't hurt.
 

tommerbob

Minecraft. :D
Reaction score
110
It is fully possible to make these types of abilities without using Autocast buff placers. If you are using Damage, it is fully possible to simply trigger the effect on the next attack following having activated the ability.
Besides, the druid has no such ability at the moment, one wouldn't hurt.

Agreed.
 

tooltiperror

Super Moderator
Reaction score
231
Any codemonkey can write spells like in WoW.

People are only going to be interested in the terrain.
 

WolfieeifloW

WEHZ Helper
Reaction score
372
I'm going to be doing a lot of work on terrain.


Update
Since I've had to redo the map, I'm looking for a coder.
Someone who can make and/or code spells.
The only requirement is using Damage.
 

WolfieeifloW

WEHZ Helper
Reaction score
372
I'm putting this project on hold.
It's quite large, and this rewriting thing has put me in a slump on doing the necessary work.

I will, at a later date, restart work on this map, but for now I'm setting it aside.
I'm starting work on my own RPG, so be sure to watch out for that.

With that said, sorry for those who were looking forward to this project.
Someday, in the distant future, this project will get done.
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Ghan Ghan:
    Still lurking
    +3
  • The Helper The Helper:
    I am great and it is fantastic to see you my friend!
    +1
  • The Helper The Helper:
    If you are new to the site please check out the Recipe and Food Forum https://www.thehelper.net/forums/recipes-and-food.220/
  • Monovertex Monovertex:
    How come you're so into recipes lately? Never saw this much interest in this topic in the old days of TH.net
  • Monovertex Monovertex:
    Hmm, how do I change my signature?
  • tom_mai78101 tom_mai78101:
    Signatures can be edit in your account profile. As for the old stuffs, I'm thinking it's because Blizzard is now under Microsoft, and because of Microsoft Xbox going the way it is, it's dreadful.
  • The Helper The Helper:
    I am not big on the recipes I am just promoting them - I use the site as a practice place promoting stuff
    +2
  • Monovertex Monovertex:
    @tom_mai78101 I must be blind. If I go on my profile I don't see any area to edit the signature; If I go to account details (settings) I don't see any signature area either.
  • The Helper The Helper:
    You can get there if you click the bell icon (alerts) and choose preferences from the bottom, signature will be in the menu on the left there https://www.thehelper.net/account/preferences
  • The Helper The Helper:
    I think I need to split the Sci/Tech news forum into 2 one for Science and one for Tech but I am hating all the moving of posts I would have to do
  • The Helper The Helper:
    What is up Old Mountain Shadow?
  • The Helper The Helper:
    Happy Thursday!
    +1
  • Varine Varine:
    Crazy how much 3d printing has come in the last few years. Sad that it's not as easily modifiable though
  • Varine Varine:
    I bought an Ender 3 during the pandemic and tinkered with it all the time. Just bought a Sovol, not as easy. I'm trying to make it use a different nozzle because I have a fuck ton of Volcanos, and they use what is basically a modified volcano that is just a smidge longer, and almost every part on this thing needs to be redone to make it work
  • Varine Varine:
    Luckily I have a 3d printer for that, I guess. But it's ridiculous. The regular volcanos are 21mm, these Sovol versions are about 23.5mm
  • Varine Varine:
    So, 2.5mm longer. But the thing that measures the bed is about 1.5mm above the nozzle, so if I swap it with a volcano then I'm 1mm behind it. So cool, new bracket to swap that, but THEN the fan shroud to direct air at the part is ALSO going to be .5mm to low, and so I need to redo that, but by doing that it is a little bit off where it should be blowing and it's throwing it at the heating block instead of the part, and fuck man
  • Varine Varine:
    I didn't realize they designed this entire thing to NOT be modded. I would have just got a fucking Bambu if I knew that, the whole point was I could fuck with this. And no one else makes shit for Sovol so I have to go through them, and they have... interesting pricing models. So I have a new extruder altogether that I'm taking apart and going to just design a whole new one to use my nozzles. Dumb design.
  • Varine Varine:
    Can't just buy a new heatblock, you need to get a whole hotend - so block, heater cartridge, thermistor, heatbreak, and nozzle. And they put this fucking paste in there so I can't take the thermistor or cartridge out with any ease, that's 30 dollars. Or you can get the whole extrudor with the direct driver AND that heatblock for like 50, but you still can't get any of it to come apart
  • Varine Varine:
    Partsbuilt has individual parts I found but they're expensive. I think I can get bits swapped around and make this work with generic shit though
  • Ghan Ghan:
    Heard Houston got hit pretty bad by storms last night. Hope all is well with TH.
  • The Helper The Helper:
    Power back on finally - all is good here no damage
    +2
  • V-SNES V-SNES:
    Happy Friday!
    +1
  • The Helper The Helper:
    New recipe is another summer dessert Berry and Peach Cheesecake - https://www.thehelper.net/threads/recipe-berry-and-peach-cheesecake.194169/

      The Helper Discord

      Members online

      No members online now.

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top