The waypoint is not loaded in linux and the hlds will print
[SyPB] Not Find Waypoint, Cannot Add SyPB
[SyPB] You can input 'sypb sgdwp on' to make waypoint
This was due to the waypoint load function is called within #ifdef PLATFORM_WIN32
|
#ifdef PLATFORM_WIN32 |
|
if (sypb_download_waypoint.GetInt() == 2) |
|
g_waypoint->tryDownloadWaypoint(); |
|
|
|
if (!g_waypoint->Load() && sypb_download_waypoint.GetInt() == 1) |
|
g_waypoint->tryDownloadWaypoint(); |
|
#endif |
The waypoint is not loaded in linux and the hlds will print
This was due to the waypoint load function is called within
#ifdef PLATFORM_WIN32SyPB/Project SyPB/SyPB_BOT/source/interface.cpp
Lines 2399 to 2405 in b41ec44