[Search] Website with Web Item Mal

05/08/2010 22:22 Shaiya Xtreme#1
Hi,

i search for a Website with Register, GuildRank, PvP Rank, WebItemal u.s.w
05/11/2010 17:46 jamessimpler#2
hmmm haven't seen this one yet so far on the forum. But its not hard to do create urself if u know a bit of web programming or at least design and the DB knowledge. There is another tool that can immediate help u with this. All u need is some detail from the DB and also some idea, and its require minimum programming (but the tools is not free) and its called "phprunner". Just google it. Please note that u will need a Web Server that can support PHP to run the web. They also got ASPRunner which produce ASP based scripts. Hope it help.
05/11/2010 21:24 U97#3
Quote:
Originally Posted by Killsteal View Post
Hi,

WebItemal u.s.w
Use Stored Proc's from PS_GMTool or create new..
example:
Code:
USE [PS_GMTool]
GO
/****** Object:  StoredProcedure [dbo].[usp_Add_Gift]    Script Date: 05/12/2010 00:35:12 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		<Twilight:********.com>
-- Create date: <05/12/2010 00:35:12>
-- Description:	<For WebMall[Test]>
-- System: OS Win Server 2008, SQL 2008 Server
-- =============================================
ALTER PROCEDURE [dbo].[usp_Add_Gift] 
	-- Add the parameters for the stored procedure here
@UserUID	int,
@Slot		tinyint,
@ItemID		int,
@ItemCount	tinyint

AS
BEGIN
	-- SET NOCOUNT ON added to prevent extra result sets from
	-- interfering with SELECT statements.
	SET NOCOUNT ON;

    -- Insert statements for procedure here
DECLARE
@MaxCount int
SET @MaxCount = 0

SELECT @MaxCount = [Count] FROM PS_GameDefs.dbo.Items
WHERE ItemID = @ItemID

IF @MaxCount < @ItemCount
BEGIN
	RAISERROR ('Item Max Count Error', 16, 1)
	RETURN 
END
DECLARE 
@GameDB 	varchar(50),
@Table 		varchar(100),
@Sql		nvarchar(2048)
SET @Table = 'PS_GameData.dbo.UserStoredPointItems '
SET @Sql = 
	'INSERT INTO ' + @Table + '(UserUID, Slot, ItemID, ItemCount, BuyDate) VALUES(' + 
	CONVERT( varchar(20), @UserUID) + ',' +
	CONVERT( varchar(8), @Slot) + ',' +
	CONVERT( varchar(20), @ItemID) + ',' +
	CONVERT( varchar(8), @ItemCount) + ', GETDATE() )'
EXEC (@Sql)
SET NOCOUNT OFF
END
SQL Q:
Code:
use PS_GMTool;
--UserUID = 1
--Slot = 1
--ItemID = 1001
--ItemCount = 1
exec dbo.usp_Add_Gift 1,1,1001,1;
In Game use GiftBox !
05/13/2010 14:01 Shaiya Xtreme#4
[Only registered and activated users can see links. Click Here To Register...]

Where i can find this Template too Download please
11/14/2012 07:00 UNKNOWN_MODE#5
Quote:
Originally Posted by Shaiya Xtreme View Post
[Only registered and activated users can see links. Click Here To Register...]

Where i can find this Template too Download please

wow thats a website:handsdown:
11/14/2012 14:09 Philipp_#6
Why did you bump up this thread? Check the date of the last post next time :facepalm:
11/14/2012 16:57 JohnHeatz#7
#Closed