Jump to content
  • 0

Dragon Breath,Siren Voice, Deep Sleep Lullaby,Arrullo help pls asap


Igor

Question


  • Group:  Members
  • Topic Count:  26
  • Topics Per Day:  0.01
  • Content Count:  103
  • Reputation:   6
  • Joined:  08/01/12
  • Last Seen:  

Hi, It's me, Igor

this is my first time posting on Database Support (maybe)

 

I hope this is not the wrong place to ask about skill's

 

I'm using rAthena that already have rebellion (fixed all skill) but doesn't have doram (idk rA already released or no)

 

My server is Pre-renewal, so i recompile from renewal to pre-renewal

my problem is,

 

Skill Rune Knight, Dragon Breath (Fire & Water) when using IP (Ice Pick) the damage increase so much, how to disable using IP not effect on how big the damage? i hope this one really clear and really got the solution ASAP because in pre-re, IP doesn't effect much to dragon breath

 

Skill Minstre/Wanderer Siren Voice, the love duration only 1-2 seconds, how to increase it to 5 or even more, please help

 

Skill Minstrel / Wanderer Deep Sleep Lullaby, the sleep duration only 1-2 seconds too, how to increase it more, atleast 5 sec

 

Skill Sorcerer Arrullo, the sleep duration also 1-2 seconds, idk why :( 

 

Skill Shadow Chaser, is it possible to increase damage using Lilith's skill_damage_db source? (already implented)

for who know how to fix this, please guide me to fix it...

thanks anyway...

 

I dont know which part on src should i edit, or even not on src :3


bump~ anyone?

Link to comment
Share on other sites

11 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.01
  • Content Count:  42
  • Reputation:   2
  • Joined:  05/25/16
  • Last Seen:  

Same problem with Deep Sleep Lullaby and Siren's Voice. But I still have to double check it. Maybe it's because of the duration reduction.

Edited by gmsour
Link to comment
Share on other sites

  • 0

  • Group:  Developer
  • Topic Count:  48
  • Topics Per Day:  0.01
  • Content Count:  1443
  • Reputation:   337
  • Joined:  10/17/12
  • Last Seen:  

https://github.com/rathena/rathena/blob/master/db/pre-re/skill_cast_db.txt

You need to edit the durations, though note the durations are before resistances.

As for dragons breath you need to edit the skill In The skill_db

https://github.com/rathena/rathena/blob/master/db/pre-re/skill_db.txt

Should be 06 nk that needs editing.

But if your running pre-re re skills will all be op so ya....

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  26
  • Topics Per Day:  0.01
  • Content Count:  103
  • Reputation:   6
  • Joined:  08/01/12
  • Last Seen:  

https://github.com/rathena/rathena/blob/master/db/pre-re/skill_cast_db.txt

You need to edit the durations, though note the durations are before resistances.

As for dragons breath you need to edit the skill In The skill_db

https://github.com/rathena/rathena/blob/master/db/pre-re/skill_db.txt

Should be 06 nk that needs editing.

But if your running pre-re re skills will all be op so ya....

 

Thanks for the reply, this really help me...

now for the last, how to delete release skill cooldown :3 so whatever the spell, release skill only 0.1s cooldown / after cast delay

Link to comment
Share on other sites

  • 0

  • Group:  Developer
  • Topic Count:  48
  • Topics Per Day:  0.01
  • Content Count:  1443
  • Reputation:   337
  • Joined:  10/17/12
  • Last Seen:  

If you don't find a skills cooldowns in the skill_cast_db then it's going to require an src edit. So check there first.

Off hand I don't know as I don't run 3rd classes in my test server.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  26
  • Topics Per Day:  0.01
  • Content Count:  103
  • Reputation:   6
  • Joined:  08/01/12
  • Last Seen:  

If you don't find a skills cooldowns in the skill_cast_db then it's going to require an src edit. So check there first.

Off hand I don't know as I don't run 3rd classes in my test server.

i try add a skill delay db, but seems like nothing change :3 or i must restart my server? haha coz i just @reloadskilldb

Link to comment
Share on other sites

  • 0

  • Group:  Developer
  • Topic Count:  48
  • Topics Per Day:  0.01
  • Content Count:  1443
  • Reputation:   337
  • Joined:  10/17/12
  • Last Seen:  

No @reloadskilldb should have worked

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  283
  • Reputation:   76
  • Joined:  06/13/13
  • Last Seen:  

 

Skill Rune Knight, Dragon Breath (Fire & Water) when using IP (Ice Pick) the damage increase so much, how to disable using IP not effect on how big the damage? i hope this one really clear and really got the solution ASAP because in pre-re, IP doesn't effect much to dragon breath

 

You need to change related skill in file battle.c, skill.c and db, there is many to change just search all files with key "RK_DRAGONBREATH" and if it show with flag weapon change it to misc

 

 

Skill Minstre/Wanderer Siren Voice, the love duration only 1-2 seconds, how to increase it to 5 or even more, please help

 

Skill Minstrel / Wanderer Deep Sleep Lullaby, the sleep duration only 1-2 seconds too, how to increase it more, atleast 5 sec

 

Skill Sorcerer Arrullo, the sleep duration also 1-2 seconds, idk why :(

this commit is all you need to follow

https://github.com/rathena/rathena/commit/f7a276ec7389389b6b56653ad87b21eb937aace6

Link to comment
Share on other sites

  • 0

  • Group:  Developer
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  790
  • Reputation:   225
  • Joined:  01/30/13
  • Last Seen:  

Deep Sleep duration can be reduced to 0 easily just by having a high level, that's official. If you want it to not be shorter than 5 seconds then put a min duration for it too.

 

Like this:

 		case SC_ANKLE:
 		case SC_MARSHOFABYSS:
 		case SC_DEEPSLEEP:
 			tick = max(tick, 5000); // Minimum duration 5s
break;

For Voice of Siren, see link above.

 

For editing Ice Pick effect, you'll have to search for is_attack_piercing in battle.c:

static int is_attack_piercing(struct Damage wd, struct block_list *src, struct block_list *target, int skill_id, int skill_lv, short weapon_position)
{
	if (skill_id == ???)
		return 0;

If you add something like this at top, you can make certain skills never pierce (ignore Ice Pick effect).

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  26
  • Topics Per Day:  0.01
  • Content Count:  103
  • Reputation:   6
  • Joined:  08/01/12
  • Last Seen:  

i forget the chance guys :v how to increase the chance xD

Link to comment
Share on other sites

  • 0

  • Group:  Developer
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  790
  • Reputation:   225
  • Joined:  01/30/13
  • Last Seen:  

Just search for the corresponding skills in skill.c.

	case SO_ARRULLO:
		{
			int rate = (15 + 5 * skill_lv) + status_get_int(src) / 5 + (sd ? sd->status.job_level / 5 : 0) - status_get_int(bl) / 6 - status_get_luk(bl) / 10;

			clif_skill_nodamage(src, bl, skill_id, skill_lv, 1);
			sc_start(src, bl, type, rate, skill_lv, skill_get_time(skill_id, skill_lv));
		}
		break;

If you know some maths, it should be self-explanatory.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  48
  • Reputation:   1
  • Joined:  04/14/17
  • Last Seen:  

Hi everyone. I got the same issue too. My deep sleep lullaby only lasted for 1 - 2 seconds. I think there's an error remembering that lv 5 deep sleep lullaby got effect 20 seconds deep sleep effect. i already check that link above but it still not working. You guys got any idea? Thanks btw.

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...