Jump to content

Do you want a free retail like only version?  

119 members have voted

  1. 1. Do you want a free retail like only version?

    • Yes!
      95
    • No!
      9
    • Mmm i want customs.. so i don't agree with anything.
      15


Recommended Posts

Posted

ok i chek them 1 time and i see 1 thing reworked from copy paste l2j server

 

first of all open l2character..

 

	/**
 * Exits all buffs effects of the skills with "removedOnAnyAction" set.
 * Called on any action except movement (attack, cast).
 */
public final void stopEffectsOnAction()
{
	_effects.stopEffectsOnAction();
}

 

that code is for Hide skill on action remove effect.. you dont need them for interlude server

 

 

when i will find more i will report them

Posted

well if it was already made, and in sync with the rest of the pack why should i rework all that effect list? doesn't seem logic?

And u do need effect list on interlude, since the other one stacks and also missloops! Dumb ass >.>

 

You can also check the L2Vehicle, thats also a sync from l2jserver, same thing why should anyone spend time recreating smth already made. And also you'll see that the packets used there are interlude ones, sniffed.

 

Also, reporting things like that have no sense, take l2jfree you'll see l2j code there too xD that makes them copy pasters too ? also take a look at the injector prototype system, dose that look like c/p  to you ?

 

Or the Olympiad for that matter, take a look there xD If you see smth ill delete it.Link

Posted

well if it was already made, and in sync with the rest of the pack why should i rework all that effect list? doesn't seem logic?

And u do need effect list on interlude, since the other one stacks and also missloops! Dumb ass >.>

 

Setekh .... this code is used only for Hide skill.. remove them from 1 epil pack and test them.. and check the skill Hide

 

 

	public void stopEffectsOnAction()
{
	if (_hasEffectsRemovedOnAnyAction)
	{
		if (_buffs != null)
		{
			synchronized (_buffs)
			{
				if (!_buffs.isEmpty())
				{
					for (L2Effect e : _buffs)
						if (e != null && e.getSkill().isRemovedOnAnyActionExceptMove())
							e.exit(true);
				}
			}
		}
	}
}

 

for (L2Effect e : _buffs)

if (e != null && e.getSkill().isRemovedOnAnyActionExceptMove()) // go on database hide skill and search that..

e.exit(true);

 

 

<set name="removedOnAnyActionExceptMove" val="true"/> this is on hide skill

 

 

 

 

Posted

well if it was already made, and in sync with the rest of the pack why should i rework all that effect list? doesn't seem logic?

And u do need effect list on interlude, since the other one stacks and also missloops! Dumb ass >.>

 

You can also check the L2Vehicle, thats also a sync from l2jserver, same thing why should anyone spend time recreating smth already made. And also you'll see that the packets used there are interlude ones, sniffed.

 

Also, reporting things like that have no sense, take l2jfree you'll see l2j code there too xD that makes them copy pasters too ? also take a look at the injector prototype system, dose that look like c/p  to you ?

 

Or the Olympiad for that matter, take a look there xD If you see smth ill delete it.

 

i think i have see 1 more time that olympiad i think on some packs la2base.. not the same but is easy to change them.

 

now i report some mistakes i dont start flames or somthing like that but this effect you dont need them is only for hide skill and is true

Posted

i think i have see 1 more time that olympiad i think on some packs la2base.. not the same but is easy to change them.

 

now i report some mistakes i dont start flames or somthing like that but this effect you dont need them is only for hide skill and is true

HAHAHAHAHAHHAHA

 

Dude, do u really listen to yourself? did u actually read what i stated?

Seems not so im gonna repeat myself once more.

 

The effect system got reworked cus it was dirty, thats one factor, a second one will be a thread lock so the thing they did was to create it in its own instance and use that instance to manage the listed effects.

 

Now to the Olympiad matter, thats not the only file, and thats a unique system i coded that myself alone in front of interpid, coyote and psychojr and they can back up my statement.

There is no Olympiad of that kind as you saw i used threads to switch matches states and also i have a dao mysql system, injector system and also an util static class to manage the data lists. Every match gets dummped from the JVM after its finished no waste no nothing! You ain't gonna see cleaner code than that anywhere else! Trust me on that.

 

 

Posted

Setekh .... this code is used only for Hide skill.. remove them from 1 epil pack and test them.. and check the skill Hide

 

 

	public void stopEffectsOnAction()
{
	if (_hasEffectsRemovedOnAnyAction)
	{
		if (_buffs != null)
		{
			synchronized (_buffs)
			{
				if (!_buffs.isEmpty())
				{
					for (L2Effect e : _buffs)
						if (e != null && e.getSkill().isRemovedOnAnyActionExceptMove())
							e.exit(true);
				}
			}
		}
	}
}

 

for (L2Effect e : _buffs)

if (e != null && e.getSkill().isRemovedOnAnyActionExceptMove()) // go on database hide skill and search that..

e.exit(true);

 

 

<set name="removedOnAnyActionExceptMove" val="true"/> this is on hide skill

 

 

 

 

Lets say i missed that, thanks.

(Crappy google shit ><!)

Posted

HAHAHAHAHAHHAHA

 

Dude, do u really listen to yourself? did u actually read what i stated?

Seems not so im gonna repeat myself once more.

 

The effect system got reworked cus it was dirty, thats one factor, a second one will be a thread lock so the thing they did was to create it in its own instance and use that instance to manage the listed effects.

 

Now to the Olympiad matter, thats not the only file, and thats a unique system i coded that myself alone in front of interpid, coyote and psychojr and they can back up my statement.

There is no Olympiad of that kind as you saw i used threads to switch matches states and also i have a dao mysql system, injector system and also an util static class to manage the data lists. Every match gets dummped from the JVM after its finished no waste no nothing! You ain't gonna see cleaner code than that anywhere else! Trust me on that.

 

 

ok so forget the olympiad i speak now for the effect you dont need them, is on Call skill

 

 

Hide skill :

Hides the user. Movement speed is decreased by 30%, and the effect is canceled if any action other than movement is initiated.

 

private void beginCast(L2Skill skill, boolean simultaneously)
{
	if (!checkDoCastConditions(skill))
	{
		if (simultaneously)
			setIsCastingSimultaneouslyNow(false);
		else
			setIsCastingNow(false);
		if (this instanceof L2Player)
		{
			getAI().setIntention(AI_INTENTION_ACTIVE);
		}
		return;
	}

	// Can't use Hero and resurrect skills during Olympiad
	if (this instanceof L2Player && ((L2Player) this).inOlyAndActive() && (skill.isHeroSkill() || skill.getSkillType() == L2SkillType.RESURRECT))
	{
		SystemMessage sm = new SystemMessage(SystemMessageId.THIS_SKILL_IS_NOT_AVAILABLE_FOR_THE_OLYMPIAD_EVENT);
		sendPacket(sm);
		return;
	}

	stopEffectsOnAction();   // here on action ..

//bla bla bla

 

 

protected void doAttack(L2Character target)
{
	if (Config.DEBUG)
		_log.fine(getName() + " doAttack: target=" + target);

	if (isAlikeDead() || target == null || (this instanceof L2Npc && target.isAlikeDead()) || (this instanceof L2Player && target.isDead() && !target.isFakeDeath()) || !getKnownList().knowsObject(target) || (this instanceof L2Player && isDead()) || (target instanceof L2Player && ((L2Player) target).getDuelState() == Duel.DUELSTATE_DEAD))
	{
		// If L2Player is dead or the target is dead, the action is stoped
		getAI().setIntention(CtrlIntention.AI_INTENTION_ACTIVE);

		sendPacket(new ActionFailed());
		return;
	}

	if (isAttackingDisabled())
		return;

	if (this instanceof L2Player && target instanceof L2Player)
	{
		L2Player activeChar = getActingPlayer();
		L2Player targ = target.getActingPlayer();

		if (activeChar.inObserverMode())
		{
			sendPacket(new SystemMessage(SystemMessageId.OBSERVERS_CANNOT_PARTICIPATE));
			sendPacket(new ActionFailed());
			return;
		}

		if (activeChar.isCursedWeaponEquiped() && targ.getLevel() <= 20)
		{
			activeChar.sendMessage("Can't attack a newbie player using a cursed weapon.");
			sendPacket(new ActionFailed());
			return;
		}
	}

	stopEffectsOnAction();   // here on do Cast 1 skill ..
//bla bla bla

 

 

explain me now why is in there? that is from l2jarchid..

 

Posted

btw i have see them again that com.l2jarchid.gameserver.model.actor.L2Player; in another pack i will remember them

 

 

 

you have 1 more mistake on serverpackets of Vehicle if you need my infos pm and is 100% wrong :) because i have work on them

Posted

btw i have see them again that com.l2jarchid.gameserver.model.actor.L2Player; in another pack i will remember them

 

 

 

you have 1 more mistake on serverpackets of Vehicle if you need my infos pm and is 100% wrong :) because i have work on them

Dream

Posted

btw seth... dataholders are from Aion java emulator?:P

 

no from space ; D serk now pack is really shitty ;) 10 minuts of tests and find xxx errors and bugs ;P if you delete customs be shure you do it correct... And you know something about warrnings ;)? check out archid is alike 100+ ;O

Posted

btw i have see them again that com.l2jarchid.gameserver.model.actor.L2Player; in another pack i will remember them

 

 

 

you have 1 more mistake on serverpackets of Vehicle if you need my infos pm and is 100% wrong :) because i have work on them

thats a refactor to l2player, cus its not instanceable via a spawn method also "player" syntax is easyer to use.

the dataholder folder means a marshaler that parse/stores the data from a xml file(See olympiad or events), much like datatables. The thing is i dont use google guice, i use my own injection and marshaler system.

 

About that effect code that shouldn't be there will be removed, i synced blindly.

And about the packets your wrong. ^^ And take a look see in my serverpacket folder, ull find it quite interesting.

 

Guest
This topic is now closed to further replies.



  • Posts

    • I was looking for  server with a low rates,eventually i found l2 elixir.I Joined beta and after so many years since 2008 i found  a friend that we played together, memories came back. i cant wait for the grand oppening!. dont miss it!
    • Seems legit, for sure deserves a try!
    • SOCNET VERIFICATION SERVICE — is a universal solution for those who value security, convenience, and quality. We turn the verification process into a convenient, fast, and highly confidential experience. Thanks to our service, any of your accounts receive identity confirmation, an increased level of trust from platforms and users, as well as protection from bans, fraud, and risks.   Promotion: Pay for your first verification and get a 10% discount on the second one! 💎 We help with verification on Fragment, crypto exchanges ByBit, Gate, Bitget, OKX, Binance, PayPal, KuCoin, and social networks LinkedIn, Facebook, Instagram, Twitter (X) and many other platforms! 💎 Verification for any service: crypto exchanges, trading platforms, hosting providers, casinos and other websites. Why choose us:   Premium quality — we use the most advanced verification methods. High processing speed — accelerated verification on leading platforms, online services and social networks. Full confidentiality — your personal information is protected. Increased trust and status — a verified account boosts influence and improves conversion. Individual approach — we work with bloggers, brands, businesses, and private clients. Simplifying complexity — we handle issues when dealing with foreign services. Important! Services related to illegal activities are strictly prohibited! 💳 Service pricing   ✅ Verification of individuals — from $30 (the exact cost depends on the required location and service/app/website). Learn more 👨‍💼 The cost of business verification for companies or legal entities is discussed individually with the service administration. Learn more If you want us to register your account on the required service and verify it — you will need to additionally pay 10% of the transaction amount. Available payment methods: cryptocurrency, credit cards, PayPal, and other payment methods in our online store and Telegram bot.   ⭐ Our Online Store ⭐ SOCNET.STORE ⭐ Telegram Store ⭐ SOCNET.SHOP ⭐ Our SMS Service ⭐ SOCNET.APP ⭐ Our Telegram Bot for buying Telegram Stars ⭐ SOCNET.CC ⭐ Our SMM Panel ⭐ SOCNET.PRO   ✅ News Resources ➡ Telegram Channel ➡ WhatsApp Channel ➡ Discord Server     ⭐ We invite you to COOPERATE and EARN with us ⭐ Would you like to sell your product or service in our stores and earn money? Become our partner or offer mutually beneficial collaboration? You can contact us via the CONTACTS listed in this topic. ✅ Contacts & Support ➡ Telegram Support ➡ WhatsApp Support ➡ Discord Support: socnet_support ➡ Email Support: solomonbog@socnet.store   Terms of Use and Refund Policy If you have any questions or issues, our fast support service is ready to respond to your requests! A refund for a completed service that does not fully meet the requirements or the declared quality is possible only if the product description includes a warranty and a valid warranty period. In other cases, a full refund for the service will not be provided! By purchasing such a service, you automatically agree to our refund rules for non-provided services! Refunds for countries selected by mistake are not provided after verification. To complete verification, you must provide full access to your account. We currently accept cryptocurrency, credit cards, PayPal, and other payment methods in our online store and Telegram bot! We value every client and provide replacements in case of invalid accounts via our contact channels! Attention: Your order will be delivered to your personal Google Drive/Mega.nz via a link (check the link, click “View content”) within 24 hours after the order confirmation! If you purchased more than 1 item at once, your entire order will be delivered via the first link! The remaining links will be empty! You will automatically receive an email notification after delivery! If you pay on our website via PayPal, you must pay an additional 20% commission (minimum $1). To avoid this commission, you can pay me directly via PayPal — instructions are available on the website! Refunds for items purchased by mistake or due to “I chose the wrong product and did not use it” are not accepted! You are fully responsible for your actions before and after purchase.
    • SOCNET VERIFICATION SERVICE — is a universal solution for those who value security, convenience, and quality. We turn the verification process into a convenient, fast, and highly confidential experience. Thanks to our service, any of your accounts receive identity confirmation, an increased level of trust from platforms and users, as well as protection from bans, fraud, and risks.   Promotion: Pay for your first verification and get a 10% discount on the second one! 💎 We help with verification on Fragment, crypto exchanges ByBit, Gate, Bitget, OKX, Binance, PayPal, KuCoin, and social networks LinkedIn, Facebook, Instagram, Twitter (X) and many other platforms! 💎 Verification for any service: crypto exchanges, trading platforms, hosting providers, casinos and other websites. Why choose us:   Premium quality — we use the most advanced verification methods. High processing speed — accelerated verification on leading platforms, online services and social networks. Full confidentiality — your personal information is protected. Increased trust and status — a verified account boosts influence and improves conversion. Individual approach — we work with bloggers, brands, businesses, and private clients. Simplifying complexity — we handle issues when dealing with foreign services. Important! Services related to illegal activities are strictly prohibited! 💳 Service pricing   ✅ Verification of individuals — from $30 (the exact cost depends on the required location and service/app/website). Learn more 👨‍💼 The cost of business verification for companies or legal entities is discussed individually with the service administration. Learn more If you want us to register your account on the required service and verify it — you will need to additionally pay 10% of the transaction amount. Available payment methods: cryptocurrency, credit cards, PayPal, and other payment methods in our online store and Telegram bot.   ⭐ Our Online Store ⭐ SOCNET.STORE ⭐ Telegram Store ⭐ SOCNET.SHOP ⭐ Our SMS Service ⭐ SOCNET.APP ⭐ Our Telegram Bot for buying Telegram Stars ⭐ SOCNET.CC ⭐ Our SMM Panel ⭐ SOCNET.PRO   ✅ News Resources ➡ Telegram Channel ➡ WhatsApp Channel ➡ Discord Server     ⭐ We invite you to COOPERATE and EARN with us ⭐ Would you like to sell your product or service in our stores and earn money? Become our partner or offer mutually beneficial collaboration? You can contact us via the CONTACTS listed in this topic. ✅ Contacts & Support ➡ Telegram Support ➡ WhatsApp Support ➡ Discord Support: socnet_support ➡ Email Support: solomonbog@socnet.store   Terms of Use and Refund Policy If you have any questions or issues, our fast support service is ready to respond to your requests! A refund for a completed service that does not fully meet the requirements or the declared quality is possible only if the product description includes a warranty and a valid warranty period. In other cases, a full refund for the service will not be provided! By purchasing such a service, you automatically agree to our refund rules for non-provided services! Refunds for countries selected by mistake are not provided after verification. To complete verification, you must provide full access to your account. We currently accept cryptocurrency, credit cards, PayPal, and other payment methods in our online store and Telegram bot! We value every client and provide replacements in case of invalid accounts via our contact channels! Attention: Your order will be delivered to your personal Google Drive/Mega.nz via a link (check the link, click “View content”) within 24 hours after the order confirmation! If you purchased more than 1 item at once, your entire order will be delivered via the first link! The remaining links will be empty! You will automatically receive an email notification after delivery! If you pay on our website via PayPal, you must pay an additional 20% commission (minimum $1). To avoid this commission, you can pay me directly via PayPal — instructions are available on the website! Refunds for items purchased by mistake or due to “I chose the wrong product and did not use it” are not accepted! You are fully responsible for your actions before and after purchase.
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock