Discord Stats
Today's Date 2025-09-15
Total Members 662
Online Members 56
Total Channels 46
Msg Past Hour 0
Today Most Msg ben_dansie (11)

Latest Posts
2025-08-01 11:13:33
Use of Weapons Release
2025-07-16 07:34:48
Cold Cold Heart Release
2025-06-26 20:05:32
Vanilly Sky Release
2025-05-04 11:37:44
Happy May 4th
2025-03-23 15:02:43
The Force Engine Editor Release
Recent Additions
August 1st 2025:
Use of Weapons
by Geoffrey Simpson

June 26th 2025:
Cold, Cold Heart
by Geoffrey Simpson

July 16th 2025:
Vanilla Sky
by Geoffrey Simpson

September 24th 2024:
Heart of the Matter
by Geoffrey Simpson

August 26, 2024:
Liminality
by Revan_xviv

The Force Engine - INF Update

Posted by karjala on 2021-03-02 16:30:41 EST

Lucius is back with another update to his illustrious The Force Engine

In the latest update he discusses the work he's been doing on the game's INF scripting system. Through INF scripts the doors open when Kyle presses a switch, elevators go up when he steps on them, and ceilings collapse on his head when he walks somewhere he shouldn't!

 

This is a particular interesting update for me as the author learned programming through scripts like these in the 90s. 

Here is an example of a move floor Elevator script that halts at various stops. The commands are read top to bottom in a loop.

item: sector            name: complete
  seq
    class: elevator move_floor
    stop: 55 hold
    stop: 56 hold
      page: 1 m01kyl01.voc
      message: 1 rickenbacker master_on
    stop: 56 4
    stop: 56.5 2
      message: 3 parking_space wakeup
    stop: 57 0
      message: 4 text_boy m_trigger
    stop: 57 complete
    speed: 0
  seqend

For example at stop 56 it will play the m01kyl01.voc sound and call rickenbacker trigger which could open a door or... spawn a Dark Trooper!

Did you know there are 11 core elevator types such as move ceiling or scroll wall ? The latter is used to simulate a waterfall on the Robotics Facility Mission on Anteevy

But don't let us bore you with the details, read about it from the source!

The Force Engine - INF System