Installation

Top  Previous  Next

Manual installations

1.Unzip the downloaded archive into the game folder.

2.Open game_folder\lua\system\main.lua and after:
 
socket    = require("socket.socket")
 
add (with a new line):
 
wayPoints = require("waypoints")
 
enableWayPoints = 1

3.Before:
if raceMode ~= 0 and raceRunning == 1 then
 
add (with a new line):
 
if ( enableWayPoints ~= 0 ) then
wayPoints.update()
end

1

 

2