• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.
  • 💡 We're thrilled to announce that our upcoming texturing contest is in the works, and we're eager to hear your suggestions! Please take this opportunity to share your ideas in this theme discussion thread for the Texturing Contest #34!
  • 🏆 Hive's 7th HD Modeling Contest: Icecrown Creature is now open! The frozen wastes of Icecrown are home to some of Azeroth’s most terrifying and resilient creatures. For this contest, your challenge is to design and model a HD 3D monster that embodies the cold, undead, and sinister essence of Icecrown! 📅 Submissions close on April 13, 2025. Don't miss this opportunity to let your creativity shine! Enter now and show us your frozen masterpiece! 🔗 Click here to enter!

special effect on attack

Status
Not open for further replies.
Level 12
Joined
Mar 16, 2006
Messages
992
I want my map to run as smoothly as a JASS map, but I don't want it to be written with JASS.
 
  • Angry
Reactions: Rui
Level 10
Joined
Sep 29, 2006
Messages
447
vegavak, why bother replying, it has nothing to do with the post. I just said id LIKE it to be done without triggers, not "i want my map to run as smoothly as a JASS map, but i don't want it to be written with JASS."

@ just_spectating: thats what i have right now, but im looking to give the unit the bash ability, but i cant do that since its ranged. any way to help?
 
Level 8
Joined
Mar 12, 2008
Messages
437
Two triggers:
  • trigger1
    • Events
      • Unit - A unit enters (Playable map area)
    • Conditions
    • Actions
      • Trigger - Add to trigger2 the event "Unit - (Triggering unit) takes damage"
  • trigger2
    • Events
    • Conditions
      • (Damage source) is a Melee attacker equal to (True)
    • Actions
      • Set Temp_Point = (Position of (Damage source))
      • Special effect - Display a special effect at Temp_Point using RaspberryCheesecake.mdl
      • Special effect - Destroy (Last created special effect)
      • Custom script: call RemoveLocation( udg_Temp_Point )
It leaks, though, and I'm not either sure if it will work...
BTW, I don't have the editor up now, so change "RaspberryCheesecake.mdl" to the actual Thunder Clap model.
I'm not either sure if this is what you wanted.
 
Last edited:
Level 12
Joined
Mar 16, 2006
Messages
992
I was explaining that you had to use triggers to achieve the effect you wanted. A 'Just because you wish it to be true, does not make it true.' sort of thing.

Thanks for the negative rep, Rui.
 
Status
Not open for further replies.
Top