Spts Origin Script New May 2026

Most "Origin" scripts are integrated into broader auto-farms. The logic flow for such a script is generally:

The developers behind the SPTS framework have already hinted at version 5.0, codenamed "Phoenix." However, the SPTS Origin Script New (v4.x) will likely remain the standard for the next 18 months due to its stability.

Future iterations may include:

Migration is not always automatic. While the new script is backward compatible, you should refactor your old routines to leverage the performance gains.

Example: Old synchronous data fetch

-- Legacy Origin style
local data = SPTS.fetch("sensor_01")
SPTS.process(data)
SPTS.fetch("sensor_02")
SPTS.process(data)

This took approximately 200ms per fetch in sequence.

Example: New asynchronous parallel fetch spts origin script new

-- New Origin script style
local results = await all(
    SPTS.fetch_async("sensor_01"),
    SPTS.fetch_async("sensor_02")
)
for each in results do SPTS.process(each) end

Execution time drops to ~110ms total because the fetches overlap.

From a development perspective, scripts interacting with the Origin system typically target the player's data structure stored on the server. Most "Origin" scripts are integrated into broader auto-farms