Lucky 10D Problem and Reverse Scroll

11/18/2014 14:37 Pati1992#1
Hello Guys,

i got 2 Problems.

First of all i cannot fuse Lucky 10D Stone on Pro and Acc Items. It is just working for Weapons ! When i try fuse Lucky on Pro or Acc its like the stone is failing but after the fusing process the Stone is still in the Inventory.

Another thing is where can i set up the cooldown of Reverse Return Scroll.

Thx
11/18/2014 22:08 SparkOfLight#2
You need to edit the Reverse Return Scroll in the Database to change the cooldown on it.
Can't say wich one it is atm because i dont have a database.
11/20/2014 18:56 Pati1992#3
The lucky stone fixed but still didnt got not the parameter to set reverse cooldown
11/21/2014 06:08 guckguck#4
Reverse:
_RefObjCommon
Code:
1	3795	ITEM_MALL_REVERSE_RETURN_SCROLL
In _RefObjItem (default 2145) change 1000 into your delay in [ms]
Code:
1000	????
11/21/2014 09:55 Pati1992#5
Quote:
Originally Posted by guckguck View Post
Reverse:
_RefObjCommon
Code:
1	3795	ITEM_MALL_REVERSE_RETURN_SCROLL
In _RefObjItem (default 2145) change 1000 into your delay in [ms]
Code:
1000	????
That was not the right Parameter :/ I tested other Parameter too in _RefObjItem but still no Cooldown
11/21/2014 10:48 Snow*#6
Code:
update _refobjitem set 
param3=5000 --> Time with millliseconds (1second = 1000millisecond)
, desc3_128='COOLTIME:0x00000071' where id in ( select link from _refobjcommon where codename128 = 'ITEM_MALL_REVERSE_RETURN_SCROLL' )
11/21/2014 14:29 Pati1992#7
Quote:
Originally Posted by SnowStorm1 View Post
Code:
update _refobjitem set 
param3=5000 --> Time with millliseconds (1second = 1000millisecond)
, desc3_128='COOLTIME:0x00000071' where id in ( select link from _refobjcommon where codename128 = 'ITEM_MALL_REVERSE_RETURN_SCROLL' )
Thx Man !!! It is fixed now :)