Staredit Network

Staredit Network -> UMS Assistance -> Bound Trigger
Report, edit, etc...Posted by Peet Fargison on 2004-09-16 at 19:47:31
Ok heres the trigger please tell me why it is blowing up like this:

CODE
O  O
OOO
 O
O  O
OOO
 O...... insted of this

O  O
 O
O  O
 O ..... here is trigger:


THe O that is on the very left of page by its self is in middle forum just not spacing it how i spaced it.....


CreateUnitWithProperties(1, Archon, 1-1, P1, 2);
KillUnitAt(All, AnyUnit, 1-1, All Players);
CreateUnitWithProperties(1, Archon, 1-1-2, P1, 3);
KillUnitAt(All, AnyUnit, 1-1-2, All Players);
CreateUnitWithProperties(1, Archon, 1-1-3, P1, 4);
KillUnitAt(All, AnyUnit, 1-1-3, All Players);
CreateUnitWithProperties(1, Archon, 1-1-4, P1, 5);
KillUnitAt(All, AnyUnit, 1-1-4, All Players);
CreateUnitWithProperties(1, Archon, 1-3, P1, 6);
KillUnitAt(All, AnyUnit, 1-3, All Players);
CreateUnitWithProperties(1, Archon, 1-3-2, P1, 7);
KillUnitAt(All, AnyUnit, 1-3-2, All Players);
CreateUnitWithProperties(1, Archon, 1-3-3, P1, 8);
KillUnitAt(All, AnyUnit, 1-3-3, All Players);
CreateUnitWithProperties(1, Archon, 1-3-4, P1, 9);
KillUnitAt(All, AnyUnit, 1-3-4, All Players);
Wait(1000);
CreateUnitWithProperties(1, Archon, 1-2, P1, 10);
KillUnitAt(All, AnyUnit, 1-2, All Players);
CreateUnitWithProperties(1, Archon, 1-2-2, P1, 11);
KillUnitAt(All, AnyUnit, 1-2-2, All Players);
CreateUnitWithProperties(1, Archon, 1-2-3, P1, 12);
KillUnitAt(All, AnyUnit, 1-2-3, All Players);
CreateUnitWithProperties(1, Archon, 1-2-4, P1, 13);
KillUnitAt(All, AnyUnit, 1-2-4, All Players);
Wait(1000);
PreserveTrigger();

thats trigger... now what did i do wrong?

ADDITION: its not spacing right in the forum on the blowing up things so the O that r by themselfs and on the very left of page r in the middle

ADDITION by Bolt_Head: Changed the diagram so it would be in a code box and the spaceing would be closer to correct
Report, edit, etc...Posted by KiLLeR2001 on 2004-09-16 at 19:53:07
You have it set up as 2 explosions according to your waits.

It needs to be:

O O
WAIT
O O O
WAIT
O
WAIT
Preserve Trigger

Also hyper triggers help
Report, edit, etc...Posted by Peet Fargison on 2004-09-16 at 19:55:03
the
OOO
isnt supposed to happen! Only the
O O and
O is supposed to happen
Report, edit, etc...Posted by DT_Battlekruser on 2004-09-16 at 20:02:19
Set your triggers ot be owned by only one player. Multiple units are being created.
Report, edit, etc...Posted by Peet Fargison on 2004-09-16 at 20:20:42
YAY it works thanks!!
Report, edit, etc...Posted by KiLLeR2001 on 2004-09-16 at 21:20:20
QUOTE(Peet Fargison @ Sep 16 2004, 07:55 PM)
the
OOO
isnt supposed to happen! Only the
O O and
O is supposed to happen

Heh, I thought you meant you wanted the first pattern of explosions to happen, but the trigger was producing the second pattern. My fault.
Report, edit, etc...Posted by (U)Bolt_Head on 2004-09-16 at 21:50:53
Yeah that was confusing, good call BattleCruser
Report, edit, etc...Posted by DT_Battlekruser on 2004-09-16 at 23:08:35
I saw one trigger made many more units than other, looked at trigger, and guessed that.
Next Page (1)