Quick Posted May 10, 2013 Posted May 10, 2013 (edited) Requesting/Help me with my script! Help me change my skills for priest Suffragium - How can i change the target to myself. Not to another party members/ally. Redemptio- Changing this to a reflect skill/ - When attacked with physical short range attacks it will reflect a portion of damage of 40% Lastly for my whitesmith Greed Skill - Planning to change it to: SP Consumption: 60sp Target: Self Cast time: InstantEffect: You automatically block attacks with a success chance of 2*skillLv% Lv 1 Block chance of 2%, 15 sec Lv 2 Block chance of 4%, 20 sec Lv 3 Block chance of 6%, 25 sec Lv 4 block chace of 8%, 30 sec Lv 5 block chance of 10%, 35 sec Lv 6 block chance of 12%, 40 sec Lv 7 block chance of 14%, 45 sec Lv 8 block chance of 16%, 50 sec Lv 9 block chance of 18%, 55 sec Lv 10 block chance of 20%, 60 sec Thanks in advance! Edited May 10, 2013 by Quick Quote
Jaburak Posted May 10, 2013 Posted May 10, 2013 Greed Skill: trunk/map/skill.c Find: case BS_GREED: if(sd){ clif_skill_nodamage(src,bl,skill_id,skill_lv,1); map_foreachinrange(skill_greed,bl, skill_get_splash(skill_id, skill_lv),BL_ITEM,bl); } Replace: case BS_GREED: clif_skill_nodamage(src,bl,LK_PARRYING,skilllv, sc_start(bl,type,100,skilllv,skill_get_time(skillid,skilllv))); break; For Suffragium Skill: trunk/db/re/skill_db.txt Find: 67,9,6,16,0,0x1,0,3,1,yes,0,0x200,0,magic,0, PR_SUFFRAGIUM,Suffragium Replace to: 67,9,6,16,0,0x1,0,3,1,yes,0,0,0,magic,0, PR_SUFFRAGIUM,Suffragium 1 Quote
Quick Posted May 10, 2013 Author Posted May 10, 2013 Thanks! will try this <3 @anakid : Thanks! The Suffragium script is working. as for the Greed skill . The script don't work. "status_change_start: invalid status change (-1)" when i tested it im i lacking something or what Quote
Jaburak Posted May 10, 2013 Posted May 10, 2013 Thanks! will try this <3 @anakid : Thanks! The Suffragium script is working. as for the Greed skill . The script don't work. "status_change_start: invalid status change (-1)" when i tested it im i lacking something or what Try to add this in your db/re/skill_cast_db.txt //-- BS_GREED 1013,0,0,0,0,0 Quote
Jaburak Posted May 10, 2013 Posted May 10, 2013 Tested it. Still the same error (( trunk/src/map/status.c Find: set_sc( LK_PARRYING , SC_PARRYING , SI_PARRYING , SCB_NONE ); Add Below: set_sc( BS_GREED , SC_PARRYING , SI_PARRYING , SCB_NONE ); Quote
Erba Posted July 26, 2013 Posted July 26, 2013 Requesting/Help me with my script! Help me change my skills for priest Suffragium - How can i change the target to myself. Not to another party members/ally. Redemptio- Changing this to a reflect skill/ - When attacked with physical short range attacks it will reflect a portion of damage of 40% Lastly for my whitesmith Greed Skill - Planning to change it to: SP Consumption: 60sp Target: Self Cast time: Instant Effect: You automatically block attacks with a success chance of 2*skillLv% Lv 1 Block chance of 2%, 15 sec Lv 2 Block chance of 4%, 20 sec Lv 3 Block chance of 6%, 25 sec Lv 4 block chace of 8%, 30 sec Lv 5 block chance of 10%, 35 sec Lv 6 block chance of 12%, 40 sec Lv 7 block chance of 14%, 45 sec Lv 8 block chance of 16%, 50 sec Lv 9 block chance of 18%, 55 sec Lv 10 block chance of 20%, 60 sec Thanks in advance! does your problem with Greed skill is done? Quote
Erba Posted July 29, 2013 Posted July 29, 2013 (edited) Mabbalo annakid ^^ Edited July 29, 2013 by 2834 Quote
Question
Quick
Requesting/Help me with my script!
Help me change my skills for priest
Suffragium - How can i change the target to myself. Not to another party members/ally.Redemptio- Changing this to a reflect skill/ - When attacked with physical short range attacks it will reflect a portion of damage of 40%
Lastly for my whitesmith
Greed Skill -
Planning to change it to:
SP Consumption: 60sp
Target: Self
Cast time: Instant
Effect: You automatically block attacks with a success chance of 2*skillLv%
Lv 1 Block chance of 2%, 15 sec
Lv 2 Block chance of 4%, 20 sec
Lv 3 Block chance of 6%, 25 sec
Lv 4 block chace of 8%, 30 sec
Lv 5 block chance of 10%, 35 sec
Lv 6 block chance of 12%, 40 sec
Lv 7 block chance of 14%, 45 sec
Lv 8 block chance of 16%, 50 sec
Lv 9 block chance of 18%, 55 sec
Lv 10 block chance of 20%, 60 sec
Thanks in advance!
Edited by Quick7 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.