Rigs of Rods Server

Rigs of Rods Server 2.44-2

CuriousMike

Well-known member
Old-timer
Retired Staff
Joined
Dec 22, 2018
Messages
1,498
Location
Kentucky
CuriousMike submitted a new repository file:

Rigs of Rods Multiplayer Server for 0.4.8.0 [Linux] - Rigs of Rods server client for 0.4.8.0(RoRNet 2.40)

This is a Linux pre-built package for 0.4.8.0 (RoRNet 2.40) servers.

Note: RoRNet 2.40 is still a work in progress, the server may crash often. We're working on fixing these issues.

These files are meant to be used for the updated MP server setup Documentation page, which will be uploaded soon.

Compiled with Angelscript & Webserver support.

Windows builds may be found here.

Read more about this file...
 
Is there a known Issue with the boost commands? I tried to change them and now none of the boost commands is working

C++:
customCommand boostCommand(@chatSystem, "boost", customCommand_boost);
void customCommand_boost(chatMessage@ cmsg)
{
    cmsg.privateGameCommand.boostCurrentTruck(10);
}
// Extra boost commands
customCommand boost2Command(@chatSystem, "boost2", customCommand_boost2);
void customCommand_boost2(chatMessage@ cmsg)
{
    cmsg.privateGameCommand.boostCurrentTruck(30);
}
customCommand boost3Command(@chatSystem, "boost3", customCommand_boost3);
void customCommand_boost3(chatMessage@ cmsg)
{
    cmsg.privateGameCommand.boostCurrentTruck(60);
}
customCommand boost4Command(@chatSystem, "boost4", customCommand_boost4);
void customCommand_boost4(chatMessage@ cmsg)
{
    cmsg.privateGameCommand.boostCurrentTruck(120);
}
 
Back
Top