1.

Solve : naking A DEFCON javascript?

Answer»

hi im having problems making a defcon indicator and i was wondering if any one can help make it

what i need it to do is display a defcon level (DEFCON 1 - DEFCON 5) and then next to it an alliance name

i need it to have a log-on feature so you can change the defcon status and allianceBumpbumpI will lock this topic if you don't STOP bumping. Wait at least two days before bumping.sorry just nobody is replyingIt's not like the topic is being shoved to the second page of the forum with new posts.

Anyway, let me see.
Describe your problem a bit more. Have you got any code?i dont know much about java script but this is what ive got (i used a jaca script live clock and edited it (alot of it was LICK the scripting language lua so it didnt take me long and this is what ive got))
///////////////////////////////////////////////////////////
// "Live Clock Advanced" script - Version 1.0
// By Mark Plachetta ([email protected])
//
// Get the latest version at:
// http://www.zip.com.au/~astroboy/liveclock/
//
// Based on the original script: "Upper Corner Live Clock"
// available at:
// - Dynamic Drive (http://www.dynamicdrive.com)
// - Website Abstraction (http://www.wsabstract.com)
// ========================================================
// CHANGES TO ORIGINAL SCRIPT:
// - Gave more flexibility in positioning of clock
// - Added DATE construct (Advanced version only)
// - User configurable
// ========================================================
// Both "Advanced" and "Lite" versions are available free
// of charge, see the website for more information on the
// two scripts.
///////////////////////////////////////////////////////////

///////////////////////////////////////////////////////////
/////////////// CONFIGURATION /////////////////////////////


// set the day value to the number corrisponding to the defcon level so 0 = defcon 5 and 4 = defcon 1
   var day = 0;
// set the allianceactive value to 0 if you do not want to display the alliance name and 1 to display the alliance name
   var allianceactive = 0;

   var DaysOfWeek = new Array(5);
      DaysOfWeek[0] = "DEFCON 5";
      DaysOfWeek[1] = "DEFCON 4";
      DaysOfWeek[2] = "DEFCON 3";
      DaysOfWeek[3] = "DEFCON 2";
      DaysOfWeek[4] = "DEFCON 1";
      DaysOfWeek[5] = "DECCON 0";


// green 5 00ff00
// green 4 82ff00
// yellow 3 ffff00
// orange 2 ff7d00
// red 1 ff0000
// blue 0 1b90ff

// change the Alliance[1] apropriently do not touch the

  • variable

   var Alliance = new Array (2)
      Alliance[0] = ""
      Alliance[1] = " - With [the unforgiven]";









//////////dont worry about this part onwards//////////
   // Set the clock's font face:
   var myfont_face = "Verdana";

   // Set the clock's font size (in point):
   var myfont_size = "10";

   // Set the clock's font color:
   var myfont_color = "#1b90ff";
   
   // Set the clock's background color:
   var myback_color = "transparent";

   // Set the text to display before the clock:
   var mypre_text = "";

   // Set the width of the clock (in pixels):
   var mywidth = 300;

   // Display the time in 24 or 12 hour time?
   // 0 = 24, 1 = 12
   var my12_hour = 1;

   // How often do you want the clock updated?
   // 0 = Never, 1 = Every Second, 2 = Every Minute
   // If you pick 0 or 2, the seconds will not be displayed
   var myupdate = 1;

   // Display the date?
   // 0 = No, 1 = Yes
   var DisplayDate = 1;

/////////////// END CONFIGURATION /////////////////////////
///////////////////////////////////////////////////////////

// Browser detect code
        var ie4=document.all
        var ns4=document.layers
        var ns6=document.getElementById&&!document.all

// Global varibale definitions:

   var dn = "";
   var mn = "th";
   var old = "";

// This array controls how often the clock is updated,
// based on your selection in the configuration.
   var ClockUpdate = new Array(3);
      ClockUpdate[0] = 0;
      ClockUpdate[1] = 1000;
      ClockUpdate[2] = 60000;

// For Version 4+ browsers, write the appropriate HTML to the
// page for the clock, otherwise, attempt to write a static
// date to the page.
   if (ie4||ns6) { document.write(''); }
   else if (document.layers) { document.write(''); }
   else { old = "true"; show_clock(); }



//////////////////if functions to change color of font acordingly//////////////////////
      if (day == 0) { myfont_color = "#00ff00"; }
      else if (day == 1) { myfont_color = "#82ff00"; }
      else if (day == 2) { myfont_color = "#ffff00"; }
      else if (day == 3) { myfont_color = "#ff7d00"; }
      else if (day == 4) { myfont_color = "#ff0000"; }

// The main part of the script:
   function show_clock() {
      if (old == "die") { return; }
   
   //show clock in NS 4
      if (ns4)
                document.ClockPosNS.visibility="show"


   // This is the actual HTML of the clock. If you're going to play around
   // with this, be careful to keep all your quotations in tact.
      myclock = '';
      myclock += '';;
      myclock += DaysOfWeek[day];
      myclock += Alliance[allianceactive];
      myclock += '';

      if (old == "true") {
         document.write(myclock);
         old = "die";
         return;
      }

   // Write the clock to the layer:
      if (ns4) {
         clockpos = document.ClockPosNS;
         liveclock = clockpos.document.LiveClockNS;
         liveclock.document.write(myclock);
         liveclock.document.close();
      } else if (ie4) {
         LiveClockIE.innerHTML = myclock;
      } else if (ns6){
         document.getElementById("LiveClockIE").innerHTML = myclock;
                }           

   if (myupdate != 0) { setTimeout("show_clock()",ClockUpdate[myupdate]); }
}
    setTimeout("show_clock()",1000)


very messy i know  but this is all i need now how can i change the daysofweek and alliance variable without opening the FTP server so basicly doing it form an external source
i know its very messy concidering i edited it wioth no knoledge of it what so ever lol
anyway can some one help please?would i be able to make a txt file and type like DEFCON 5 in it and the script take the text from that document ind save it as a variable?TBH, I'd say you'd be better off going to a webmaster-only forum to solve an issue such as this. It will have more helpers, some of which might have dealt with this "DEFCON" before.I didn't post because I haven't got a bloody clue what he's trying to do.

I thought I almost understood what he wanted, until he posted the live clock code.Same here actually, exactly the same.


Discussion

No Comment Found