- Joined
- Dec 13, 2018
- Messages
- 2,368
After some playing around with the change minimap functions I thought that playing a video in the minimap is a useless, yet awesome thing to do 
So I was thinking how to do it as easily as possible. This is what I am trying to do, but it doesn't work and I have no idea why...
I CAN just do;
So I was thinking how to do it as easily as possible. This is what I am trying to do, but it doesn't work and I have no idea why...
-
Set Paths
-
Events
-
Player - Player 1 (Red) types a chat message containing 1 as An exact match
-
-
Conditions
-
Actions
-
Set ImagePath[1] = "war3mapImported\\1.blp"
-
Set ImagePath[2] = "war3mapImported\\2.blp"
-
Set ImgCounter = 0
-
Trigger - Turn on Change Image <gen>
-
-
-
Change Image
-
Events
-
Time - Every 0.05 seconds of game time
-
-
Conditions
-
Actions
-
Set ImgCounter = (ImgCounter + 1)
-
Custom script: call BlzChangeMinimapTerrainTex(udg_ImagePath[udg_ImgCounter])
-
-
I CAN just do;
-
Custom script: call BlzChangeMinimapTerrainTex("war3mapImported\\1.blp")
-
Wait 0.00 seconds
-
Custom script: call BlzChangeMinimapTerrainTex("war3mapImported\\2.blp")
-
Wait 0.00 seconds
-
Custom script: call BlzChangeMinimapTerrainTex("war3mapImported\\3.blp")
Attachments
Last edited: