Add Reveal Map Debug Trigger.fscript 606 B

123456789101112131415
  1. // FinalSun Script file
  2. // Name: Add Reveal Map Debug trigger
  3. // Written By: Matthias Wagner
  4. // Last Change: August 21, 2001
  5. // Be careful when editing scripts, they may cause damage to maps if used improperly
  6. AskContinue("This script will add a trigger that reveals the whole map after 2 seconds. Continue?");
  7. AllowAdd("TRUE");
  8. // now add the trigger, use the variable %TriggerID% as ID filler, and let a tag be created automatically
  9. AddTrigger("%TriggerID%", "GDI,<none>,Reveal Map Debug Trigger,0,1,1,1,0", "1,13,0,2", "1,16,0,0,0,0,0,0,A", "TRUE");
  10. Message("Trigger %TriggerID% added","Success");