- Joined
- Jan 18, 2011
- Messages
- 113
- Reaction score
- 26
Can anyone tell me how i can add the crimson ring to my data base so i can use give item to get it also on the sets.iff is it possible to put a whole set on the shop by hexing that file...
USE [Pangya_S4_TH]
GO
IF EXISTS ( SELECT TYPEID FROM PANGYA_ITEM_TYPELIST WHERE TYPEID = 1879113856 )
BEGIN
UPDATE PANGYA_ITEM_TYPELIST
SET NAME = N'Crimson Ring'
, ICON = N''
, PRICE = 1000
, ISCASH = 0
WHERE TYPEID = 1879113856
END
ELSE
BEGIN
INSERT INTO PANGYA_ITEM_TYPELIST
( [TYPEID], [NAME], [ICON], [PRICE], [ISCASH] )
VALUES ( 1879113856, N'Crimson Ring', N'', 1000, 0 )
END
GO
Msg 109, Level 15, State 1, Line 13
There are more columns in the INSERT statement than values specified in the VALUES clause. The number of values in the VALUES clause must match the number of columns specified in the INSERT statement.
INSERT INTO PANGYA_ITEM_TYPELIST
( [TYPEID], [NAME], [ICON], [PRICE], [ISCASH] )
VALUES ( 1879113739, N'Mystic Ring', N'', 1000, 0 )
VALUES ( 1879113744, N'Hybrid Ring', N'', 1000, 0 )
VALUES ( 1879113745, N'Promise Ring', N'', 1000, 0 )
VALUES ( 1879113856, N'Crimson Ring', N'', 1000, 0 )
VALUES ( 1879113858, N'Ultimate Ring', N'', 1000, 0 )