Poem Bragi ( Soul Link ) [ Clown ]

ThyroDree

New member
Messages
556
Points
0
Location
Philippines
Github
bosxkate23
Emulator
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

 
Last edited by a moderator:
You mean if you can use the skills without link? If yes *bump need help also
default_happy.png


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

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

up

please?

 
Last edited by a moderator:
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


 
Last edited by a moderator:
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


 
Last edited by a moderator:
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 using rAThena-Server[16797]
default_sad.png
(


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

 
Last edited by a moderator:
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.
default_sad.png


15efdau.jpg


 
Last edited by a moderator:
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...

 
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.

 
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 
default_tongue.png
)
 
Last edited by a moderator:
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 
default_tongue.png
)
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;

 
Back
Top