QUOTE(FatalException @ Jun 18 2006, 02:23 PM)
Ok, so here is my trigger:
The timebomb isn't being created, even though the previous trigger sets Switch 01. I tried having the bomb created at a different location too, but that didn't work either. Could someone tell me why it won't work?
[right][snapback]508942[/snapback][/right]
If the actions don't happen then the conditions are not being met.
I know that sounds smartass of me to say but its true. Here is some general debugging help, this isn't specifically catered to your problem but is stuff to keep in mind for any error you have.
Debugging 101
1. Is your trigger REALLY not fireing? Try adding dummy actions to make SURE if it works or not. (uncheck all waits in the trigger when you do this)
2. If the dummy triggers happen don't make illogical assumptions. Such as assumeing that only some of the actions happen while others do. Random things do not happen in starcraft triggering.
3. If you find out the trigger doesn't run then it means that the conditions are NOT met, End of story. Most likely you think they are being met when they are not, double check. The other possablity is that the condition becomes true but isn't true when the trigger is checked. Check over you trigger order for things that stop the conditions from being true.
4. If you find out the trigger is running but some actions don't, here are some possable reasons.
A) You have a wait block
(disable waits to test) B) The action really is happening but something else causes it to appear as if it isn't
(like a unit being removed right after it is created) C) You are not using the trigger correctly, ither what you think should happen is incorrect or you have something that stops the trigger from running properly.
(like trying to remove a unit that isn't there)5. The last thing is mostly an advanced editor thing. You may have created it wrong. Basicly this is when you are using an advanced editor and what you try to do isn't possable or the editor just doesn't interpret it correctly. An example would be errors in Starforge Trigger syntax, (the trigger you ment to make would actually work but you didn't actually create the trigger because you created it wrong.
Bugs in starcraft are misunderstandings between you and the editor. To debug it you need to figure out what you did wrong.