deborah Posted February 9 Group: Members Topic Count: 6 Topics Per Day: 0.00 Content Count: 12 Reputation: 0 Joined: 05/23/12 Last Seen: 1 minute ago Share Posted February 9 (edited) Hi, good day. Is it possible to apply the effect of Poem of Bragi to all players, not just those in the party? I am using Renewal. I hope someone can help me. Thank you very much! Edited February 9 by deborah Quote Link to comment Share on other sites More sharing options...
0 Yukaiii Posted February 9 Group: Members Topic Count: 72 Topics Per Day: 0.02 Content Count: 170 Reputation: 9 Joined: 11/20/13 Last Seen: Yesterday at 02:22 PM Share Posted February 9 16 hours ago, deborah said: Hi, good day. Is it possible to apply the effect of Poem of Bragi to all players, not just those in the party? I am using Renewal. I hope someone can help me. Thank you very much! But this skill works this way, doesn't it? It gives a bonus to whoever passes the bragi effect. Or do you want the effect to only work for the party? In pre-Renewal it works like this.. in Renewal I don't know how it works.. Quote Link to comment Share on other sites More sharing options...
0 deborah Posted February 10 Group: Members Topic Count: 6 Topics Per Day: 0.00 Content Count: 12 Reputation: 0 Joined: 05/23/12 Last Seen: 1 minute ago Author Share Posted February 10 (edited) 3 hours ago, Yukaiii said: But this skill works this way, doesn't it? It gives a bonus to whoever passes the bragi effect. Or do you want the effect to only work for the party? In pre-Renewal it works like this.. in Renewal I don't know how it works.. In Renewal, this does not work the same way as in pre-Renewal. You need to be in a party to receive the effect. Is there a way to make it work like pre-Renewal, where the effect applies even without being in a party? Edited February 10 by deborah Quote Link to comment Share on other sites More sharing options...
0 Playtester Posted February 12 Group: Developer Topic Count: 37 Topics Per Day: 0.01 Content Count: 896 Reputation: 248 Joined: 01/30/13 Last Seen: Saturday at 08:29 PM Share Posted February 12 The targeting of renewal songs is defined in: static int32 skill_castend_song(struct block_list* src, uint16 skill_id, uint16 skill_lv, t_tick tick) It's pretty self explanatory, just set flag to what should be targetted by the skill. You can see that it default to BCT_PARTY, with a few dances and songs having a different target. You can just look up the BCT flag definition and find what each flag means: BCT_NOONE = 0x000000, ///< No one BCT_SELF = 0x010000, ///< Self BCT_ENEMY = 0x020000, ///< Enemy BCT_PARTY = 0x040000, ///< Party members BCT_GUILDALLY = 0x080000, ///< Only allies, NOT guildmates BCT_NEUTRAL = 0x100000, ///< Neutral target BCT_SAMEGUILD = 0x200000, ///< Guildmates, No Guild Allies BCT_ALL = 0x3F0000, ///< All targets BCT_WOS = 0x400000, ///< Except self and your master BCT_SLAVE = BCT_SELF|BCT_WOS, ///< Does not hit yourself/master, but hits your/master's slaves BCT_GUILD = BCT_SAMEGUILD|BCT_GUILDALLY, ///< Guild AND Allies (BCT_SAMEGUILD|BCT_GUILDALLY) BCT_NOGUILD = BCT_ALL&~BCT_GUILD, ///< Except guildmates BCT_NOPARTY = BCT_ALL&~BCT_PARTY, ///< Except party members BCT_NOENEMY = BCT_ALL&~BCT_ENEMY, ///< Except enemy BCT_ALLY = BCT_PARTY|BCT_GUILD, BCT_FRIEND = BCT_NOENEMY, Quote Link to comment Share on other sites More sharing options...
Question
deborah
Hi, good day.
Edited by deborahIs it possible to apply the effect of Poem of Bragi to all players, not just those in the party?
I am using Renewal.
I hope someone can help me. Thank you very much!
Link to comment
Share on other sites
3 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.