%
if not Request.Cookies("lvlmods")("id") > 0 then
'they ain't welcomed, get them out of here
Response.Redirect("login.asp")
else
'they must have logged in fine let them have the world
%>
![[ admin ]](../skinz/images<%=customcolours%>/t_admin.gif) |
| mod name |
mod id |
screen shot names should be |
Status |
<%
set tigCON = Server.CreateObject("ADODB.Connection")
tigCON.Open(DSN)
query = "select id, name, " & _
"active " & _
"from mods_list where " & _
"id_login = " & Request.Cookies("lvlmods")("id") & _
"order by datestamp desc"
'Response.Write("Query = [" & query & "] ")
set tigRS = tigCON.Execute(query)
if (tigRS.EOF) then
%>
It appears that there are no mods listed under this login at the moment.
If you think there should be, because you definitely entered one, plz email
tigger@ebom.org
<%
end if
dim recCount, firstID
recCount = 0
dim id
do while not tigRS.EOF
id = tigRS("id")
if recCount = 0 then
firstID = id
recCount = 1
end if
%>
| <%=tigRS("name")%> |
<%=id%> |
<%=id%>lg.jpg (640x480 40kb) | <%=id%>sm.jpg (160x120 3kb) |
<% if tigRS("active") then %>
shown |
<% else %>
not shown |
<% end if %>
<%
tigRS.MoveNext
loop
tigRS.close
tigCON.close
%>
<%
end if
%>
If you want to have a screen shot displayed with your mod, you need to do the following (the larger image is optional);
- take a screen shot :]
- save the screen shot as a large and a small jpg format file.
- Large screen shot 640 pixels wide by 480 pixels high with a file size less than 40kb (41000 bytes). The file name should be the mod's ID followed by lg eg. the file for your most current mod is <%=firstID%>lg.jpg
- Small screen shot 160 pixels wide by 120 pixels high with a file size less than 3kb (3100 bytes). The file name should be the mod's ID followed by sm eg. <%=firstID%>sm.jpg
- zip up the screen shots in a .zip and send them to Mandog (lvl@ebom.org), make sure you include the subject *q3a mod screen shots*
- wait for screens shots to be uploaded (takes anywhere up to 24hours)
If the file size is LARGER than what is stated above the image will not be shown on the page (its hardcoded into the asp).
We will not alter images to fit the requirements. We will not take shots for you. We will ONLY upload the files!
|