Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Snitz Forums 2000 MOD-Group
 MOD Add-On Forum (W/Code)
 MOD: Auction v1.2
 New Topic  Reply to Topic
 Printer Friendly
Previous Page
Author Previous Topic Topic Next Topic
Page: of 4

Classicmotorcycling
Development Team Leader

Australia
2084 Posts

Posted - 09 May 2010 :  07:42:19  Show Profile  Reply with Quote
Look guys (gals), it is over and done, had my little spit. I have got the categories working and just about to work on the admin side of it, so an Admin can go and edit/delete not only the items listed, but the categories.

I have it running here: Classic Motorcycling Australia (not the test site)

I have a test site here: Testing MySQL (you can set up an account to test if you like)

Both of these have the categories, no admin yet.

Cheers,

David Greening
Go to Top of Page

kyodai
New Member

Azerbaijan
74 Posts

Posted - 09 May 2010 :  17:59:55  Show Profile  Reply with Quote
David, i have finished the feedback system. Had to weed out loads of bugs today, but it's working fine, I have learned so much when making this i am already a little bit proud on it.

I know it is probably not fitting for your mod - you said you dont want a second ebay, but i think it would make other people happy as well to have feedback in their auctions. At least my users liked the idea and i think it helps making trades a little bit safer.

So my question is - if you don't want this for your mod - can i post it as an addon or "hack" of your mod in a seperate thread? I am still sorry for hijacking your mod and now i still want to give something back to this great community but do it better than in my previous attempt. I would like to ask for your permission for doing so.
Go to Top of Page

Carefree
Advanced Member

Philippines
4207 Posts

Posted - 17 June 2010 :  22:49:48  Show Profile  Reply with Quote
Cannot reach the server where the original zip file was stored (it will be offline until sometime in July), so I stuck a copy on MediaFire.

There is a necessary change to auction_item.asp to enable paypal link, etc. to function.


<%
'#################################################################################
'## Snitz Forums 2000 v3.4.07
'#################################################################################
'## Copyright (C) 2000-06 Michael Anderson, Pierre Gorissen,
'##				       Huw Reddick and Richard Kinser
'##
'## This program is free software; you can redistribute it and/or
'## modify it under the terms of the GNU General Public License
'## as published by the Free Software Foundation; either version 2
'## of the License, or (at your option) any later version.
'##
'## All copyright notices regarding Snitz Forums 2000
'## must remain intact in the scripts and in the outputted HTML
'## The "powered by" text/logo with a link back to
'## http://forum.snitz.com in the footer of the pages MUST
'## remain visible when the pages are viewed on the internet or intranet.
'##
'## This program is distributed in the hope that it will be useful,
'## but WITHOUT ANY WARRANTY; without even the implied warranty of
'## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
'## GNU General Public License for more details.
'##
'## You should have received a copy of the GNU General Public License
'## along with this program; if not, write to the Free Software
'## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
'##
'## Support can be obtained from our support forums at:
'## http://forum.snitz.com
'##
'## Correspondence and Marketing Questions can be sent to:
'## manderson@snitz.com
'##
'#################################################################################
'## MOD: Auction Mod v1.2 for Snitz Forums v3.4.07
'## Author: David Greening (Classicmotorcycling)
'##
'## File: auction_item.asp
'##
'## Get the latest version of this MOD at
'## http://www.snitzbitz.com/mods/
'#################################################################################
%>
<!--#INCLUDE FILE="config.asp"-->
<!--#INCLUDE FILE="inc_sha256.asp"-->
<!--#INCLUDE FILE="inc_header.asp" -->
<!--#INCLUDE FILE="inc_func_posting.asp"-->
<!--#INCLUDE FILE="auction_language.asp" -->
<%
Response.Write	"<table border=""0"" width=""100%"" cellpadding=""4"" cellspacing=""1"">" & vbNewLine & _
	"	<tr>" & vbNewLine & _
	"		<td colspan=""2"" valign=""top"" nowrap>" & vbNewLine & _
	"			<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """>" & getCurrentIcon(strIconFolderOpen,"","") & " <a href=""default.asp"">All Forums</a><br />" & vbNewLine & _
	"		  		" & getCurrentIcon(strIconBar,"","") & getCurrentIcon(strIconFolderOpenTopic,"","") & " <a href=""auction.asp"">" & strLang_Auction_00000 & "</a><br />" & vbNewLine & _
	"		  		" & getCurrentIcon(strIconBlank,"","") & getCurrentIcon(strIconBar,"","") & getCurrentIcon(strIconFolderOpenTopic,"","") & " " & strLang_Auction_00400 & "</font>" & vbNewLine & _
	"		</td>" & vbNewLine & _
	"	</tr>" & vbNewLine & _
	"</table>" & vbNewLine

if mlev = "0" then
	Response.Write	"<table border=""0"" width=""100%"" cellspacing=""0"" cellpadding=""0"" align=""center"">" & vbNewLine & _
		"	<tr>" & vbNewLine & _
		"		<td align=""center"">" & vbNewLine & _
		"			<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strHiLiteFontColor & """><b>" & strLang_Auction_00006 & "</b></font><br /><br />" & vbNewLine & _
		"		</td>" & vbNewLine & _
		"	</tr>" & vbNewLine & _
		"</table>" & vbNewLine
else
	Response.Write	"<table width=""100%"" cellpadding=""0"" cellspacing=""0"" border=""0"">" & vbNewLine & _
		"	<tr>" & vbNewLine & _
		"		<td align=""center"" colspan=""2"" bgcolor=""" & strHeadCellColor & """>" & vbNewLine & _
		"			<b><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strHeadFontColor & """>" & strForumTitle & " - " & strLang_Auction_00400 & "</font></b>" & vbNewLine & _
		"		</td>" & vbNewLine & _
		"	</tr>" & vbNewLine & _
		"	<tr>" & vbNewLine & _
		"		<td width=""100%"" valign=""top"" align=""center""><p> </p>" & vbNewLine
    'get form information
	intAuctionID = cInt(Request.Querystring("IntAuctionID"))
	strsql = "SELECT * FROM " & strMemberTablePrefix & "AUCTIONITEMS WHERE AUCTIONID="& intAuctionID
	set rsItem = my_conn.execute(strsql)
	if rsItem.EOF then
		Response.Write "<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """>" & strLang_Auction_00401 & " <b><font color=""#AA0000"">"& intAuctionID &"</font></b> " & strLang_Auction_00402 & "</font><br /><br />"
	else
		strName = rsItem("itemName")
		strDesc = rsItem("itemDesc")
		strImage = rsItem("imgURL")
		curMin = rsItem("openingBid")
		curCurrent = rsItem("currentBid")
		dtmStart = rsItem("startDate")
		dtmEnd = rsItem("endDate")
		intSeller = rsItem("seller")
		endAuction = DateToStr(strForumTimeAdjust)
		curNext = curCurrent + 1.00
		strtext = "SELECT M_EMAIL, M_NAME FROM " & strMemberTablePrefix & "MEMBERS WHERE MEMBER_ID=" & intSeller
		set rsEmail = My_Conn.Execute(strtext)
		strEmail = cstr(rsEmail("M_EMAIL"))
		strSellerName = cstr(rsEmail("M_NAME"))
		rsEmail.Close
		set rsEmail = Nothing
		strSql = "SELECT * FROM " & strTablePrefix & "AUCTIONBIDS WHERE AuctionID=" & intAuctionID
		set rsBuyer = my_Conn.Execute(strSql)
		if not rsBuyer.EOF then
			intBuyer = rsBuyer("Buyer")
			rsBuyer.close
		end if
		set rsBuyer = Nothing
		if intBuyer > 0 then
			strSql = "SELECT M_EMAIL, MEMBER_ID, M_NAME FROM " & strMemberTablePrefix & "MEMBERS WHERE MEMBER_ID=" & intBuyer
			set rsBuyer = my_Conn.Execute(strSql)
			if not rsBuyer.EOF then
				strBuyerMail = rsBuyer("M_EMAIL")
				strBuyerName = rsBuyer("M_NAME")
				strBuyer = rsBuyer("MEMBER_ID")
				rsBuyer.close
			end if
			set rsBuyer = Nothing
		end if
		rsItem.Close
		set rsItem = Nothing
		Response.Write	"<p align=""center""><font face=""" & strDefaultFontFace & """ size=""" & strHeadFontSize & """ color=""" & strDefaultFontColor & """><b>" & strName & "</b></font>" & vbNewLine & _
			"<table width=""100%"" cellpadding=""4"" cellspacing=""0"" border=""0"">" & vbNewLine
		if strImage <> "" and strImage <> "http://" then
			Response.Write	"	<tr>" & vbNewLine & _
				"		<td width=""30%"" valign=""top"" align=""center"">" & vbNewLine & _
				"			<img src=""" & strImage & """ align=""center"" width=""500"" alt=""" & strLang_Auction_00403 & ": " & strName & """>" & vbNewLine & _
				"		</td>" & vbNewLine & _
				"	</tr>" & vbNewLine
		end if
		Response.Write	"	<tr valign=""middle"">" & vbNewLine & _
			"		<td width=""70%"">" & vbNewLine & _
			"			<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """>" & formatStr(strDesc) & "</font>" & vbNewLine & _
			"		</td>" & vbNewLine & _
			"	<tr>" & vbNewLine & _
			"</table>" & vbNewLine & _
			"<hr color=""#cccccc"" size=""1"" noshade>" & vbNewLine & _
			"<center><table width=""70%"" cellpadding=""4"" cellspacing=""0"" border=""0"">" & vbNewLine & _
			"	<tr valign=""middle"">" & vbNewLine & _
			"		<td width=""30%"">" & vbNewLine
		If dtmEnd <= endAuction then
			Response.Write	"<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strHiLiteFontColor & """>" & strLang_Auction_00404 & "</font><br /><br />" 
		else
			Response.Write	"			</font>" & vbNewLine & _
				"		</td>" & vbNewLine & _
				"	</tr>" & vbNewLine & _
				"	<tr>" & vbNewLine & _
				"		<td width=""30%"">" & vbNewLine & _
				"			<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """>" & strLang_Auction_00405 & vbNewLine & _
				"			</font>" & vbNewLine & _
				"		</td>" & vbNewLine & _
				"		<td width=""70%"">" & vbNewLine & _
				"			<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """>" & strLang_Auction_00406 & " #" & intAuctionID & "<br /><br/><b>" & strLang_Auction_00405 & "</b><br /><br />" & strLang_Auction_00409 & ": <a href=""auction_feedback.asp?FBID=" & intSeller & """>" & strSellerName & "</a>" & vbNewLine & _
				"				<form action=""auction_bidItem.asp"" method=""post"" id=""form1"" name=""form1"">" & vbNewLine & _
				"					<input type=""hidden"" name=""intAuctionID"" value=""" & intAuctionID & """>" & vbNewLine & _
				"					<input type=""hidden"" name=""curCurrent"" value=""" & curCurrent & """>" & vbNewLine & _
				"					<input type=""hidden"" name=""strSeller"" value=""" & strSeller & """>" & vbNewLine & _
				"					<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """><b>" & strLang_Auction_00407 & ":</b> " & strLang_Auction_Currency & "</font><input type=""text"" name=""curBid"" size=""10"" value=""" & formatNumber(curNext, 2) & """></font><br />" & vbNewLine & _
				"					<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """><b>" & strLang_Auction_00408 & ": " & strLang_Auction_Currency & "1.00</b></font><br />" & vbNewLine
			if intSeller <> MemberID then
				Response.Write	"					<p><input type=""submit"" value=""" & strLang_Auction_00420 & """ id=""submit1"" name=""submit1""></p>" & vbNewLine
			end if
			Response.Write	"				</form>" & vbNewLine
		end if
		If dtmEnd < endAuction then
			Response.Write	"<center>" & vbNewLine & _
				"<table border=""0"" cellpadding=""0"" cellspacing=""0"" width=""600"">" & vbNewLine & _
				"	<tr>" & vbNewLine & _
				"		<td width=""30%"">" & vbNewLine & _
				"			<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """><b>" & strLang_Auction_00409 & ":</b></font>" & vbNewLine & _
				"		</td>" & vbNewLine & _
				"		<td width=""70%"">" & vbNewLine & _
				"			<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """><a href=""auction_feedback.asp?FBID=" & intSeller & """>" & strSellerName & "</a></font>" & vbNewLine & _
				"		</td>" & vbNewLine & _
				"	</tr>" & vbNewLine
			if intSeller <> MemberID then
				Response.Write	"	<tr>" & vbNewLine & _
					"		<td width=""30%"">" & vbNewLine & _
					"			<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """><b>" & strLang_Auction_00410 & ":</b></font>" & vbNewLine & _
					"		</td>" & vbNewLine & _
					"		<td width=""70%"">" & vbNewLine & _
					"			<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """><a href=""JavaScript:openWindow7('pop_mail.asp?id=" & intSeller & "')"">" & strSellerName & "</a></font>" & vbNewLine & _
					"		</td>" & vbNewLine & _
					"	</tr>" & vbNewLine & _
					"	<tr>" & vbNewLine & _
					"		<td width=""30%"">" & vbNewLine & _
					"			<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """><a href=""auction_sendfb.asp?FBID=" & intAuctionID & """><b>" & strLang_Auction_00423 & "</b></a></font>" & vbNewLine & _
					"		</td>" & vbNewLine & _
					"		<td width=""70%""> " & vbNewLine & _
					"		</td>" & vbNewLine & _
					"	</tr>" & vbNewLine
			end if
			Response.Write	"	<tr>" & vbNewLine & _
				"		<td width=""30%"">" & vbNewLine & _
				"			<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """><b>" & strLang_Auction_00411 & ":</b></font>" & vbNewLine & _
				"		</td>" & vbNewLine & _
				"		<td width=""70%"">" & vbNewLine & _
				"			<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """>" & strLang_Auction_Currency & "" & formatNumber(curMin, 2) & "</font>" & vbNewLine & _
				"		</td>" & vbNewLine & _
				"	</tr>" & vbNewLine
		end if
		Response.Write	"	<tr>" & vbNewLine & _
			"		<td width=""30%"">" & vbNewLine
		if intBuyer > 0 then
			Response.Write	"			<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strHiLiteFontColor & """><b>" & strLang_Auction_00415 & ":</b></font>" & vbNewLine
		else
			Response.Write	"			<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """><b>" & strLang_Auction_00412 & ":</b></font>" & vbNewLine
		end if
		Response.Write	"		</td>" & vbNewLine & _
			"			<td width=""70%"">" & vbNewLine
		if dtmEnd > endAuction or intBuyer <> MemberID then
			if dtmEnd < endAuction AND (intBuyer=0 or not isNumeric(intBuyer)) then
				Response.Write	"			<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """>" & strLang_Auction_00424 & vbNewLine
			else
				Response.Write	"			<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """>" & strLang_Auction_Currency & "" & formatNumber(curCurrent, 2) & "</font>" & vbNewLine
			end if
		else
			strSql="SELECT PAYPAL_ACCT FROM " & strMemberTablePrefix & "MEMBERS WHERE MEMBER_ID = " & intSeller
			set rsSeller=my_Conn.Execute(strSql)
			if not rsSeller.EOF then
				strPayPal = rsSeller("PAYPAL_ACCT")
				rsSeller.close
			end if
			set rsSeller = Nothing
			Response.Write	strLang_Auction_Currency & "" & formatNumber(curCurrent, 2) & "</font><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><b>      <a href=""https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business="&strPayPal&"&item_name="&strName&"&amount="&cStr(CurCurrent)&"&shipping=0%2e00&no_shipping=0&no_note=1&tax=0%2e00¤cy_code="&strLang_Auction_00007&"&lc=US&bn=PP%2dBuyNowBF&charset=UTF%2d8"" target=""_blank"">"&strLang_Auction_00419&"</a></b></font></td>" & vbNewLine
		end if
		Response.Write	"		</td>" & vbNewLine & _
			"	</tr>" & vbNewLine
		if (intSeller = MemberID) and (dtmEnd <= endAuction) and (intBuyer > 0) then
			Response.Write	"	<tr>" & vbNewLine & _
				"		<td width=""30%"">" & vbNewLine & _
				"			<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """><a href=""auction_sendfb.asp?FBID=" & intAuctionID & """><b>" & strLang_Auction_00423 & "</b></a></font>" & vbNewLine & _
				"		</td>" & vbNewLine & _
				"		<td width=""70%""> " & vbNewLine & _
				"		</td>" & vbNewLine & _
				"	</tr>" & vbNewLine & _
				"	<tr>" & vbNewLine & _
				"		<td width=""30%"">" & vbNewLine & _
				"			<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strHiLiteFontColor & """><b>" & strLang_Auction_00417 & ":</b></font>" & vbNewLine & _
				"		</td>" & vbNewLine & _
				"		<td width=""70%"">" & vbNewLine & _
				"			<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """><a href=""auction_feedback.asp?FBID=" & intBuyer & """>" & strBuyerName & "</font>" & vbNewLine & _
				"		</td>" & vbNewLine & _
				"	</tr>" & vbNewLine
			if intBuyer > 0 then
				Response.Write	"	<tr>" & vbNewLine & _
					"		<td width=""30%"">" & vbNewLine & _
					"			<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strHiLiteFontColor & """><b>" & strLang_Auction_00418 & ":</b></font>" & vbNewLine & _
					"		</td>" & vbNewLine & _
					"		<td width=""70%"">" & vbNewLine & _
					"			<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """><a href=""JavaScript:openWindow7('pop_mail.asp?id=" & intBuyer & "')"">" & strBuyerName & "</a></font>" & vbNewLine & _
					"		</td>" & vbNewLine & _
					"	</tr>" & vbNewLine
			end if
		end if
		Response.Write	"	<tr>" & vbNewLine & _
			"		<td width=""30%"">" & vbNewLine & _
			"			<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """>" & strLang_Auction_00413 & ":</font>" & vbNewLine & _
			"		</td>" & vbNewLine & _
			"		<td width=""70%"">" & vbNewLine & _
			"			<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """>" & chkDate(dtmStart, " " ,true) & "</font>" & vbNewLine & _
			"		</td>" & vbNewLine & _
			"	</tr>" & vbNewLine
		if dtmEnd <= endAuction then
			strBid = strLang_Auction_00422
		else
			strBid = strLang_Auction_00414
		end if
		Response.Write	"	<tr>" & vbNewLine & _
			"		<td width=""30%"">" & vbNewLine & _
			"			<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """>" & strBid & ":</font>" & vbNewLine & _
			"		</td>" & vbNewLine & _
			"		<td width=""70%"">" & vbNewLine & _
			"			<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """>" & chkDate(dtmEnd, " " ,true) & "</font>" & vbNewLine & _
			"		</td>" & vbNewLine & _
			"	</tr>" & vbNewLine
		myTimeNow = now()
		myTimeEnd = StrtoDate(dtmEnd)
		If dtmEnd >= endAuction then
			Response.Write	"	<tr valign=""middle"">" & vbNewLine & _
				"		<td width=""30%"">" & vbNewLine & _
				"			<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """>" & strLang_Auction_00421 & ":</font>" & vbNewLine & _
				"		</td>" & vbNewLine & _
				"		<td width=""70%"">" & vbNewLine
			if DateDiff("n",MyTimeNow,MyTimeEnd)/60=>1 then
				Response.Write	"			<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """>" & DateDiff("h",MyTimeNow,MyTimeEnd)-1 &" hours, " & vbNewLine & _
				60-(int(DateDiff("n",MyTimeEnd,MyTimeNow))-(DateDiff("h",MyTimeEnd,MyTimeNow)*60)) & " minutes</font>" & vbNewLine
			else
				Response.Write	"			<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strDefaultFontColor & """>"& int(DateDiff("n",MyTimeNow,MyTimeEnd))& " minutes</font>" & vbNewLine
			end if
			Response.Write	"							</td>" & vbNewLine & _
				"						</tr>" & vbNewLine
		end if
		Response.Write	"					</table>" & vbNewLine & _
			"				</center>" & vbNewLine & _
			"			</font>" & vbNewLine & _
			"		</td>" & vbNewLine & _
			"	</tr>" & vbNewLine & _
			"</table></center>" & vbNewLine
 	end if
	Response.Write	"		</td>" & vbNewLine & _
		"	</tr>" & vbNewLine & _
		"</table>" & vbNewLine & _
		"<hr color=""#cccccc"" size=""1"" noshade>" & vbNewLine
end if
WriteFooter
%>

Edited by - Carefree on 24 June 2010 16:00:49
Go to Top of Page

Classicmotorcycling
Development Team Leader

Australia
2084 Posts

Posted - 18 June 2010 :  05:36:17  Show Profile  Reply with Quote
Given that version 1.2 has been taken over by 2.0 and avaliable at SnitzBitz, and now are 2 copies of the mod floating about, I will not be doing any more modifications, so Carefree do with it what you like as you are anyway.

Cheers,

David Greening
Go to Top of Page

Carefree
Advanced Member

Philippines
4207 Posts

Posted - 19 June 2010 :  22:04:38  Show Profile  Reply with Quote
I incorporated the feedback function from Kyodai and image upload support, both internationalized. Zip File

Edited by - Carefree on 24 June 2010 16:00:09
Go to Top of Page

Classicmotorcycling
Development Team Leader

Australia
2084 Posts

Posted - 20 June 2010 :  03:14:26  Show Profile  Reply with Quote
Feedback function was already in Version 2
quote:
Originally posted by Carefree

I incorporated the feedback function from Kyodai and image upload support, both internationalized. Zip File


Cheers,

David Greening
Go to Top of Page
Page: of 4 Previous Topic Topic Next Topic  
Previous Page
 New Topic  Reply to Topic
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.14 seconds. Powered By: Snitz Forums 2000 Version 3.4.07