Hi,
Can I download sounds in parts?
I have got more than 20 sounds on my server and download time is to long for players.
I would to download 5 songs every connect to server.
Something like...
PHP Code:
public plugin_precache(id){
if(!part_1_songs){
precache_sound("misc/1.mp3")
precache_sound("misc/2.mp3")
precache_sound("misc/3.mp3")
precache_sound("misc/4.mp3")
precache_sound("misc/5.mp3")
} else if(!part_2_songs){
precache_sound("misc/6.mp3")
precache_sound("misc/7.mp3")
precache_sound("misc/8.mp3")
precache_sound("misc/9.mp3")
precache_sound("misc/10.mp3")
} else if(!part_x){
}
}
Maby nvalut or another way to check downloaded?
Please help