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

Preloading

Status
Not open for further replies.
Level 9
Joined
Nov 28, 2008
Messages
704
Alright, I'm having a problem with a solution I don't want to waste time on.

AddSpecialEffect() does not work unless (for me) a unit is create with its model before it. This is extremly clunky, and I have tried using Preload(file) instead, which also does not work.

Is there a way I can do this without making a unit for every single freaking special effect I plan on using?

How about a tutorial on how to use Preload()?
 
Level 9
Joined
Nov 28, 2008
Messages
704
JASS:
    //Begin special effect models.
    call Preload("WhiteLight.mdl")
    call Preload("BlueLight.mdx")
    call PolledWait(2)
    call DisplayTextToPlayer(GetLocalPlayer(), 00, 0, "|cff00ff00Special effects preloaded.|r")
 
Level 9
Joined
Nov 28, 2008
Messages
704
Edit: Thank you, unneccesary. After spending half an hour searching, I found I required

JASS:
PreloadStart()

Odd no one mentions these things.

CAn someone write a tutorial?
 
Last edited:
Status
Not open for further replies.
Top