Jump to content
  • 0
Sign in to follow this  
ThyroDree

Poem Bragi ( Soul Link ) [ Clown ]

Question

can i request if a clown is Linked the Poem Bragi , Apple of Idun,Etc., can be use itself?

or 

 

when clown has a link from SL, played A poem of Bragi and turn it off then he can cast two Arrow Vulcans after self and after them is delay. The rule of it: AV,AV, delay, AV,AV, delay...so on.

 

is this possible?

 

 

 

sorry for my bad english :0

Edited by ThyroDree

Share this post


Link to post
Share on other sites

22 answers to this question

Recommended Posts

  • 0

if the clown is link the and cast a poem bragi the caster will get the buff to.

 

 

Bump please :( i want the poem bragi like Apple Idun ( Cast it Self ) when the Clown i linked

 

 

up

 

 

please?

Share this post


Link to post
Share on other sites
  • 0

what is the line of poem bragi if SC_SPirit? ill just add the script , my SVN is not updated

 


EDIT

 

is this the line?

 

        case UNT_TALKIEBOX:
if (sg->src_id == bl->id)
break;
if (sg->val2 == 0){
clif_talkiebox(&src->bl, sg->valstr);
sg->unit_id = UNT_USED_TRAPS;
clif_changetraplook(&src->bl, UNT_USED_TRAPS);
sg->limit = DIFF_TICK(tick, sg->tick) + 5000;
sg->val2 = -1;
}
break;

case UNT_LULLABY:
if (ss->id == bl->id)
break;
skill_additional_effect(ss, bl, sg->skill_id, sg->skill_lv, BF_LONG|BF_SKILL|BF_MISC, ATK_DEF, tick);
break;

case UNT_UGLYDANCE: //Ugly Dance [skotlex]
if (ss->id != bl->id)
skill_additional_effect(ss, bl, sg->skill_id, sg->skill_lv, BF_LONG|BF_SKILL|BF_MISC, ATK_DEF, tick);
break;

case UNT_DISSONANCE:
skill_attack(BF_MISC, ss, &src->bl, bl, sg->skill_id, sg->skill_lv, tick, 0);
break;

case UNT_APPLEIDUN: //Apple of Idun [skotlex]
{
int heal;
#ifdef RENEWAL
struct mob_data *md = BL_CAST(BL_MOB, bl);
if( md && md->mob_id == MOBID_EMPERIUM )
break;
#endif
if( sg->src_id == bl->id && !(tsc && tsc->data[sC_SPIRIT] && tsc->data[sC_SPIRIT]->val2 == SL_BARDDANCER) )
break; // affects self only when soullinked

i am using rathena and i disable the renewal. my server is Pre-Renewal

Edited by ThyroDree

Share this post


Link to post
Share on other sites
  • 0

1st 

nvza7p.jpg

2nd

sc3nkz.jpg

3rd

rmlf7b.jpg

4th ( i tried to spam AV after the Poem Bragi with Soul Link and still Delay )

15efdau.jpg

Edited by ThyroDree

Share this post


Link to post
Share on other sites
  • 0

my SVN is not updated

I can support rathena users ... but I don't support those using outdated SVN ...

 

later ask you patch the script, then you say this command and that command doesn't exist in your svn ... its pain and time wasting

Share this post


Link to post
Share on other sites
  • 0

i am using rAThena-Server[16797] :((

 

EDIT ::

the poem bragi skill with soul link ( cast itself ) is WoRking. i tried without Soullink + Bragi the Frost Joke 1.5s per Frost Joke then i tried SOulink + Bragi ( With Bard Soullink ) frost joke Skill is Spam

 

i think the problem is on the Arrow Vulcan Skill

Edited by ThyroDree

Share this post


Link to post
Share on other sites
  • 0

 

my SVN is not updated

I can support rathena users ... but I don't support those using outdated SVN ...

 

later ask you patch the script, then you say this command and that command doesn't exist in your svn ... its pain and time wasting

I am so sorry AnnieRuru :(( Forgive me

Share this post


Link to post
Share on other sites
  • 0

Arrow Vulcan not working if my clown got soul Link and Cast Poem Bragi and Adaption to Circumstances

anyone help me with this?

Tried on Frost Joke Skill can be spammed it is working but on Arrow Vulcan its not. :(

 

15efdau.jpg

Edited by ThyroDree

Share this post


Link to post
Share on other sites
  • 0

bsically.. 

 

to spam this AV i believe that u need to wear 3 kiel + 195/196 atkspeed..

 

bragis has only 

 

 

Lv.10

 

30% reduced casting time

50% aftercast delay reduction..

 

 

if im mistaken then.. sarey...

Share this post


Link to post
Share on other sites
  • 0

Merged both your topics regarding the same thing. Please don't make a separate topic with the same issue when you already have one up.

Share this post


Link to post
Share on other sites
  • 0

u need a source modification for bragis i think since bragis has a default of 50% less delay only and not 100% AV requires 100% less aftercast delay to be able to spam.. tested on my test server.


i believe here is the line u need to edit.. in src/map/skill.c

 

[cbox] case BA_POEMBRAGI:
val1 = 3*skill_lv+st->dex/10; // Casting time reduction
//For some reason at level 10 the base delay reduction is 50%.
val2 = (skill_lv<10?3*skill_lv:50)+st->int_/5; // After-cast delay reduction
if(sd){
val1 += 2*pc->checkskill(sd,BA_MUSICALLESSON);
val2 += 2*pc->checkskill(sd,BA_MUSICALLESSON);
}
break;[/cbox]
 
but i dont know.. how the formula works.. hehe (im not really sure  :P )
Edited by leloush

Share this post


Link to post
Share on other sites
  • 0

 

u need a source modification for bragis i think since bragis has a default of 50% less delay only and not 100% AV requires 100% less aftercast delay to be able to spam.. tested on my test server.

 

 

i believe here is the line u need to edit.. in src/map/skill.c

 

[cbox] case BA_POEMBRAGI:

val1 = 3*skill_lv+st->dex/10; // Casting time reduction

//For some reason at level 10 the base delay reduction is 50%.

val2 = (skill_lv<10?3*skill_lv:50)+st->int_/5; // After-cast delay reduction

if(sd){

val1 += 2*pc->checkskill(sd,BA_MUSICALLESSON);

val2 += 2*pc->checkskill(sd,BA_MUSICALLESSON);

}

break;[/cbox]

 
but i dont know.. how the formula works.. hehe (im not really sure  :P )

should i change it to this?

 

[*]case BA_POEMBRAGI:

[*] 

[*]val1 = 3*skill_lv+st->dex/10; // Casting time reduction

[*] 

[*]//For some reason at level 10 the base delay reduction is 50%.

[*] 

[*]val2 = (skill_lv<10?3*skill_lv:100)+st->int_/5; // After-cast delay reduction <<<<<<<<<<<<<<<<< I EDIT HERE

[*] 

[*]if(sd){

[*] 

[*]val1 += 2*pc->checkskill(sd,BA_MUSICALLESSON);

[*] 

[*]val2 += 2*pc->checkskill(sd,BA_MUSICALLESSON);

[*] 

[*]}

[*] 

[*]break;

Share this post


Link to post
Share on other sites
  • 0

 

 

u need a source modification for bragis i think since bragis has a default of 50% less delay only and not 100% AV requires 100% less aftercast delay to be able to spam.. tested on my test server.

 

 

i believe here is the line u need to edit.. in src/map/skill.c

 

[cbox] case BA_POEMBRAGI:

val1 = 3*skill_lv+st->dex/10; // Casting time reduction

//For some reason at level 10 the base delay reduction is 50%.

val2 = (skill_lv<10?3*skill_lv:50)+st->int_/5; // After-cast delay reduction

if(sd){

val1 += 2*pc->checkskill(sd,BA_MUSICALLESSON);

val2 += 2*pc->checkskill(sd,BA_MUSICALLESSON);

}

break;[/cbox]

 
but i dont know.. how the formula works.. hehe (im not really sure  :P )

should i change it to this?

 

  1. case BA_POEMBRAGI:
  2.  
  3. val1 = 3*skill_lv+st->dex/10; // Casting time reduction
  4.  
  5. //For some reason at level 10 the base delay reduction is 50%.
  6.  
  7. val2 = (skill_lv<10?3*skill_lv:100)+st->int_/5; // After-cast delay reduction <<<<<<<<<<<<<<<<< I EDIT HERE
  8.  
  9. if(sd){
  10.  
  11. val1 += 2*pc->checkskill(sd,BA_MUSICALLESSON);
  12.  
  13. val2 += 2*pc->checkskill(sd,BA_MUSICALLESSON);
  14.  
  15. }
  16.  
  17. break;

i really dont know...

 

 

u must learned the famous word " trial and error "

try it. if it works then. its good. if not just change it back to normal and look for another way to do this.. (btw, always keep in mind that u make backup before messing with src files... so if u forgot something, no problem there is a backup.. even if its minor editing.)

Share this post


Link to post
Share on other sites
  • 0

Not Woking :( Please help me to make AV affected with skill delay if clown cast poem bragi when got soul link

Edited by ThyroDree

Share this post


Link to post
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.   Restore formatting

  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.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.