Hello guys, As title explains, I need to add a new buff for every created character like Silkroad-Europe. any idea?
Hello guys, As title explains, I need to add a new buff for every created character like Silkroad-Europe. any idea?
Just add an insert to TimedJob in the _AddNewChar procedure for the skill ID's you wanna add buffs for.
Unfortunately, I don't know where this values should be put it in, but i have tried adding into _CharSkillMastery, _CharSkill and even _RefCharDefault_Skill but they didn't worked. So you can tell where specifically i can put it.
Well for my csro-r test server this is what ive placed in the "_AddNewChar" procedure to give new chars drug of typoon already on.
RED = RefSkill ID (Mine is 100% Drug of Typoon)Code:INSERT INTO _TimedJob VALUES (@NewCharID, 0, 5410, 3600, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)
GREEN = Duration of the skill
Pretty simple, hope it works for you :)
It worked, thank you.