It looks like all the default avatars are hard coded into the forum via the select_avatar.asp file.
Would it not make sence to display whats in the avatar folder. so if you want to custom you avatars without changing the code its as easy as just putting new ones in or deleting unwanted ones.
<% dim fs,fo,x set fs=Server.CreateObject("Scripting.FileSystemObject") set fo=fs.GetFolder(Server.MapPath("./")& "/avatars/")
for each x in fo.files if not x.Name = "Thumbs.db" then %> <option value="avatars/<%=x.Name%>"> <%=x.Name%> </option> <% end if next set fo=nothing set fs=nothing %> |