Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[help] ran extinction cp

Joined
May 2, 2012
Messages
476
Reaction score
244
PLEASE HELP ME HERE's MY PROBLEMS..

error - [help] ran extinction cp - RaGEZONE Forums

i checked my dbo.ShopItemMap

error - [help] ran extinction cp - RaGEZONE Forums

help me with this problem tnx!! guyz!!


MORE POWER RAGEZONE!
 

Attachments

You must be registered for see attachments list
Last edited:
Joined
Apr 15, 2011
Messages
663
Reaction score
132
Number 4 Problem . Delete your dbo.ShopItemMap then execute this script in your database .

PHP:
USE [RanShop]
GO
/****** Object: Table [dbo].[ShopItemMap] Script Date: 04/24/2012 11:52:27 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[ShopItemMap](
[ProductNum] [int] IDENTITY(1,1) NOT NULL,
[ItemMain] [int] NULL,
[ItemSub] [int] NULL,
[ItemName] [varchar](100) NULL,
[ItemSec] [int] NULL,
[ItemPrice] [varchar](100) NULL,
[Itemstock] [varchar](100) NULL,
[ItemCtg] [int] NULL,
[Itemexp] [varchar](100) NULL,
[ItemIco] [varchar](100) NULL,
[ItemSS] [varchar](100) NULL,
[date] [datetime] NOT NULL CONSTRAINT [DF_ShopItemMap_date] DEFAULT (getdate()),
CONSTRAINT [PK_ShopItemMap] PRIMARY KEY CLUSTERED
(
[ProductNum] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
SET ANSI_PADDING OFF
 
Upvote 0
Junior Spellweaver
Joined
Jan 23, 2009
Messages
117
Reaction score
1
to hide gm accounts on RANKING , just go to your RanUser>Userinfo.dbo>click open table and make your usertype to 30 only not 32 or what just 30
 
Upvote 0
Back
Top