Help with Start Items!

02/01/2015 03:08 DevilArrow#1
how to add /no tradeable !/ 3days Grab Pet and Reverse/Res Scroll to Start Items ??
02/01/2015 03:14 mtnman33#2
go to SHARD/programibility/stored procedures/dbo.addnewchar
and add the itrems where it say what items you want them to have , hit execute and your all set , good luck
02/01/2015 06:57 asanoftw#3
Hey DevilArrow, use this query to make items F10 untradeable,
Code:
USE [SRO_VT_SHARD]
GO
update [dbo].[_RefObjCommon]set [CanTrade] = 0
where CodeName128 like '%ITEM_MALL%'
And if you want to re-back them trading,
Code:
USE [SRO_VT_SHARD]
GO
update [dbo].[_RefObjCommon]set [CanTrade] = 1
where CodeName128 like '%ITEM_MALL%'
Regards.
02/01/2015 13:26 MissinGDeaTh#4
go to SHARD/programibility/stored procedures/dbo.addnewchar

[Only registered and activated users can see links. Click Here To Register...]

and edit this codes in red to match the items u want to add as a start items.
PRESS Thanks if it helped ^^
02/01/2015 21:09 DevilArrow#5
thx All!,
but How i can make a Grabpet 3days or 7 days
02/02/2015 05:54 MissinGDeaTh#6
Quote:
Originally Posted by DevilArrow View Post
thx All!,
but How i can make a Grabpet 3days or 7 days

PHP Code:
ITEM_COS_P_RABBIT_SCROLL 
02/02/2015 14:21 ​Exo#7
Please avoid asking other questions not related to the title, so we can support with decent answers. Once your case is solved we will close this thread. If you have any other requests you should start another thread with a new question so everyone can see it and you get the best answer possible.