Jump to content
  • 0

Final Request Script


Quick

Question


  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  8
  • Reputation:   0
  • Joined:  04/14/13
  • Last Seen:  

Requesting/Help me with my script!

Help me change my skills for priest :P

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 Quick
Link to comment
Share on other sites

7 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  48
  • Topics Per Day:  0.01
  • Content Count:  1125
  • Reputation:   236
  • Joined:  07/30/12
  • Last Seen:  

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
  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  8
  • Reputation:   0
  • Joined:  04/14/13
  • Last Seen:  

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 :o im i lacking something or what :o

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  48
  • Topics Per Day:  0.01
  • Content Count:  1125
  • Reputation:   236
  • Joined:  07/30/12
  • Last Seen:  

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 :o im i lacking something or what :o

Try to add this in your db/re/skill_cast_db.txt

//-- BS_GREED
1013,0,0,0,0,0
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  8
  • Reputation:   0
  • Joined:  04/14/13
  • Last Seen:  

Tested it. Still the same error :(((

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  48
  • Topics Per Day:  0.01
  • Content Count:  1125
  • Reputation:   236
  • Joined:  07/30/12
  • Last Seen:  

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 );
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  84
  • Topics Per Day:  0.02
  • Content Count:  550
  • Reputation:   9
  • Joined:  11/06/12
  • Last Seen:  

Requesting/Help me with my script!

Help me change my skills for priest :P

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?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  84
  • Topics Per Day:  0.02
  • Content Count:  550
  • Reputation:   9
  • Joined:  11/06/12
  • Last Seen:  

Mabbalo annakid ^^

Edited by 2834
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...