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

    • My official facebook profile!: https://www.facebook.com/spectrumL2 Specifications: Revamped L2JACIS revision FROM the core Private project!!! Revision that has been receiving corrections for over 3 years!!! Events already installed in the revision: TVT CTF KTB PARTY FARM SPOIL EVENT CRAZY RATES TOURNAMENT TIME ZONE (INSTANCE) All working correctly!!! SIEGE ESSENTIAL FEATURES: Walls fix Gates fix Flags fix 100% functional: OLYMPIADS: Implemented settings Hero receives enchanted Weapons with equal status PvP Weapons Optional /true/false Hero can acquire all Hero Weapons Optional true/false OTHER IMPLEMENTATIONS: Teleport fixed (directly to Giran) Teleport effect classic Vip skins vip collor name Pack NPCs with effect already configured BOSES already configured Mobs already configured CLASS BALANCE SPECIAL SYSTEM We have a SPECIAL system developed for Class Balance with only 1 digit in XML %tage of configurable debuffs Player limitation system in BOSES or PvP zones BS blocking system in FLEG zones or events Among others dozens of improvements made in the review... price: 390 USD !  OBS: WE CAN CHANGE THE BANNER AND NAME OF THE SERVICE TO THE ONE OF YOUR PREFERENCE BUT THE SETTINGS MUST BE KEPT ANY CHANGES REQUIRE ADDITION        
    • Server is Online – 1,000+ Active Players! We’re excited to announce the addition of a Europe Proxy to improve connectivity for our EU players! Clans can now benefit from VIP Access to help you catch up faster. 🎯 If you're a clan leader with at least 9 active members, join our Discord and open a ticket to claim your VIP rewards!  
    • The Telegram team is rolling out a new batch of Stars-only gifts you’ll be able to mint as NFTs. Don’t miss your chance to join the next Telegram trend and earn from it! Buy Telegram Stars cheap and KYC-free 1 Star from $0.0149 (min. 50 Stars, bulk discounts available) Promo code STARS5 — 5 % off Pay any way you like: bank cards · crypto · other popular methods How to purchase: ➡Online Store — Click ➡ Telegram bot — Click Other services: ➡ SMM panel — Click Regular buyers get extra discounts and promo codes. Support: ➡ Telegram: https://t.me/solomon_bog ➡ Telegram channel: https://t.me/accsforyou_shop ➡ Discord: https://discord.gg/y9AStFFsrh ➡ WhatsApp: https://wa.me/79051904467 ➡ Email: solomonbog@socnet.store Use these contacts to discuss wholesale orders, partnerships (current list: https://socnet.bgng.io/partners) or to become a supplier. SocNet — your shop for digital goods and premium subscriptions
  • 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