Shadow meld at day

fjerre

New Member
Reaction score
0
I'm trying to make a map and i noticed, you need some kind of cover during the day, is it possible to make so that Shadow Meld is usable at day?
 

TomTTT

New Member
Reaction score
44
Tried changing in the ability the Day/Night Duration field, and the unit just simply look like it's hiding altho it's not. Maybe you can just use the Far Seer's summoned wolf's invisibility?
 

LegitShip

New Member
Reaction score
0
Ive seen several abilities that have permenant invisibility, but cant think of the names at the moment.
You could always just use wind walk or relating skill that costs no mana, with a however second charge time... but then the player would move around freely...
 

Ayanami

칼리
Reaction score
288
Most likely, you would need to use a few triggers. Basically, give the Permanent Invisibility ability to the caster when shadow meld is used. To prevent the unit from having invisibility while moving, you would need a trigger to detect if the unit has moved.

The easiest way I can think of is to simply use the distance between points check. Here's a simple trigger to help you get the idea of it.

Trigger:
  • Shadow Meld Cast
    • Events
      • Unit - A unit Starts the effect of an ability
    • Conditions
      • (Ability being cast) Equal to Shadow Meld
    • Actions
      • Custom script: call RemoveLocation(udg_TempPoint[0])
      • Set TempPoint[0] = (Poisition of (Triggering unit))
      • Set TempUnit = (Triggering unit)
      • Unit - Add Permanent Invisibility to (Triggering unit)
      • Trigger - Turn on Shadow Meld Periodic <gen>


Trigger:
  • Shadow Meld Periodic (Initially off)
    • Events
      • Time - Every 0.10 seconds of game time
    • Conditions
    • Actions
      • Set TempPoint[1] = (Position of TempUnit)
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Distance between TempPoint[0] and TempPoint[1]) Greater than 0.00
        • Then - Actions
          • Unit - Remove Permanent Invisibility from TempUnit
          • Custom script: call RemoveLocation(udg_TempPoint[0])
        • Else - Actions
      • Custom script: call RemoveLocation(udg_TempPoint[1])


Though this isn't MUI, you can easily make it MUI just by tweaking the triggers a little bit.
 

Sonic

New Member
Reaction score
10
WHy don't you just use this
[WC3Events - Unit issues a target point[/WC3]
Handwritted Sorry
 

TomTTT

New Member
Reaction score
44
Most likely, you would need to use a few triggers. Basically, give the Permanent Invisibility ability to the caster when shadow meld is used. To prevent the unit from having invisibility while moving, you would need a trigger to detect if the unit has moved.

The easiest way I can think of is to simply use the distance between points check. Here's a simple trigger to help you get the idea of it.

Trigger:
  • Shadow Meld Cast
    • Events
      • Unit - A unit Starts the effect of an ability
    • Conditions
      • (Ability being cast) Equal to Shadow Meld
    • Actions
      • Custom script: call RemoveLocation(udg_TempPoint[0])
      • Set TempPoint[0] = (Poisition of (Triggering unit))
      • Set TempUnit = (Triggering unit)
      • Unit - Add Permanent Invisibility to (Triggering unit)
      • Trigger - Turn on Shadow Meld Periodic <gen>


Trigger:
  • Shadow Meld Periodic (Initially off)
    • Events
      • Time - Every 0.10 seconds of game time
    • Conditions
    • Actions
      • Set TempPoint[1] = (Position of TempUnit)
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Distance between TempPoint[0] and TempPoint[1]) Greater than 0.00
        • Then - Actions
          • Unit - Remove Permanent Invisibility from TempUnit
          • Custom script: call RemoveLocation(udg_TempPoint[0])
        • Else - Actions
      • Custom script: call RemoveLocation(udg_TempPoint[1])


Though this isn't MUI, you can easily make it MUI just by tweaking the triggers a little bit.

What i'm gonna say is not something saying it is wrong, just a spelling problem... Why calling a veriable "Temp" when it isn't :p
Tho this really is a very nice way, and very effective unless this is more than 1 player map.
 

skyblader

You're living only because it's illegal killing.
Reaction score
159
Calling a variable Temp, because it is only temporary? A variable is only temporary if you use it, and clear it after you use. A variable is not temporary, if you set it to something, don't clear, and keep using that point over nad over again throughout the game. I still think it's temporary.

Unless.. You're saying it should be spelled Temporary instead of Temp..
It's a shortcut.
 

TomTTT

New Member
Reaction score
44
Calling a variable Temp, because it is only temporary? A variable is only temporary if you use it, and clear it after you use. A variable is not temporary, if you set it to something, don't clear, and keep using that point over nad over again throughout the game. I still think it's temporary.

Unless.. You're saying it should be spelled Temporary instead of Temp..
It's a shortcut.
Lol obviously i know it's a shortcut.... What i mean is the unit is not Temp, or if you want Temporary. The unit isn't temporary since you set it once to one specific unit and use periodic trigger with it. If you keep using it over and over, I don't think it should be called "Temporary".
 

skyblader

You're living only because it's illegal killing.
Reaction score
159
You've got a point.. Thought you were talking bout the point.
 

DioD

New Member
Reaction score
57
make spell based of channel with unlimited (very long - 3600) preparation time.

on cast event - add permanent invis.
on cast end event - remove permanent invis.

no need of variables.
 

Weep

Godspeed to the sound of the pounding
Reaction score
400
make spell based of channel with unlimited (very long - 3600) preparation time.

on cast event - add permanent invis.
on cast end event - remove permanent invis.
Shadow Meld automatically makes the unit invisible again when it stops moving. How do you propose to detect when to make the unit try channeling again (when it stops moving)?
 

Ayanami

칼리
Reaction score
288
Shadow Meld automatically makes the unit invisible again when it stops moving. How do you propose to detect when to make the unit try channeling again (when it stops moving)?

Actually, I forgot that Shadow Meld makes your auto-invisible when not walking. In that case, a permanent periodic trigger would be necessary to detect if the unit is moving. The movement checking part would be similar to the trigger I gave earlier. Just that now, you need to check if the unit did not move. If so, just give the Permanent Invisibility. If not, remove it.
 

Nenad

~Choco Coronet~ Omnomnom
Reaction score
137
Well, depending on the duration of the map (if it's more than 3600 seconds of invisibility) this wouldn't work, however:

Base the spell of windwalk.
Stop the user when he activates the spell.
Detect if the user is given any order.
Remove the wind walk buff if yes.

Why not just do that? Instead of adding permanent invisibility and troubling yourself with periodic triggers.
 

Cheddar

This is the way it was meant to be.
Reaction score
126
Couldn't you just check if his given order is Stop or Hold Position and then add the invisibility accordingly? I'm pretty sure a unit defaults to "Stop" after it finishes attacking or moving.
 

Weep

Godspeed to the sound of the pounding
Reaction score
400
force player to cast spell if he want to hide, its very simple.
Well, then it isn't really like Shadow Meld, is it?

If it's an acceptable difference, though, it would work well.
 
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