Recent content by Zwiebelchen

  1. Z

    Bugged native: SetSoundPitch()

    In case someone cares: I've found a workaround to this, by using this function, which seems to work 100% of the time - only bad thing is that you need to remember the last pitch value in order to make it work: function SetSoundPitchEx takes sound s, real pitch, real lastpitch returns nothing...
  2. Z

    System TabReader - A Warcraft III Guitar Tab and Music interpreter

    Download: http://www.hiveworkshop.com/forums/attachments/submissions-414/113751d1336401644-tabreader-music-interpreter-tabreaderv11.w3m What is this? Basicly, it's a guitar tab interpreter system for Warcraft III, allowing to import very few highly compressed sounds and generate music with...
  3. Z

    Bugged native: SetSoundPitch()

    For some reason, the SetSoundPitch() native seems to be bugged. Let's look at some code here: local sound s1 = CreateSound("war3mapImported\\PiccoloA5.mp3", false, false, false, 10, 10, "") call StartSound(s1) call SetSoundPitch(s1, 1) call TriggerSleepAction(3) call...
  4. Z

    SetSoundPitch() native is bugged (Need help!)

    Well, the native allows for very precise digits. Even something like Pitch 1.059465 is possible (In fact, this number is the frequency factor that pushes the sound a half note higher. 1.059465^12 = 2, which is a full octave. I am currently writing a GuitarTab interpreter system for WC3, so this...
  5. Z

    SetSoundPitch() native is bugged (Need help!)

    For some reason, the SetSoundPitch() native seems to be bugged. Let's look at some code here: local sound s1 = CreateSound("war3mapImported\\PiccoloA5.mp3", false, false, false, 10, 10, "") call StartSound(s1) call SetSoundPitch(s1, 1) call TriggerSleepAction(3) call...
  6. Z

    Discussion Vertical Pathing System

    Systems like this already exist. Check out my multi floor / two floor system that is in the graveyard. It's very intuitive and 'works' but it simply fucks up the graphics of your map so nobody with brains will use it...
  7. Z

    Fastest way to make unit fly

    Solved. Simply adding Crow Form while having deactivated pathing by SetUnitPathing(u, false) was enough to fix the problem. Thanks everyone.
  8. Z

    Fastest way to make unit fly

    So raven form automaticly changes units pathing to flying? I dont need to actually activate the spell, don't I? Just adding is enough? I can't use morphing for technical reasons I already mentioned. Morphing heroes is always buggy. Nice! This was what I was looking for. I'm gonna try that.
  9. Z

    Fastest way to make unit fly

    I could try that ... but that would involve the hero casting a spell and such, wouldn't it? I just want a 'stunned' unit to be moved around with the whirlwind animation, ignoring all pathing. I used windwalk on my bag system and it was fine; however, windwalk comes with the drawback that the...
  10. Z

    Fastest way to make unit fly

    Not an option, as chaos is to buggy when used on heroes. I need something very simple and robust to turn off collision. Morphing is to complicated and buggy.
  11. Z

    Fastest way to make unit fly

    Okay ... I know this has been asked before, but all I could find was the opposite of what I want to achieve: I want to give a unit the "flying unit" pathing. I don't want to make the unit fly or set its fly height. I just want to remove all pathing for the unit so that it can be placed...
  12. Z

    Does this leak?

    Nope it doesn't leak. However, depending on the size of your map and the number of items, this trigger could become very slow, as you enum the entire map rect ... I think this is some sort of despawning trigger for items? I'd recommend doing it with an item array instead of an enumeration.
  13. Z

    Custom auras ability

    No need to use spellbooks or deactivation of abilities for players to hide the dummy auras. Simply use an aura ability based on the tornado aura and you got all you need without additional work. If you need the green buff tooltip color, use the color code |cff00ff00NAME|r. It overwrites the...
  14. Z

    Snippet Artificial Pathing Blockers

    No offense, but this script is bugged and does not work correctly. And you CAN fix it. You missed the point that internally, WC3 works with 32x32 pathing not 64x64 pathing. And SetTerrainPathing clearly works like that too. For example, blocking a Large blocker's pathing consists of 16 blocks...
  15. Z

    Replace destructables

    Think you are talking about Azliers system, huh? Gonna check that out and see if it helps.
Top