Jump to content

Recommended Posts

Posted (edited)
  On 12/5/2016 at 8:33 PM, thelol said:

umm . its good one as it simple also but i like old school ;) .. but i have something, i talked to the NPC and chosed manage scheme and select some buffs, songs, dances, and (( Shilen Elder )) i get Critical Error, and when i click on Fighter Set | Mage Set in Full Buff section it cancel all buff i already have.

 

For removing buffs simply find :

else if (currentCommand.startsWith("fighterSet"))
{
........
-player.stopAllEffectsExceptThoseThatLastThroughDeath();
..........
}

else if (currentCommand.startsWith("mageSet"))
{
.....
-player.stopAllEffectsExceptThoseThatLastThroughDeath();
...
}

About critical what to say :/ its working fine for me i havent any issue since i didnt edit this part..

 

Edit:

For your cleanup bypass:

fix to this

final L2Summon summon = player.getPet();
 			if (summon != null)
			{
                               buff.getEffects(this, summon);
				summon.broadcastPacket(new MagicSkillUse(this, summon, 1056, 1, 5, 0));
 				summon.stopAllEffectsExceptThoseThatLastThroughDeath();
			}
Edited by melron
Posted
else if (currentCommand.startsWith("fighterSet"))
		{
			int fighterSet[] = Config.FIGHTER_SET_LIST;
			player.stopAllEffectsExceptThoseThatLastThroughDeath();
			L2Skill buff ;
			for (int id: fighterSet)
			{
				buff = SkillTable.getInstance().getInfo(id, SkillTable.getInstance().getMaxLevel(id));
				buff.getEffects(this, player);
				player.broadcastPacket(new MagicSkillUse(this, player, id, buff.getLevel(), 0, 0));
			}
			final NpcHtmlMessage html = new NpcHtmlMessage(0);
			html.setFile(getHtmlPath(getNpcId(), 0));
			html.replace("%objectId%", getObjectId());
			player.sendPacket(html);
		}
		else if (currentCommand.startsWith("mageSet"))
		{
			int mageSet[] = Config.MAGE_SET_LIST;
			player.stopAllEffectsExceptThoseThatLastThroughDeath();
			L2Skill buff ;
			 for (int id: mageSet)
			 {
				 buff = SkillTable.getInstance().getInfo(id, SkillTable.getInstance().getMaxLevel(id));
				 buff.getEffects(this, player);
				 player.broadcastPacket(new MagicSkillUse(this, player, id, buff.getLevel(), 0, 0));
			 }
			 final NpcHtmlMessage html = new NpcHtmlMessage(0);
			 html.setFile(getHtmlPath(getNpcId(), 0));
			 html.replace("%objectId%", getObjectId());
			 player.sendPacket(html);
		}

what about this one ?... 

Posted (edited)
  On 12/5/2016 at 9:15 PM, thelol said:
else if (currentCommand.startsWith("fighterSet"))
		{
			int fighterSet[] = Config.FIGHTER_SET_LIST;
			player.stopAllEffectsExceptThoseThatLastThroughDeath();
			L2Skill buff ;
			for (int id: fighterSet)
			{
				buff = SkillTable.getInstance().getInfo(id, SkillTable.getInstance().getMaxLevel(id));
				buff.getEffects(this, player);
				player.broadcastPacket(new MagicSkillUse(this, player, id, buff.getLevel(), 0, 0));
			}
			final NpcHtmlMessage html = new NpcHtmlMessage(0);
			html.setFile(getHtmlPath(getNpcId(), 0));
			html.replace("%objectId%", getObjectId());
			player.sendPacket(html);
		}
		else if (currentCommand.startsWith("mageSet"))
		{
			int mageSet[] = Config.MAGE_SET_LIST;
			player.stopAllEffectsExceptThoseThatLastThroughDeath();
			L2Skill buff ;
			 for (int id: mageSet)
			 {
				 buff = SkillTable.getInstance().getInfo(id, SkillTable.getInstance().getMaxLevel(id));
				 buff.getEffects(this, player);
				 player.broadcastPacket(new MagicSkillUse(this, player, id, buff.getLevel(), 0, 0));
			 }
			 final NpcHtmlMessage html = new NpcHtmlMessage(0);
			 html.setFile(getHtmlPath(getNpcId(), 0));
			 html.replace("%objectId%", getObjectId());
			 player.sendPacket(html);
		}

what about this one ?... 

 

You just have to remove 

player.stopAllEffectsExceptThoseThatLastThroughDeath();

In your sets

 

p.s Sweets you didnt answer to Access yet... :D

Edited by melron
Posted (edited)

Client crash probably comes due to too high number of characters in the HTM. That's up to the layout designer to think about it (he added numerous font color and images). If you got a full scheme and switch to a full skills set you probably will end with one.

 

I reworked Tryskell buffer for next revision (363) btw :

  • data is stored on XML rather than complicated config.
  • Paging system, no scrolling needed (and no client crashes possible until you put font and table everywhere).
  • cutted panels amount (2 lesser) to make it easier to use and 20% of core code dissapeared too.
  • Skills got name and description.
  • Oldschool design.
  • No blinking effect for the whole buffer HTMs.

24llb86.jpg 20tmg48.jpg x2o13a.jpg

 

---

 

As free share, you could benefit it when 380 will come.

Edited by Tryskell
Posted
  On 12/10/2016 at 3:45 AM, Detroitas said:

47c355e3657efa4770d8ca691a71b0b3692.jpg

 

I got that, then i'm click Fighter set or Mage set.

Did u add the configs properly in npcs.properties?

  • 3 weeks later...
Posted
  On 12/10/2016 at 5:29 AM, Tryskell said:

Client crash probably comes due to too high number of characters in the HTM. That's up to the layout designer to think about it (he added numerous font color and images). If you got a full scheme and switch to a full skills set you probably will end with one.

 

I reworked Tryskell buffer for next revision (363) btw :

  • data is stored on XML rather than complicated config.
  • Paging system, no scrolling needed (and no client crashes possible until you put font and table everywhere).
  • cutted panels amount (2 lesser) to make it easier to use and 20% of core code dissapeared too.
  • Skills got name and description.
  • Oldschool design.
  • No blinking effect for the whole buffer HTMs.

24llb86.jpg 20tmg48.jpg x2o13a.jpg

 

---

 

As free share, you could benefit it when 380 will come.

waiting.... :D

  • 10 months later...
Posted (edited)
  On 11/29/2017 at 1:46 PM, Benskis said:

Hey. Thanks for code, but I got One question.. What to change if I would like my buffer to cast a spell in dark elf woman's voice?

Expand  

 

It's not achievable editing core side. You have to play with client.

 

If regular sounds can be read, you can also send a playSound packet.

Edited by Tryskell
Posted
  On 11/29/2017 at 2:56 PM, Tryskell said:

 

It's not achievable editing core side. You have to play with client.

 

If regular sounds can be read, you can also send a playSound packet.

Expand  

Umgh. But at the moment I can hear human fighter's voice when npc is casting a skill. So that shouls be at core side, no?

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

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