Jump to content
  • 0

Python script Help me please


dev951

Question

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!

Link to comment
Share on other sites

Recommended Posts

  • 0
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
Link to comment
Share on other sites

  • 0
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..

Link to comment
Share on other sites

  • 0

@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
Link to comment
Share on other sites

  • 0
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?

Link to comment
Share on other sites

  • 0
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
Link to comment
Share on other sites

  • 0
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

Link to comment
Share on other sites

  • 0
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.

Link to comment
Share on other sites

  • 0
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

Link to comment
Share on other sites

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.



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