list the music to a client?
i don't think sojust make a function that reads off config/server/musiclist.csand than tell everyone the names of the ones that don't have -1 as their variable
meh... doesnt like %this=strReplace(%this,"stuff",""); enough to do that..
You could go through dataBlockGroup and look for objects whose name starts with musicData_.
function echoMusicList(){ echo("--Compiling Music List--"); for(%i = 0; %i < dataBlockGroup.getCount() ; %i++) { %datablock = dataBlockGroup.getObject(%i); if(getSubStr(%datablock.getName(),0,9) $="musicData") { %music = trim(%datablock.getName()); echo(%music); } } echo("--Compiled Music List--");}