Jump to content
  • 0

Fix for \n


Question

Posted

Hi all...

 

I'm trying to fix \n words in chat, but it's not working!

 

I tried to insert this line in all ChatHandlers:

 

text.replaceAll("\n", "");

 

And this in Say2.java

_text = _text.replaceAll("\n", "");

 

But \n still works in game

 

Can anyone help me to fix it?  :'(

15 answers to this question

Recommended Posts

  • 0
Posted

That's a client bug.

 

Can be easily fixed just by editing your client. Use your imagination :)

  • 0
Posted

Using "if text == "\n"

won't be efficient, because if a player writes 1\n for example, the message will pass and the new line will appear normaly..

  • 0
Posted

Using "if text == "\n"

won't be efficient, because if a player writes 1\n for example, the message will pass and the new line will appear normaly..

as fakoykas said:

That's a client bug.

 

Can be easily fixed just by editing your client. Use your imagination :)

  • 0
Posted

Hi all...

 

I'm trying to fix \n words in chat, but it's not working!

 

I tried to insert this line in all ChatHandlers:

 

text.replaceAll("\n", "");

 

And this in Say2.java

_text = _text.replaceAll("\n", "");

 

But \n still works in game

 

Can anyone help me to fix it?  :'(

 

Strings are immutable, you cannot modify the string itself, you can just create another one and point it to the same reference so. Your problem has easy fix though, since replaceAll method returns the new string:

 

instead of

text.replaceAll("\n", "");

use

text = text.replaceAll("\n", "");

 

and all your problems are done ;D

  • 0
Posted

Well, the string is already declared in the function

 

Anyway, i tried using text = text.replaceAll("\n", ""); but didn't work

  • 0
Posted

Well, the string is already declared in the function

 

Anyway, i tried using text = text.replaceAll("\n", ""); but didn't work

 

Probably you made a mistake somewhere since code is OK (you made me test it lol :P)

 

Post whole method/classes where you inserted that code

  • 0
Posted

/* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*
* http://www.gnu.org/copyleft/gpl.html
*/
package net.sf.l2j.gameserver.handler.chathandlers;

import net.sf.l2j.Config;
import net.sf.l2j.gameserver.handler.IChatHandler;
import net.sf.l2j.gameserver.model.BlockList;
import net.sf.l2j.gameserver.model.entity.events.FortressSiege;
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
import net.sf.l2j.gameserver.network.SystemChatChannelId;
import net.sf.l2j.gameserver.serverpackets.CreatureSay;

/**
*
* @author  Noctarius
*/
public class ChatAll implements IChatHandler
{
private SystemChatChannelId[] _chatTypes = { SystemChatChannelId.Chat_Normal };

/**
 * @see de.dc.l2j.gameserver.handler.IChatHandler#getChatType()
 */
public SystemChatChannelId[] getChatTypes()
{
	return _chatTypes;
}

/**
 * @see de.dc.l2j.gameserver.handler.IChatHandler#useChatHandler(de.dc.l2j.gameserver.character.player.L2PcInstance, de.dc.l2j.gameserver.network.enums.SystemChatChannelId, java.lang.String)
 */
public void useChatHandler(L2PcInstance activeChar, String target, SystemChatChannelId chatType, String text)
{
        if (text.startsWith("~") && activeChar._inEventFOS && FortressSiege._started){
        	CreatureSay cs = new CreatureSay(activeChar.getObjectId(), 16, activeChar.getName(), text.substring(1));
        	if (FortressSiege._players!=null && !FortressSiege._players.isEmpty()) 
        			for (L2PcInstance player: FortressSiege._players)
        				if (player._teamNameFOS.equals(activeChar._teamNameFOS))
        					player.sendPacket(cs);
        	return;
        }

       text = text.replaceAll("\n", "");
	CreatureSay cs = new CreatureSay(activeChar.getObjectId(), chatType.getId(), activeChar.getName(), text);

	for (L2PcInstance player : activeChar.getKnownList().getKnownPlayers().values())
	{
		if (player != null && activeChar.isInsideRadius(player, 1250, false, true)
			&& !(Config.REGION_CHAT_ALSO_BLOCKED && BlockList.isBlocked(player, activeChar)))
		{
			player.sendPacket(cs);
			player.broadcastSnoop(activeChar.getObjectId(), chatType.getId(), activeChar.getName(), text);
		}
	}
	activeChar.sendPacket(cs);
	activeChar.broadcastSnoop(activeChar.getObjectId(), chatType.getId(), activeChar.getName(), text);
}
}

 

This is ChatAll.java, all other files have the line in the same place (Upper Creature say cs...)

 

I got this fix from L2jArchid trac timeline, it's place upper this there..

  • 0
Posted

But it doesn's =/

 

I tried too :

if(text.contains("\n"){
text = text.replaceAll("\n", "");
}

 

But didn't worked either

  • 0
Posted

Yeah, but it can be used on chats so I wanna block it :/

 

No more suggestions? I'm still trying an ArrayList and using it in Say2.java

 

But it return an error while compiling...look what I did :

 

private ArrayList<String> list = new ArraList<String>();
list.add("\n");


for(String pattern : list)
{
_text = _text.replaceAll(pattern, "");
}

 

But it returns an error in array list and says that I need to use an <interactor> or something like that after de "add"...but I don't know what it really mean :S

 

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 account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • You think you have good “l2j” files until you try running a low-rate server.   Saying “there’s not a single L2 server out there worth mentioning” just shows you probably only know the first 10 servers on voting sites, the same voting sites that owned by them. You call the forum dead, yet you’re here discussing your next projects… From my perspective, you don’t seem ready to run any L2 server in 2025. Around 70% of players are here for RMT or ask for payment just to bring their clan, and you really think the community cares about Premium or donations or files quality? The other 20% spend their time downloading and deleting servers all day, playing for one day, then quitting for whatever random reason. And finally, the last 10% are the only ones who actually play because they genuinely like your features, your server files, and your overall project. Good luck 🙂
    • I genuinely admire your bravery - in an age where AI can whip up something better in under a minute, you still stubbornly try to sell these "projects" of yours on a forum that’s been clinically dead for years. That’s no longer determination, that’s digital archaeology. I just can’t tell whether you’re actually trying to make money, or simply testing how much we can endure before we ask an AI to generate you some actual talent.   And ofc AI will make it for free, $220 saved.
    • I’m glad I’m not the only one who appreciates Maxthor’s involvement in group gay orgies, he can’t be bothered to reply to messages, but covering the entire forum in gay lights is absolutely no issue for him. As for the project - the forum is packed with feedback from the testers, the lads are spending every spare moment fixing even the tiniest typo in an NPC’s text. I’ll share the links as soon as I get the green light. Edit: I forgot to add that the GM recruitment will begin once the links are released. Three people will be accepted, and they’ll work in a three-shift rotation so that there’s always a GM available online.
    • Added: a brand-new default dashboard template. You can now add multiple game/login server builds. Full support for running both PTS & L2J servers simultaneously, with switching between them. Payment systems: added OmegaPay and Pally (new PayPal-style API). Account history now stores everything: donations, items delivered to characters, referrals, transfers between game accounts, and coin transfers to another master account. Personal Promo Code System: you can create a promo code and assign it to a user or promoter. When donating, a player can enter this promo code to receive bonus coins, and the promo code owner also receives a bonus — all fully configurable in the admin panel.     Look demo site: demo
    • One of best project i play last few years
  • 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