[*] Improvements on both Driving and Flight School

This commit is contained in:
Lukas Moungos
2019-11-01 19:49:28 +01:00
parent a211e23d37
commit 85bd8b82f7
9 changed files with 268 additions and 202 deletions

View File

@@ -139,27 +139,27 @@ namespace ReallifeGamemode.Server.Job
{
if (type == "Route 1")
{
CheckPointHandle.StartCheckPointRoute(player, Route1, 0, 6, "");
CheckPointHandle.StartCheckPointRoute(player, Route1, 0, 6, 12, "");
}
else if (type == "Route 2")
{
CheckPointHandle.StartCheckPointRoute(player, Route2, 0, 6, "");
CheckPointHandle.StartCheckPointRoute(player, Route2, 0, 6, 12, "");
}
else if (type == "Route 3")
{
CheckPointHandle.StartCheckPointRoute(player, Route3, 0, 6, "");
CheckPointHandle.StartCheckPointRoute(player, Route3, 0, 6, 12, "");
}
else if (type == "Route 4")
{
CheckPointHandle.StartCheckPointRoute(player, Route4, 0, 6, "");
CheckPointHandle.StartCheckPointRoute(player, Route4, 0, 6, 12, "");
}
else if (type == "Route 5")
{
CheckPointHandle.StartCheckPointRoute(player, Route5, 0, 6, "");
CheckPointHandle.StartCheckPointRoute(player, Route5, 0, 6, 12, "");
}
else if (type == "Route 6")
{
CheckPointHandle.StartCheckPointRoute(player, Route6, 0, 6, "");
CheckPointHandle.StartCheckPointRoute(player, Route6, 0, 6,12, "");
}
}
}