Adventure's Guide Buffs

Find the proper support area, Saga-Version.
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
User avatar
lucan
Posts: 590
Joined: Wed Mar 16, 2011 10:39 pm
Location: Brazil

Adventure's Guide Buffs

Post by lucan »

If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision Number: 5046
L2JDP Revision Number: 8403

Why any buff that I put on the table helper_buff_list does not work? Only buffs Aventures work.
If I change the Skill ID Adventure Wind Walk to Normal Wind Walk ID, he dont work more.
I want to add some new Adventures Guild NPC buffs but not working.
Plz any help?
User avatar
lucan
Posts: 590
Joined: Wed Mar 16, 2011 10:39 pm
Location: Brazil

Re: Adventure's Guide Buffs

Post by lucan »

Anyone?
User avatar
tukune
Posts: 533
Joined: Sun Mar 29, 2009 2:35 pm
Location: Japan

Re: Adventure's Guide Buffs

Post by tukune »

because Normal Wind Walk hitTime and reuseDelay not 0.
try
SupportMagic.java

Code: Select all

- npc.doCast(skill);+ skill.getEffects(npc, player);+ npc.broadcastPacket(new MagicSkillUse(npc, player, skill.getId(), skill.getLevel(), 0, 0));
User avatar
lucan
Posts: 590
Joined: Wed Mar 16, 2011 10:39 pm
Location: Brazil

Re: Adventure's Guide Buffs

Post by lucan »

hummm i try and inform the results!
Thanks!!
User avatar
lucan
Posts: 590
Joined: Wed Mar 16, 2011 10:39 pm
Location: Brazil

Re: Adventure's Guide Buffs

Post by lucan »

----------
ERROR in D:\L2JSERVER\gameserver\data\scripts\handlers\bypasshandlers\SupportMagic.java (at line 137)
npc.broadcastPacket(new MagicSkillUse(npc, player, skill.getId(), skill.getLevel(), 0, 0));

MagicSkillUse cannot be resolved to a type

With your patch I need to change all current skills in database to new skills? Because I kept normal adv skills only for testing.
afk5min
Posts: 38
Joined: Tue Jan 31, 2012 4:02 pm
Location: Away From Keyboard

Re: Adventure's Guide Buffs

Post by afk5min »

Click on new MagicSkillUse in code, hit F2, select to import it from [...].network.serverpackets.
Compute sequentially, true or false?

Code: Select all

p :- p.p. ?- p.
User avatar
lucan
Posts: 590
Joined: Wed Mar 16, 2011 10:39 pm
Location: Brazil

Re: Adventure's Guide Buffs

Post by lucan »

Sorry, forgot the import :oops:

EDITED:
No more errors, I'll test later including other buffs and inform if it worked.
User avatar
lucan
Posts: 590
Joined: Wed Mar 16, 2011 10:39 pm
Location: Brazil

Re: Adventure's Guide Buffs

Post by lucan »

Works Perfect!!! Thanks! :D
Can close the topic!!!
User avatar
franpisco
Posts: 118
Joined: Tue Dec 14, 2010 12:42 am
Location: Santiago - Chile
Contact:

Re: Adventure's Guide Buffs

Post by franpisco »

lucan wrote:Sorry, forgot the import :oops:

EDITED:
No more errors, I'll test later including other buffs and inform if it worked.
import com.l2jserver.gameserver.network.serverpackets.MagicSkillUse;
------
Franpisco
User avatar
franpisco
Posts: 118
Joined: Tue Dec 14, 2010 12:42 am
Location: Santiago - Chile
Contact:

Re: Adventure's Guide Buffs

Post by franpisco »

ummmm ... now i have and issue ... the buff helper doesn't give buff to pet's ... only to players =S
------
Franpisco
Post Reply