• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

Build Your Own Maze 2.04

Contents

Build Your Own Maze 2.04 (Map)

Level 8
Joined
Nov 20, 2005
Messages
372
eh

I know what you are doing wrong

1st of all

DON'T USE PICK EVERY UNIT OF TYPE *UNITTYPE* AND DO
IF THEN ELSE DO ( MULTIPLICATE ACTIONS )

this laggs.

2nd.... Save units as a variable

Unit Unit [ array 10 ]

Map init
/
Set unit[1] = *unit of player 1*
Set unit[2] = *unit of player 2*
etc

then do

For each integer from 1 to 10 do
If then do else do ( Multiplicate actions )

this decrases lagg very much :wink:
 
Top