Thread: Map Radar
View Single Post
LenHard
Senior Member
Join Date: Jan 2016
Old 07-19-2018 , 22:01   Re: Map Radar
Reply With Quote #4

Quote:
Originally Posted by Zyten View Post
which make me wondering is when i go other server he has same map as i do but he has the radar and i dont


also this snippet someone send me once dont know if its helps

/********************************************* ******/
FormatEx(buffer, sizeof(buffer), "../csgo/resource/overviews/%s.txt", map);
if(FileExists(buffer))
{
ReplaceString(buffer, sizeof(buffer), "../csgo/", "");
AddFileToDownloadsTable(buffer);
}
FormatEx(buffer, sizeof(buffer), "../csgo/resource/overviews/%s_radar.dds", map);
if(FileExists(buffer))
{
ReplaceString(buffer, sizeof(buffer), "../csgo/", "");
AddFileToDownloadsTable(buffer);
}
FormatEx(buffer, sizeof(buffer), "../csgo/resource/overviews/%s_radar_spectate.dds", map);
if(FileExists(buffer))
{
ReplaceString(buffer, sizeof(buffer), "../csgo/", "");
AddFileToDownloadsTable(buffer);
}
/********************************************* ******/
He's trying to allow the clients to download the map's overview files, well from my knowledge, the map already makes you download its components by default. However, I'm not too sure.
__________________
LenHard is offline