God Bless + Speed

01/26/2015 04:52 !Ego#1
Hello Guy's
Done added God Bless to my server but now i am asking about:
how to make the god bless usable beside speed potion ?!

+ can any one upload the icon " Change char name scroll " for me ?
Because the god bless has no image in my inventory...

and Thanks :)
01/26/2015 05:03 ​Exo#2
Look for the speed param @ the skill line and set it to 0, that it won't have speed.
01/26/2015 05:06 Snow*#3
You want to use both GodBless and speed skills? Please note that will make the speed like 200% or even more
If you want to use both at the same time
Code:
UPDATE _RefSkill set Action_Overlap = 0 where Basic_Code = 'SKILL_MALL_GODBLESS'
if you got a different skill code change SKILL_MALL_GODBLESS skill name you're using

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

Don't forget to restart your server
01/26/2015 05:13 ​Exo#4
^For that I recommend removing the speed from the skill.
01/26/2015 05:33 !Ego#5
thx guy's <3
01/26/2015 05:33 Snow*#6
@xExorcist that depends on what he want. Also you have to remove the action_overlap to be able to use the skill with the other speed skills/scrolls (even when you remove the speed param you have to set the action_overlap to 0 to be able to use it freely)

@OP If you want to remove the speed from GodBless and to be able to use it with the other speed skills/scrolls then use the query below
Code:
UPDATE _RefSkill set Action_Overlap = 0, param9 = 0, param10 = 0 where Basic_Code = 'SKILL_MALL_GODBLESS'
if you got a different skill code change SKILL_MALL_GODBLESS skill name you're using

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

Don't forget to restart your server
01/26/2015 05:40 !Ego#7
sry for the question but can i make it delete able
i mean that the player can delete it like any other scroll :) sry for that
01/26/2015 05:43 ​Exo#8
Well you can, I guess, you just need to fix the ObjItem lines tho.
01/26/2015 06:20 !Ego#9
which one in _RefObjItem ?