Hello friends, I have a problem about sending party to a fakeplayer, I am sending it and java recognizes the fake as target null "if (target == null)".
However, fake receives trade normally, and the trade uses the same party code, I will make available the party and trade code below.
I used the "+" to show where the code stops, identifying the target as nullo, however it should go to the end and send the invite to fake equal the trade.
RequestJoinParty.java (acis374)
Spoiler
package net.sf.l2j.gameserver.network.clientpackets;import net.sf.l2j.gameserver.events.teamvsteam.TvTEvent;import net.sf.l2j.gameserver.model.BlockList;import net.sf.l2j.gameserver.model.World;import net.sf.l2j.gameserver.model.actor.instance.Player;import net.sf.l2j.gameserver.model.group.Party;import net.sf.l2j.gameserver.model.group.Party.LootRule;import net.sf.l2j.gameserver.model.zone.ZoneId;import net.sf.l2j.gameserver.network.SystemMessageId;import net.sf.l2j.gameserver.network.serverpackets.AskJoinParty;import net.sf.l2j.gameserver.network.serverpackets.SystemMessage;public final classRequestJoinParty extends L2GameClientPacket
{privateString _name;privateint _itemDistribution;@Overrideprotectedvoid readImpl(){
_name = readS();
_itemDistribution = readD();}@Overrideprotectedvoid runImpl(){
final Player requestor = getClient().getActiveChar();if(requestor ==null)return;
final Player target =World.getInstance().getPlayer(_name);+if(target ==null||!requestor.getKnownType(Player.class).contains(target)|| target.equals(requestor))+{+ requestor.sendMessage("This is incorrect target or is in refusal mode.");+return;+}if(BlockList.isBlocked(target, requestor)){
requestor.sendMessage("This is incorrect target or is in refusal mode.");return;}if((target.equals(requestor))||(target.isCursedWeaponEquipped())||(requestor.isCursedWeaponEquipped())||((target.getAppearance().getInvisible())&&(!target.isInsideZone(ZoneId.TOURNAMENT))&&(!target.isGM()))){
requestor.sendPacket(SystemMessageId.YOU_HAVE_INVITED_THE_WRONG_TARGET);return;}if(target.isPartyInRefuse()){
requestor.sendMessage("This is incorrect target or is in refusal mode.");return;}if(target.isInParty()){
requestor.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.S1_IS_ALREADY_IN_PARTY).addCharName(target));return;}if(TvTEvent.isPlayerParticipant(target.getObjectId())){
requestor.sendPacket(SystemMessageId.YOU_HAVE_INVITED_THE_WRONG_TARGET);return;}if(target.getClient().isDetached()){
requestor.sendMessage("The player you tried to invite is in offline mode.");return;}if(target.isInJail()|| requestor.isInJail()){
requestor.sendMessage("The player you tried to invite is currently jailed.");return;}if(target.isInOlympiadMode()|| requestor.isInOlympiadMode())return;if(requestor.isProcessingRequest()){
requestor.sendPacket(SystemMessageId.WAITING_FOR_ANOTHER_REPLY);return;}if(target.isProcessingRequest()){
requestor.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.S1_IS_BUSY_TRY_LATER).addCharName(target));return;}
final Party party = requestor.getParty();if(party !=null){if(!party.isLeader(requestor)){
requestor.sendPacket(SystemMessageId.ONLY_LEADER_CAN_INVITE);return;}if(party.getMembersCount()>=9){
requestor.sendPacket(SystemMessageId.PARTY_FULL);return;}if(party.getPendingInvitation()&&!party.isInvitationRequestExpired()){
requestor.sendPacket(SystemMessageId.WAITING_FOR_ANOTHER_REPLY);return;}
party.setPendingInvitation(true);}else
requestor.setLootRule(LootRule.VALUES[_itemDistribution]);
requestor.onTransactionRequest(target);
requestor.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.YOU_INVITED_S1_TO_PARTY).addCharName(target));
target.sendPacket(newAskJoinParty(requestor.getName(),(party !=null)? party.getLootRule().ordinal(): _itemDistribution));}}
TradeRequest.java(acis 374)
Spoiler
package net.sf.l2j.gameserver.network.clientpackets;import net.sf.l2j.commons.math.MathUtil;import net.sf.l2j.Config;import net.sf.l2j.gameserver.model.BlockList;import net.sf.l2j.gameserver.model.World;import net.sf.l2j.gameserver.model.actor.Npc;import net.sf.l2j.gameserver.model.actor.instance.Player;import net.sf.l2j.gameserver.network.SystemMessageId;import net.sf.l2j.gameserver.network.serverpackets.SendTradeRequest;import net.sf.l2j.gameserver.network.serverpackets.SystemMessage;public final classTradeRequest extends L2GameClientPacket
{privateint _objectId;@Overrideprotectedvoid readImpl(){
_objectId = readD();}@Overrideprotectedvoid runImpl(){
final Player player = getClient().getActiveChar();if(player ==null)return;if(!player.getAccessLevel().allowTransaction()){
player.sendPacket(SystemMessageId.YOU_ARE_NOT_AUTHORIZED_TO_DO_THAT);return;}
final Player target =World.getInstance().getPlayer(_objectId);+if(target ==null||!player.getKnownType(Player.class).contains(target)|| target.equals(player))+{+ player.sendPacket(SystemMessageId.TARGET_IS_INCORRECT);+return;+}if(player.isSubmitingPin()){
player.sendMessage("Unable to do any action while PIN is not submitted");return;}if(target.isInOlympiadMode()|| player.isInOlympiadMode()){
player.sendMessage("You or your target cannot trade during Olympiad.");return;}if(target.isInCombat()|| player.isInCombat()){
player.sendMessage("You or your target can't trade in Combat.");return;}if(target.isInCombat()|| player.isInCombat()){
player.sendMessage("You or your target can't trade in Combat.");return;}// Alt game - Karma punishmentif(!Config.KARMA_PLAYER_CAN_TRADE &&(player.getKarma()>0|| target.getKarma()>0)){
player.sendMessage("You cannot trade in a chaotic state.");return;}if(player.isInStoreMode()|| target.isInStoreMode()){
player.sendPacket(SystemMessageId.CANNOT_TRADE_DISCARD_DROP_ITEM_WHILE_IN_SHOPMODE);return;}if(player.isProcessingTransaction()){
player.sendPacket(SystemMessageId.ALREADY_TRADING);return;}if(target.isProcessingRequest()|| target.isProcessingTransaction()){SystemMessage sm =SystemMessage.getSystemMessage(SystemMessageId.S1_IS_BUSY_TRY_LATER).addCharName(target);
player.sendPacket(sm);return;}if(target.getTradeRefusal()){
player.sendMessage("This is incorrect target or is in refusal mode.");return;}if(BlockList.isBlocked(target, player)){SystemMessage sm =SystemMessage.getSystemMessage(SystemMessageId.S1_HAS_ADDED_YOU_TO_IGNORE_LIST).addCharName(target);
player.sendPacket(sm);return;}if(MathUtil.calculateDistance(player, target,true)>Npc.INTERACTION_DISTANCE){
player.sendPacket(SystemMessageId.TARGET_TOO_FAR);return;}
player.onTransactionRequest(target);
target.sendPacket(newSendTradeRequest(player.getObjectId()));
player.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.REQUEST_S1_FOR_TRADE).addCharName(target));}}
Dear partners! At the moment we are in great need of the following positions:
— Snapchat old and new accounts | With snapscores | Geo: Europe/USA | Full access via email/phone number
— Reddit old (brute or hacked origin, self-registered) accounts with post and comment karma from 100 to 100,000+ | Full email access included
— LinkedIn old accounts with real connections | Geo: Europe/USA | Full email access + active 2FA password
— Instagram old accounts (2010–2023) | Full email access (possibly with active 2FA password)
— Facebook old accounts (2010–2023) | Full email access (possibly with active 2FA password) | With friends or without friends | Geo: Europe/USA/Asia
— Threads accounts | Full email access (possibly with active 2FA password)
— TikTok/Facebook/Google ADS Agency advertising accounts
— Email accounts: mail.ru, yahoo.com, gazeta.pl, gmx.ch / gmx.de / gmx.net (BUT NOT gmx.com)
— Google ADS Manual Farm accounts (verified via email and phone number) | GEO: USA/Europe, mostly USA.
— WhatsApp OLD Accounts
— Twitter accounts with followers and posts (old accounts)
Contact us via the details below. We will be glad to cooperate! We are also ready to consider other partnership and collaboration options.
Active links to our projects:
Digital goods store (Website): Go to
Store Telegram bot: Go to – convenient access to the store via the Telegram messenger.
Virtual numbers service: Go to
Telegram bot for purchasing Telegram Stars: Go to – fast and profitable purchase of Stars in Telegram.
SMM Panel: Go to – promotion of your social media accounts.
Contacts and support:
➡ Telegram: https://t.me/socnet_support
➡ WhatsApp: https://wa.me/79051904467
➡ Discord: socnet_support
➡ ✉ Email: solomonbog@socnet.store
Question
N0K3
Hello friends, I have a problem about sending party to a fakeplayer, I am sending it and java recognizes the fake as target null "if (target == null)".
However, fake receives trade normally, and the trade uses the same party code, I will make available the party and trade code below.
I used the "+" to show where the code stops, identifying the target as nullo, however it should go to the end and send the invite to fake equal the trade.
RequestJoinParty.java (acis374)
TradeRequest.java(acis 374)
Text generated by google translate.
3 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now