I cant find..
how to add item to in my char..
or how db..
Thx all write answers ;)
I cant find..
how to add item to in my char..
or how db..
Thx all write answers ;)
exec up_AddMyCashItemByItem 'IDACCOUNT','0','1','IDITEM','OPTIONS','DURATION'
31= permanent
exec this procedure in CabaCash
Code:USE [CabalCash] GO DECLARE @return_value int EXEC @return_value = [dbo].[up_AddMyCashItemByItem] @UserNum = IDACCOUNT, @TranNo = 0, @ServerIdx = 1, @ItemIdx = IDITEM, @ItemOpt = OPTIONS, @DurationIdx = 0 SELECT 'Return Value' = @return_value GO
Last edited by ArmOReTotTL; 07-02-13 at 04:46 AM.
well.. how to add craft item..
e.g. i want 7 amp 2 slot forcium orb.. how to add ?
how to write sql code ?
USE [CabalCash]
GO
DECLARE @return_value int
EXEC @return_value = [dbo].[up_AddMyCashItemByItem]
@UserNum = IDACCOUNT,
@TranNo = 0,
@ServerIdx = 1,
@ItemIdx = IDITEM,
@ItemOpt = OPTIONS,
@DurationIdx = 0
SELECT 'Return Value' = @return_value
GO
7amp(magic) 2slot orbCode:USE [CabalCash] GO DECLARE @return_value int EXEC @return_value = [dbo].[up_AddMyCashItemByItem] @UserNum = IDACCOUNT, @TranNo = 0, @ServerIdx = 1, @ItemIdx = 25, @ItemOpt = 536871129, @DurationIdx = 0 SELECT 'Return Value' = @return_value GO
this ist item+craft forcium orb 7mamp 2slot!