• 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.

Lightning with Z offset?

Status
Not open for further replies.
Level 14
Joined
Jun 3, 2005
Messages
209
In particular, the function is:

JASS:
native MoveLightningEx takes lightning whichBolt, boolean checkVisibility, real x1, real y1, real z1, real x2, real y2, real z2 returns boolean

So you would use:

  • Custom script: call MoveLightningEx(udg_TempLightning, true, x1, y1, z1, x2, y2, z2)
The 'true' there means the lightning will not be visible if you don't have sight of it. Change it to 'false' if you want it always visible.

You can find the z value at a location using

  • Custom script: set udg_TempZ = GetLocationZ(udg_TempLoc)
 
Status
Not open for further replies.
Top