Jump to content

Recommended Posts

Posted

Alright, I'm sure you all seen Rizel's share on how to Forbid to equip some kind of items. Well don't take me wrong Rizel, it was a good share, but a certain forum user requested me to make something smarter and much faster. So I did, its a simple change, the code is pretty simple and clean - thats whats so good about it.

So here's an example of the code:

 

int _noLightlist[] = {93 ,108,101};
int _noHeavylist[] = {94 };
int _noRobeList[] = { 98 };

if(item.getItemType() == L2ArmorType.LIGHT)
		for(int i =0; i < _noLightlist.length ; i++)
		{
			if(activeChar.getActiveClass() == _noLightlist[i])
			{
				SystemMessage sm = new SystemMessage(SystemMessageId.S1_CANNOT_BE_USED);
				sm.addItemName(item);
				getClient().getActiveChar().sendPacket(sm);
				sm = null;
				return;
			}
			continue;
		}
if(item.getItemType() == L2ArmorType.HEAVY)
		for(int i =0; i < _noLightlist.length ; i++)
		{
			if(activeChar.getActiveClass() == _noHeavytlist[i])
			{
				SystemMessage sm = new SystemMessage(SystemMessageId.S1_CANNOT_BE_USED);
				sm.addItemName(item);
				getClient().getActiveChar().sendPacket(sm);
				sm = null;
				return;
			}
			continue;
		}
if(item.getItemType() == L2ArmorType.ROBE)
		for(int i =0; i < _noRobelist.length ; i++)
		{
			if(activeChar.getActiveClass() == _noLightlist[i])
			{
				SystemMessage sm = new SystemMessage(SystemMessageId.S1_CANNOT_BE_USED);
				sm.addItemName(item);
				getClient().getActiveChar().sendPacket(sm);
				sm = null;
				return;
			}
			continue;
		}

 

It only requires 5 minutes of your time and works like a charm (I hope, I didn't actually test it lool).

Just insert the class's Index on the array and you're off.

 

Well Stef just suggested I made something like if a Dagger user wears a Heavy Armor, he would get a penalty (Skill Effect) and a big head.

The Skill level deppends on wether the character is above or below level 40 (to make sure that the penalty isn't too big) and the Skill ,obviously, deppends on whether the Character is a Mage or not (Different penalties for Mages & Fighters).

So here it is:

int _daggerPenalty[] = { 78 } ;

if(item.getItemType() == L2WeaponrType.DAGGER)
		for(int i =0; i < _daggerPenalty.length ; i++)
		{
			if(activeChar.getActiveClass() == _daggerPenalty[i])
			{
                                activeChar.startAbnormalEffect(L2Character.ABNORMAL_EFFECT_BIG_HEAD); // give player a Big Head
			// lets recycle the sevensigns debuffs
			int skillId;

			int skillLevel = 1;

			if (activeChar.getLevel() > 40)
				skillLevel = 2;

			if (activeChar.isMageClass())
				skillId = 4361;
			else
				skillId = 4362;

			L2Skill skill = SkillTable.getInstance().getInfo(skillId, skillLevel);

			if (activeChar.getFirstEffect(skill) == null)
			{
				skill.getEffects(activeChar, activeChar);
				SystemMessage sm = new SystemMessage(SystemMessageId.YOU_FEEL_S1_EFFECT);
				sm.addSkillName(skill);
				activeChar.sendPacket(sm);
			}
			}
			continue;
		}

In case you haven't noticed the base is always the same, you just have to spread wings to your imagination.

Posted

loool xD

 

that's it.

 

great code mate.

thanx

Shut and start reworking ActionFailed lool.

Btw for your Oly thingie, check L2GameClient and just modify the protected void onForcedDisconnection().

Posted

Lool..

 

Tha'ts great code indeed .. Ex we can say that , TH cannot use heavy?Holy damn that sure will help ..

lool of course. Just modify it to suit your needs, you can do it with armors, weapons, jewels, accessories ,etc.

Or use it to make other restrictions such as skill using, pvp diminishing, and so on. Use your imagination.

Posted

Shut and start reworking ActionFailed lool.

LOOOOOOOL! u shut , and go code!

 

Btw for your Oly thingie, check L2GameClient and just modify the protected void onForcedDisconnection().

 

Okay Thanx.

 

 

Posted

LOOOOOOOL! u shut , and go code!

 

Okay Thanx.

 

 

Oh and I added that Penalty thing you asked.

Should work, I didn't test it but it all makes sense ^^

Posted

the first example so it resstrict all class'es masterity right? i mean who dont have light  masterity can use light? or i am wrong?

Wrong.

In the first example, you have the ability to prevent certain CLASSES (Doesn't deppend on their mastery) to use a certain type of armors.

You can use it on armors,weapons, jewels, skills ,npcs and pretty much everything that exists in the L2 World lool.

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