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.



  • Posts

    • DISCORD : utchiha_market telegram : https://t.me/utchiha_market SELLIX STORE : https://utchihamkt.mysellix.io/ Join our server for more products : https://discord.gg/hood-services https://campsite.bio/utchihaamkt  
    • Server Rates: » Xp 500x. » Sp 500x. » Aden 500x. » Drop 1x. » PartyXp 2x. » PartySp 2x. » Starting character level -61. Enchant rates: » Safe enchant +4. » Blessed and simple scrolls max enchant (+16). » Crystal scrolls max enchant (+20). » Simple enchant scrolls chance – 65%. » Blessed enchant scrolls chance – 100%. » Crystal enchant scrolls chance – 50% Augmentations: » Mid life stone skill chance – 5%. » High life stone skill chance – 10%. » Top life stone skill chance – 20%. » Augments 1+1 Unique features: » Main town – Giran » Automatic-Manual Potions. » Working 2 castle sieges. (Giran-Aden) » SPS cancel lasts 10 seconds and than buffs come back. » Stackable scrolls, lifestones, book of giants. » Unique pvp zone » More then 11 active raid bosses. » Wedding system. » Unique farming areas. » Npc skill enchanter. » Full npc buffer with auto buff. » Max count of buffs – 55. » Max subclasses – 4. » Free and no quest class change. » Free and no quest sub class. » Raid boss drop nobless item. » No weight limit. » Unique protection anti-hwy armor for archers/daggers etc. » Ingame password change. » Top pvp/pk/online ranks NPC. » Unique monsters & NPC. » Interlude retail skills. » Server up-time [24/7] [99]%. » Perfect class balance (all class can kill all class depending on players skill and setup knowledge,gear,augmentations). » Announcements on double kills triple kills etc. » Announcements on Grand Boss death , with the name of the killer as well as clan name of the player. » Information Npc in game with all servers infromations. Custom server gear : 1). Titanium Armor Lv.1 2). Epic Armor Lv.2 3). Epic Weapons-Kamikaze-Black S grade (Same Stats) 4). Demonic-Angelic Wings-Baium Hair-Custom Accessories (SameStats) 5). Custom Fighter/Mage tattoo Lv1-Lv2-Lv3 6). Shirt (STR,CON,INT +1) 7). Custom Shields Server Commands: .tvtjoin .tvtleave – Join or leave tvt event. .ctfjoin .ctfleave – Join or leave ctf event. .dmjoin .dmleave – Join of leave dm event. .online – current online players count. .repair – repairs stuck character in world. .menu – opens online menu panel. .exit – PVP zone exit in case you are bullied. .changepassword - Opens online menu then u can change ur password in game. .farm - Enable/disable autofarm Event system: » TVT event » CTF event » DM event » Tournament Event » Party Zone » Unique event shop. Olympiad game: » Retail olympiad game. » Competition period [1] week. » Olympiad start time [18:00] end [00:00] GMT+2. » New Heroes every Sunday.
    • Tomorrow grand opening lests go 🙂 
  • Topics

×
×
  • Create New...