Jump to content
  • 0

Python script Help me please


Question

Posted

Hi MX members, i have a problem with the russian characters. I've a "change name" script as .py (python) file. Please tell me how can allow only English alphabetic chars? I need that code. Thank big!

Recommended Posts

  • 0
Posted
2 hours ago, dev951 said:

Hi MX members, i have a problem with the russian characters. I've a "change name" script as .py (python) file. Please tell me how can allow only English alphabetic chars? I need that code. Thank big!

3 mistakes only by 1 post you made.

 

1. It's [GR] section yet you write in ENG (you didn't bother check where you post)

2. You don't provide any information about your project so i guess you think we developed telepathy

3. Why in almost 2020 are you using .py files? Is your problem that ancient?

 

Post your question properly (and in the right section) and you'll get your answer 

  • Haha 1
  • 0
Posted
8 hours ago, Zake said:

Pack/client?

Lucera 2 1.7  İnterlude

7 hours ago, Kara said:

3 mistakes only by 1 post you made.

 

1. It's [GR] section yet you write in ENG (you didn't bother check where you post)

2. You don't provide any information about your project so i guess you think we developed telepathy

3. Why in almost 2020 are you using .py files? Is your problem that ancient?

 

Post your question properly (and in the right section) and you'll get your answer 

Relax..

  • 0
Posted (edited)

@Karanext time I will see you off-topic telling that it is at wrong section or any irony you will be warned you are just spamming and not helping at all. If you want to report someone who is breaking the rules you can report it directly to me or, anyone from the staff or, use the Report Section. There are times you are really helping and times that you do this stop it it doesn't helping anyone at all. And don't even dare to answer me on this one because you know that I'm right.

 

Moved to the right section.

 

Peace ✌️

Edited by Vision
  • 0
Posted
1 hour ago, Vision said:

@Karanext time I will see you off-topic telling that it is at wrong section or any irony you will be warned you are just spamming and not helping at all. If you want to report someone who is breaking the rules you can report it directly to me or, anyone from the staff or, use the Report Section. There are times you are really helping and times that you do this stop it it doesn't helping anyone at all. And don't even dare to answer me on this one because you know that I'm right.

 

Moved to the right section.

 

Peace ✌️

Agree with you! Thanks!

On 8/16/2021 at 6:31 PM, Zake said:

Pack/client?

You here?

  • 0
Posted
7 hours ago, dev951 said:

Write that code before "import sys"? At beginning?

-     elif nick.startswith("[ADM]") or nick.startswith("[GM]") or nick.startswith("[EGM]") or nick.startswith ("[HGM]") or nick.startswith("[DL]") or nick.startswith("-") or nick.startswith("<"):
+     elif nick.startswith("[ADM]") or nick.startswith("[GM]") or nick.startswith("[EGM]") or nick.startswith ("[HGM]") or nick.startswith("[DL]") or nick.startswith("-") or nick.startswith("<") or not nick.encode().isalpha():

 

  • Upvote 1
  • 0
Posted
10 minutes ago, melron said:
-     elif nick.startswith("[ADM]") or nick.startswith("[GM]") or nick.startswith("[EGM]") or nick.startswith ("[HGM]") or nick.startswith("[DL]") or nick.startswith("-") or nick.startswith("<"):
+     elif nick.startswith("[ADM]") or nick.startswith("[GM]") or nick.startswith("[EGM]") or nick.startswith ("[HGM]") or nick.startswith("[DL]") or nick.startswith("-") or nick.startswith("<") or not nick.encode().isalpha():

 

GS launched any error and warning i now check it in game and reply you

  • 0
Posted
9 minutes ago, melron said:
-     elif nick.startswith("[ADM]") or nick.startswith("[GM]") or nick.startswith("[EGM]") or nick.startswith ("[HGM]") or nick.startswith("[DL]") or nick.startswith("-") or nick.startswith("<"):
+     elif nick.startswith("[ADM]") or nick.startswith("[GM]") or nick.startswith("[EGM]") or nick.startswith ("[HGM]") or nick.startswith("[DL]") or nick.startswith("-") or nick.startswith("<") or not nick.encode().isalpha():

 

++

Also you might have to check for new name size, and if it's already taken. Rewriting this using java would make you happier imho.

  • 0
Posted
7 minutes ago, Zake said:

++

Also you might have to check for new name size, and if it's already taken. Rewriting this using java would make you happier imho.

Understand sir, i check it now what you sayed me.

24 minutes ago, melron said:
-     elif nick.startswith("[ADM]") or nick.startswith("[GM]") or nick.startswith("[EGM]") or nick.startswith ("[HGM]") or nick.startswith("[DL]") or nick.startswith("-") or nick.startswith("<"):
+     elif nick.startswith("[ADM]") or nick.startswith("[GM]") or nick.startswith("[EGM]") or nick.startswith ("[HGM]") or nick.startswith("[DL]") or nick.startswith("-") or nick.startswith("<") or not nick.encode().isalpha():

 

Game Server gave error why i try to make russian name in game 

  File "__init__.py", line 45, in onAdvEvent
UnicodeError: ascii encoding error: ordinal not in range(128)

	at org.python.core.Py.UnicodeError(Unknown Source)
	at org.python.core.codecs.encoding_error(Unknown Source)
	at org.python.core.codecs.PyUnicode_EncodeASCII(Unknown Source)
	at org.python.core.codecs.encode(Unknown Source)
	at org.python.core.PyString.str_encode(Unknown Source)
	at org.python.core.PyString.str_encode(Unknown Source)
	at org.python.core.PyString$1exposed_encode.__call__(Unknown Source)
	at org.python.core.PyObject.invoke(Unknown Source)
	at org.python.pycode.serializable._pyx1629401122628.onAdvEvent$3(__init__.py:45)
	at org.python.pycode.serializable._pyx1629401122628.call_function(__init__.py)
	at org.python.core.PyTableCode.call(Unknown Source)
	at org.python.core.PyTableCode.call(Unknown Source)
	at org.python.core.PyTableCode.call(Unknown Source)
	at org.python.core.PyFunction.__call__(Unknown Source)
	at org.python.core.PyMethod.__call__(Unknown Source)
	at org.python.core.PyObject.__call__(Unknown Source)
	at org.python.core.PyObject._jcallexc(Unknown Source)
	at org.python.core.PyObject._jcall(Unknown Source)
	at org.python.proxies.main$Quest$2.onAdvEvent(Unknown Source)
	at ru.catssoftware.gameserver.model.quest.Quest.notifyEvent(Unknown Source)
	at ru.catssoftware.gameserver.model.actor.instance.L2PcInstance.processQuestEvent(Unknown Source)
	at ru.catssoftware.gameserver.network.clientpackets.RequestBypassToServer.runImpl(Unknown Source)
	at ru.catssoftware.gameserver.network.clientpackets.L2GameClientPacket.run(Unknown Source)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
	at java.lang.Thread.run(Unknown Source)

 

28 minutes ago, Zake said:

++

Also you might have to check for new name size, and if it's already taken. Rewriting this using java would make you happier imho.

 

21 minutes ago, dev951 said:

Understand sir, i check it now what you sayed me.

Game Server gave error why i try to make russian name in game 

  File "__init__.py", line 45, in onAdvEvent
UnicodeError: ascii encoding error: ordinal not in range(128)

	at org.python.core.Py.UnicodeError(Unknown Source)
	at org.python.core.codecs.encoding_error(Unknown Source)
	at org.python.core.codecs.PyUnicode_EncodeASCII(Unknown Source)
	at org.python.core.codecs.encode(Unknown Source)
	at org.python.core.PyString.str_encode(Unknown Source)
	at org.python.core.PyString.str_encode(Unknown Source)
	at org.python.core.PyString$1exposed_encode.__call__(Unknown Source)
	at org.python.core.PyObject.invoke(Unknown Source)
	at org.python.pycode.serializable._pyx1629401122628.onAdvEvent$3(__init__.py:45)
	at org.python.pycode.serializable._pyx1629401122628.call_function(__init__.py)
	at org.python.core.PyTableCode.call(Unknown Source)
	at org.python.core.PyTableCode.call(Unknown Source)
	at org.python.core.PyTableCode.call(Unknown Source)
	at org.python.core.PyFunction.__call__(Unknown Source)
	at org.python.core.PyMethod.__call__(Unknown Source)
	at org.python.core.PyObject.__call__(Unknown Source)
	at org.python.core.PyObject._jcallexc(Unknown Source)
	at org.python.core.PyObject._jcall(Unknown Source)
	at org.python.proxies.main$Quest$2.onAdvEvent(Unknown Source)
	at ru.catssoftware.gameserver.model.quest.Quest.notifyEvent(Unknown Source)
	at ru.catssoftware.gameserver.model.actor.instance.L2PcInstance.processQuestEvent(Unknown Source)
	at ru.catssoftware.gameserver.network.clientpackets.RequestBypassToServer.runImpl(Unknown Source)
	at ru.catssoftware.gameserver.network.clientpackets.L2GameClientPacket.run(Unknown Source)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
	at java.lang.Thread.run(Unknown Source)

 

Please see that sir

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
Answer this question...

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



  • Posts

    • 📜 • Mass PVP – Craft – Progressive Server (ITEMS, ARMOR, WEAPONS, ETC) 🕹️ • Chronicles: Lineage 2 - Interlude (C6) 🛠️ • Retail status 🕒 • Server Time: GMT -3 🏙️ • Main Town: Giran ✨ • Teleportation for all Towns, Gk Global 🛡️ • NPC BUFFER - GMSHOP B-GRADE - DONATION SHOP - AUCTION MANAGER 🐉 • Epic Bosses: Chaotic Zones 🔁 • Protection respawn: 15 seconds ⏰ • Restart Server: 05:00 AM Today 💸 • RTM allowed between players (ask Staff if in doubt) 📊 SERVER RATES: • EXP: x8 • SP: x10 • Adena: x3 • Seal Stone: x3 • Drop: x3 • Spoil: x5 • Raid EXP/SP/Drop: x3 • Premium Rates: x2 🌐 Website: https://www.l2roosters.com 💬 Discord: https://discord.gg/cUyYXrfy 🔥 Join us now and forge your legacy at Roosters Gaming!
    • Hello, lovely people, how are you? I just finished compiling the L2jFrozen project Rev: 1132 (very old). I don't mind it being too old, since the project is for me and my children. (LAN/Offline) it's not meant to be put online. I want to learn and give my children more comfort when playing. And for my part, I also experiment with the game. My problem is that I don't know much about the subject. I was able to make some basic configurations to my liking and that of my children, but it never compiles or anything like that... I would really need help from you, the community... I simply want to remove all subclass restrictions, remove the restriction on "Overlord, Warsmith, and Dark Elf subclasses with White Elves and vice versa." Thank you very much in advance! Greetings, community.
    • Warriors, prepare for a new era! We are pleased to announce that on July 12, with the morning restart, Airin will be updated to Chronicle 4: Scions of Destiny. - Open Beta Testing (OBT) will begin on July 9. Everyone will be able to test the update in advance, including class mechanics, quests, and new content. - The Clan Hall Auction will take place on July 13. We’ve also prepared a traditional bonus start - details will be shared in the coming days. The full list of changes is available in the official patch notes. Thank you for your support and participation in the project. See you in Chronicle 4! The game client download will be available soon.
    • We are taking new orders. Kindly DM us on Telegram!
  • 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