Stratsims Home

CIC Home

Mini Proj. #1
  Future Plans
  Rel. Notes
  Scens & Such
  Tech Notes
  Tips & Tricks

Mini Project #1 - CIC Warfare Plotter Scenarios & Such

This page holds user submitted scenarios files, spatial database files, and other collateral for the plotter.

  • Break-In Scenario provided by Kelly Crawford
  • LCS - Sub Engagement Scenario & SDB by Pete Maidhof
    • Unzip the temp.sdb to your plotter directory and the .cicwp file into your scenarios subdirectory of the plotter.
    • Thanks to David Schueler, Larry Bond, and Clash of Arms for permission to use materials from the Harpoon Naval Review 2003

Want to learn more? Try our Official Email List at Strategy Sims CIC.

NEWS
<% 'Dimension variables Dim fsoObject 'File System Object Dim tsObject 'Text Stream Object Dim filObject 'File Object Dim lngVisitorNumber 'Holds the visitor number Dim intWriteDigitLoopCount 'Loop counter to display the graphical hit count 'Create a File System Object variable Set fsoObject = Server.CreateObject("Scripting.FileSystemObject") 'Initialise a File Object with the path and name of text file to open Set filObject = fsoObject.GetFile("C:\sites\stratsims.com\ftp\sitestats\hit_count.txt") 'Open the visitor counter text file Set tsObject = filObject.OpenAsTextStream 'Read in the visitor number from the visitor counter file lngVisitorNumber = CLng(tsObject.ReadAll) 'If the session variable is null or does not exsist then increment the counter number If isEmpty(Session("blnCounterSet")) = True Then 'Increment the visitor counter number by 1 lngVisitorNumber = lngVisitorNumber + 1 'Set the session variable to true Session("blnCounterSet") = True End if 'Create a new visitor counter text file over writing the previous one Set tsObject = fsoObject.CreateTextFile("C:\sites\stratsims.com\ftp\sitestats\hit_count.txt") 'Write the new visitor number to the text file tsObject.Write CStr(lngVisitorNumber) 'Reset server objects Set fsoObject = Nothing Set tsObject = Nothing Set filObject = Nothing 'HTML output to display the visitor number Response.Write("Visitor Number
") 'Display the hit count as text 'Response.Write(lngVisitorNumber) 'Loop to display graphical digits For intWriteDigitLoopCount = 1 to Len(lngVisitorNumber) 'Display the graphical hit count Response.Write("") Next %>