from com.l2jfree.gameserver.network.serverpackets import EtcStatusUpdate
from com.l2jfree.gameserver.network.serverpackets import PledgeShowInfoUpdate
from com.l2jfree.tools.random import Rnd
Вот пожалуйста под Ева Тиам 3.1.5 + Исходы
Вот пример Namecolor (рабочий)
import sys
from net.sf.l2j.gameserver.model.actor.instance import L2PcInstance
from net.sf.l2j.gameserver.model.actor.appearance import PcAppearance
from net.sf.l2j.gameserver.model.quest import State
from net.sf.l2j.gameserver.model.quest import QuestState
from net.sf.l2j.gameserver.model.quest.jython import QuestJython as JQuest
from net.sf.l2j.gameserver.network.serverpackets import EtcStatusUpdate
from net.sf.l2j.gameserver.network.serverpackets import PledgeShowInfoUpdate
from net.sf.l2j.tools.random import Rnd
Сообщение отредактировал Anri - Понедельник, 22.11.2010, 22:34
import sys
from net.sf.l2j import Config
from net.sf.l2j import L2DatabaseFactory
from net.sf.l2j.gameserver import Olympiad
from net.sf.l2j.gameserver import SevenSigns
from net.sf.l2j.gameserver.datatables import CharNameTable
from net.sf.l2j.gameserver.datatables import CharTemplateTable
from net.sf.l2j.gameserver.datatables import SkillTable
from net.sf.l2j.gameserver.communitybbs.Manager import RegionBBSManager
from net.sf.l2j.gameserver.model import L2World
from net.sf.l2j.gameserver.model.quest import State
from net.sf.l2j.gameserver.model.quest import QuestState
from net.sf.l2j.gameserver.model.quest.jython import QuestJython as JQuest
from net.sf.l2j.gameserver.network.serverpackets import EtcStatusUpdate
from net.sf.l2j.gameserver.network.serverpackets import PledgeShowInfoUpdate
from net.sf.l2j.tools.random import Rnd
def onAdvEvent(self, event, npc, player) :
st = player.getQuestState(qn)
htmltext = event
if event == "changeName.htm" :
st.set("newName","")
htmltext = st.showHtmlFile("changeName.htm").replace("%newName%", " ")
elif event in NAMECHARS.keys() :
newName = NAMECHARS[event]
st.set("newName", st.get("newName") + str(newName))
newName = st.get("newName")
htmltext = st.showHtmlFile("changeName.htm").replace("%newName%", str(newName))
elif event == "changeMyName" :
if st.getQuestItemsCount(ITEM) < CHANGENAMEITEMCOUNT :
htmltext = "<html><head><body> You dont Have Enought item to use this Action!</body></html>"
else :
newName = st.get("newName")
if newName :
if player.isHero() :
htmltext = "<html><head><body>Hero Players Can't Change Name!</body></html>"
elif player.isCursedWeaponEquipped() :
htmltext = "<html><head><body> You Can't Change Name, Cursed Weapon!</body></html>"
elif player.isTransformed() :
htmltext = "<html><head><body> You Can't use This Action in Transformation!</body></html>"
elif Olympiad.getInstance().isRegisteredInComp(player) :
htmltext = "<html><head><body> You Can't when Practice in Olympiad!</body></html>"
else :
if Config.CNAME_PATTERN.matcher(newName).matches() :
if CharNameTable.getInstance().doesCharNameExist(newName) :
st.unset("newName")
htmltext = "<html><head><body> This Name Already Exist!</body></html>"
else :
if player.isInParty() :
htmltext = "You Must Remove From Party!"
else :
L2World.getInstance().removeFromAllPlayers(player)
player.setName(newName)
player.store()
L2World.getInstance().addToAllPlayers(player)
player.broadcastUserInfo()
if player.getClan() :
player.getClan().broadcastClanStatus()
RegionBBSManager.getInstance().changeCommunityBoard()
con = L2DatabaseFactory.getInstance().getConnection(None)
offline = con.prepareStatement("UPDATE auction_bid SET bidderName = ? WHERE bidderId = ?")
offline.setString(1, newName)
offline.setInt(2, player.getObjectId())
try :
offline.executeUpdate()
offline.close()
con.close()
except :
try : con.close()
except : pass
con = L2DatabaseFactory.getInstance().getConnection(None)
offline = con.prepareStatement("UPDATE characters_custom_data SET char_name = ? WHERE charId = ?")
offline.setString(1, newName)
offline.setInt(2, player.getObjectId())
try :
offline.executeUpdate()
offline.close()
con.close()
except :
try : con.close()
except : pass
con = L2DatabaseFactory.getInstance().getConnection(None)
offline = con.prepareStatement("UPDATE character_friends SET friend_name = ? WHERE friendId = ?")
offline.setString(1, newName)
offline.setInt(2, player.getObjectId())
try :
offline.executeUpdate()
offline.close()
con.close()
except :
try : con.close()
except : pass
con = L2DatabaseFactory.getInstance().getConnection(None)
offline = con.prepareStatement("UPDATE heroes SET char_name = ? WHERE charId = ?")
offline.setString(1, newName)
offline.setInt(2, player.getObjectId())
try :
offline.executeUpdate()
offline.close()
con.close()
except :
try : con.close()
except : pass
con = L2DatabaseFactory.getInstance().getConnection(None)
offline = con.prepareStatement("UPDATE olympiad_nobles SET char_name = ? WHERE charId = ?")
offline.setString(1, newName)
offline.setInt(2, player.getObjectId())
try :
offline.executeUpdate()
offline.close()
con.close()
except :
try : con.close()
except : pass
con = L2DatabaseFactory.getInstance().getConnection(None)
offline = con.prepareStatement("UPDATE posts SET post_owner_name = ? WHERE post_ownerid = ?")
offline.setString(1, newName)
offline.setInt(2, player.getObjectId())
try :
offline.executeUpdate()
offline.close()
con.close()
except :
try : con.close()
except : pass
con = L2DatabaseFactory.getInstance().getConnection(None)
offline = con.prepareStatement("UPDATE topic SET topic_ownername = ? WHERE topic_ownerid = ?")
offline.setString(1, newName)
offline.setInt(2, player.getObjectId())
try :
offline.executeUpdate()
offline.close()
con.close()
except :
try : con.close()
except : pass
st.takeItems(ITEM, CHANGENAMEITEMCOUNT)
htmltext = "<html><head><body>Congratulation, Your Name Changed.</body></html>"
st.playSound("ItemSound.quest_finish")
st.unset("newName")
st.exitQuest(1)
else :
htmltext = "<html><head><body> Something went wrong, Try Again!</body></html>"
else :
htmltext = "<html><head><body> Something went wrong, Try Again!</body></html>"
elif event == "transferChar.htm" :
st.set("newAccount","")
htmltext = st.showHtmlFile("transferChar.htm").replace("%newAccount%", " ")
elif event in ACCOUNTCHARS.keys() :
newAccount = ACCOUNTCHARS[event]
st.set("newAccount", st.get("newAccount") + str(newAccount))
newAccount = st.get("newAccount")
htmltext = st.showHtmlFile("transferChar.htm").replace("%newAccount%", str(newAccount))
elif event == "transferChar" :
if st.getQuestItemsCount(ITEM) < TRANSFERCHARITEMCOUNT :
htmltext = "cant.htm"
else :
if player.isCursedWeaponEquipped() :
htmltext = "<html><head><body> You Can't Make This Action, Cursed Weapon!</body></html>"
elif player.isTransformed() :
htmltext = "<html><head><body> You Can't use This Action in Transformation!</body></html>"
elif Olympiad.getInstance().isRegisteredInComp(player) :
htmltext = "<html><head><body> You Can't when Practice in Olympiad!</body></html>"
else :
newAccount = st.get("newAccount")
if newAccount :
if Config.CNAME_PATTERN.matcher(newAccount).matches() :
if findAccount(newAccount) == None :
htmltext = "<html><head><body> Sorry, This Account Don't Exist or dont have Any Character!</body></html>"
elif str(newAccount) == player.getAccountName() :
htmltext = "<html><head><body> This is your Curent Account, You Cant use this Action!</body></html>"
else :
con = L2DatabaseFactory.getInstance().getConnection(None)
offline = con.prepareStatement("UPDATE characters SET account_name = ? WHERE charId = ?")
offline.setString(1, newAccount)
offline.setInt(2, player.getObjectId())
try :
offline.executeUpdate()
offline.close()
con.close()
except :
try : con.close()
except : pass
AutoChat(npc, "Congratulation "+player.getName()+". You performed the function successfully. In order to complete the function you need to re-login.")
st.unset("newAccount")
st.takeItems(ITEM, TRANSFERCHARITEMCOUNT)
htmltext = "<html><head><body> Your Character Transfered in other Account!</body></html>"
st.playSound("ItemSound.quest_finish")
st.exitQuest(1)
player.closeNetConnection()
else :
htmltext = "<html><head><body> Something went wrong. Try Again!</body></html>"
else :
htmltext = "<html><head><body> Something went wrong. Try Again!</body></html>"
return htmltext
def onTalk(self, npc, player) :
htmltext = ""
st = player.getQuestState(qn)
if not st :
st = self.newQuestState(player)
htmltext = "home.htm"
st.playSound("ItemSound.quest_accept")
return htmltext
Сожалею но он не под твое ядро. вот красным выделенна ошибка.
from net.sf.l2j.gameserver.network.serverpackets import EtcStatusUpdate
from net.sf.l2j.gameserver.network.serverpackets import PledgeShowInfoUpdate
У тебя такого пути не существует. Заканчивается папкой network
Но я обратил внимание что с другой стороны возможно, у тебя просто не много не стандартное ядро. Я не много изменил импорты. Вот попробуй, должно получитса.
import sys
from net.sf.l2j import Config
from net.sf.l2j import L2DatabaseFactory
from net.sf.l2j.gameserver import Olympiad
from net.sf.l2j.gameserver import SevenSigns
from net.sf.l2j.gameserver.datatables import CharNameTable
from net.sf.l2j.gameserver.datatables import CharTemplateTable
from net.sf.l2j.gameserver.datatables import SkillTable
from net.sf.l2j.gameserver.communitybbs.Manager import RegionBBSManager
from net.sf.l2j.gameserver.model import L2World
from net.sf.l2j.gameserver.model.quest import State
from net.sf.l2j.gameserver.model.quest import QuestState
from net.sf.l2j.gameserver.model.quest.jython import QuestJython as JQuest
from net.sf.l2j.gameserver.serverpackets import EtcStatusUpdate
from net.sf.l2j.gameserver.serverpackets import PledgeShowInfoUpdate
from net.sf.l2j.tools.random import Rnd
Сообщение отредактировал Anri - Вторник, 23.11.2010, 00:23
Error on: D:\L2mad\Server\data\scripts\custom\8707_Services\__init__.py.error.log
Line: -1 - Column: -1
Traceback (innermost last):
File "__init__.py", line 16, in ?
ImportError: no module named tools
Добавлено (23.11.2010, 12:28)
---------------------------------------------
Всё последняя зделал (from net.sf.l2j.util import Rnd)
запускаеться ГС без ошибак а патом бац кокда я вписываю свой ник (который я хочу ) нажимаю зделать и ошибка
D:\L2mad\Server\data\scripts\custom\8707_Services\__init__.py
Traceback (innermost last):
File "__init__.py", line 203, in onAdvEvent
AttributeError: isCursedWeaponEquipped
at org.python.core.Py.AttributeError(Unknown Source)
at org.python.core.PyInstance.invoke(Unknown Source)
at org.python.pycode.serializable._pyx1290504301152.onAdvEvent$4(__init_
_.py:203)
at org.python.pycode.serializable._pyx1290504301152.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$393.onAdvEvent(Unknown Source)
at net.sf.l2j.gameserver.model.quest.Quest.notifyEvent(Quest.java:299)
at net.sf.l2j.gameserver.model.actor.instance.L2PcInstance.processQuestE
vent(L2PcInstance.java:1220)
at net.sf.l2j.gameserver.clientpackets.RequestBypassToServer.runImpl(Req
uestBypassToServer.java:157)
at net.sf.l2j.gameserver.clientpackets.L2GameClientPacket.run(L2GameClie
ntPacket.java:76)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source
)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
»»Admin»», я не пойму это что ренейм менеджер? ты веже приводил пример рабочего. Зачем тебе еще один?
В нем я вобще вижу что то связанное с оружием и атрибучиванием.
Добавлено (23.11.2010, 15:42)
---------------------------------------------
Короче говоря он под твою сборку не подходит. Под ядро точнее, нету какого то класса. Возможно CNAME_PATTERN (вычитал)
import sys
from net.sf.l2j import Config
from net.sf.l2j import L2DatabaseFactory
from net.sf.l2j.gameserver import Olympiad
from net.sf.l2j.gameserver import SevenSigns
from net.sf.l2j.gameserver.datatables import CharNameTable
from net.sf.l2j.gameserver.datatables import CharTemplateTable
from net.sf.l2j.gameserver.datatables import SkillTable
from net.sf.l2j.gameserver.communitybbs.Manager import RegionBBSManager
from net.sf.l2j.gameserver.model import L2World
from net.sf.l2j.gameserver.model.quest import State
from net.sf.l2j.gameserver.model.quest import QuestState
from net.sf.l2j.gameserver.model.quest.jython import QuestJython as JQuest
from net.sf.l2j.gameserver.serverpackets import EtcStatusUpdate
from net.sf.l2j.gameserver.serverpackets import PledgeShowInfoUpdate
from net.sf.l2j.util import Rnd
def onAdvEvent(self, event, npc, player) :
st = player.getQuestState(qn)
htmltext = event
if event == "changeName.htm" :
st.set("newName","")
htmltext = st.showHtmlFile("changeName.htm").replace("%newName%", " ")
elif event in NAMECHARS.keys() :
newName = NAMECHARS[event]
st.set("newName", st.get("newName") + str(newName))
newName = st.get("newName")
htmltext = st.showHtmlFile("changeName.htm").replace("%newName%", str(newName))
elif event == "changeMyName" :
if st.getQuestItemsCount(ITEM) < CHANGENAMEITEMCOUNT :
htmltext = "<html><head><body> You dont Have Enought item to use this Action!</body></html>"
else :
newName = st.get("newName")
if newName :
if player.isHero() :
htmltext = "<html><head><body>Hero Players Can't Change Name!</body></html>"
elif player.isCursedWeaponEquipped() :
htmltext = "<html><head><body> You Can't Change Name, Cursed Weapon!</body></html>"
elif player.isTransformed() :
htmltext = "<html><head><body> You Can't use This Action in Transformation!</body></html>"
elif Olympiad.getInstance().isRegisteredInComp(player) :
htmltext = "<html><head><body> You Can't when Practice in Olympiad!</body></html>"
else :
if Config.CNAME_PATTERN.matcher(newName).matches() :
if CharNameTable.getInstance().doesCharNameExist(newName) :
st.unset("newName")
htmltext = "<html><head><body> This Name Already Exist!</body></html>"
else :
if player.isInParty() :
htmltext = "You Must Remove From Party!"
else :
L2World.getInstance().removeFromAllPlayers(player)
player.setName(newName)
player.store()
L2World.getInstance().addToAllPlayers(player)
player.broadcastUserInfo()
if player.getClan() :
player.getClan().broadcastClanStatus()
RegionBBSManager.getInstance().changeCommunityBoard()
con = L2DatabaseFactory.getInstance().getConnection(None)
offline = con.prepareStatement("UPDATE auction_bid SET bidderName = ? WHERE bidderId = ?")
offline.setString(1, newName)
offline.setInt(2, player.getObjectId())
try :
offline.executeUpdate()
offline.close()
con.close()
except :
try : con.close()
except : pass
con = L2DatabaseFactory.getInstance().getConnection(None)
offline = con.prepareStatement("UPDATE characters_custom_data SET char_name = ? WHERE charId = ?")
offline.setString(1, newName)
offline.setInt(2, player.getObjectId())
try :
offline.executeUpdate()
offline.close()
con.close()
except :
try : con.close()
except : pass
con = L2DatabaseFactory.getInstance().getConnection(None)
offline = con.prepareStatement("UPDATE character_friends SET friend_name = ? WHERE friendId = ?")
offline.setString(1, newName)
offline.setInt(2, player.getObjectId())
try :
offline.executeUpdate()
offline.close()
con.close()
except :
try : con.close()
except : pass
con = L2DatabaseFactory.getInstance().getConnection(None)
offline = con.prepareStatement("UPDATE heroes SET char_name = ? WHERE charId = ?")
offline.setString(1, newName)
offline.setInt(2, player.getObjectId())
try :
offline.executeUpdate()
offline.close()
con.close()
except :
try : con.close()
except : pass
con = L2DatabaseFactory.getInstance().getConnection(None)
offline = con.prepareStatement("UPDATE olympiad_nobles SET char_name = ? WHERE charId = ?")
offline.setString(1, newName)
offline.setInt(2, player.getObjectId())
try :
offline.executeUpdate()
offline.close()
con.close()
except :
try : con.close()
except : pass
con = L2DatabaseFactory.getInstance().getConnection(None)
offline = con.prepareStatement("UPDATE posts SET post_owner_name = ? WHERE post_ownerid = ?")
offline.setString(1, newName)
offline.setInt(2, player.getObjectId())
try :
offline.executeUpdate()
offline.close()
con.close()
except :
try : con.close()
except : pass
con = L2DatabaseFactory.getInstance().getConnection(None)
offline = con.prepareStatement("UPDATE topic SET topic_ownername = ? WHERE topic_ownerid = ?")
offline.setString(1, newName)
offline.setInt(2, player.getObjectId())
try :
offline.executeUpdate()
offline.close()
con.close()
except :
try : con.close()
except : pass
st.takeItems(ITEM, CHANGENAMEITEMCOUNT)
htmltext = "<html><head><body>Congratulation, Your Name Changed.</body></html>"
st.playSound("ItemSound.quest_finish")
st.unset("newName")
st.exitQuest(1)
else :
htmltext = "<html><head><body> Something went wrong, Try Again!</body></html>"
else :
htmltext = "<html><head><body> Something went wrong, Try Again!</body></html>"
elif event == "transferChar.htm" :
st.set("newAccount","")
htmltext = st.showHtmlFile("transferChar.htm").replace("%newAccount%", " ")
elif event in ACCOUNTCHARS.keys() :
newAccount = ACCOUNTCHARS[event]
st.set("newAccount", st.get("newAccount") + str(newAccount))
newAccount = st.get("newAccount")
htmltext = st.showHtmlFile("transferChar.htm").replace("%newAccount%", str(newAccount))
elif event == "transferChar" :
if st.getQuestItemsCount(ITEM) < TRANSFERCHARITEMCOUNT :
htmltext = "cant.htm"
else :
if player.isCursedWeaponEquipped() :
htmltext = "<html><head><body> You Can't Make This Action, Cursed Weapon!</body></html>"
elif player.isTransformed() :
htmltext = "<html><head><body> You Can't use This Action in Transformation!</body></html>"
elif Olympiad.getInstance().isRegisteredInComp(player) :
htmltext = "<html><head><body> You Can't when Practice in Olympiad!</body></html>"
else :
newAccount = st.get("newAccount")
if newAccount :
if Config.CNAME_PATTERN.matcher(newAccount).matches() :
if findAccount(newAccount) == None :
htmltext = "<html><head><body> Sorry, This Account Don't Exist or dont have Any Character!</body></html>"
elif str(newAccount) == player.getAccountName() :
htmltext = "<html><head><body> This is your Curent Account, You Cant use this Action!</body></html>"
else :
con = L2DatabaseFactory.getInstance().getConnection(None)
offline = con.prepareStatement("UPDATE characters SET account_name = ? WHERE charId = ?")
offline.setString(1, newAccount)
offline.setInt(2, player.getObjectId())
try :
offline.executeUpdate()
offline.close()
con.close()
except :
try : con.close()
except : pass
AutoChat(npc, "Congratulation "+player.getName()+". You performed the function successfully. In order to complete the function you need to re-login.")
st.unset("newAccount")
st.takeItems(ITEM, TRANSFERCHARITEMCOUNT)
htmltext = "<html><head><body> Your Character Transfered in other Account!</body></html>"
st.playSound("ItemSound.quest_finish")
st.exitQuest(1)
player.closeNetConnection()
else :
htmltext = "<html><head><body> Something went wrong. Try Again!</body></html>"
else :
htmltext = "<html><head><body> Something went wrong. Try Again!</body></html>"
return htmltext
def onTalk(self, npc, player) :
htmltext = ""
st = player.getQuestState(qn)
if not st :
st = self.newQuestState(player)
htmltext = "home.htm"
st.playSound("ItemSound.quest_accept")
return htmltext
импорты правелные, папробуйте заменить в инит.ру вот на ето:
import sys
from net.sf.l2j import Config
from net.sf.l2j import L2DatabaseFactory
from net.sf.l2j.gameserver import Olympiad
from net.sf.l2j.gameserver import SevenSigns
from net.sf.l2j.gameserver.datatables import CharNameTable
from net.sf.l2j.gameserver.datatables import CharTemplateTable
from net.sf.l2j.gameserver.datatables import SkillTable
from net.sf.l2j.gameserver.communitybbs.Manager import RegionBBSManager
from net.sf.l2j.gameserver.model import L2World
from net.sf.l2j.gameserver.model.quest import State
from net.sf.l2j.gameserver.model.quest import QuestState
from net.sf.l2j.gameserver.model.quest.jython import QuestJython as JQuest
from net.sf.l2j.gameserver.serverpackets import EtcStatusUpdate
from net.sf.l2j.gameserver.serverpackets import PledgeShowInfoUpdate
from net.sf.l2j.util import Rnd
def onAdvEvent(self, event, npc, player) :
st = player.getQuestState(qn)
htmltext = event
if event == "changeName.htm" :
st.set("newName","")
htmltext = st.showHtmlFile("changeName.htm").replace("%newName%", " ")
elif event in NAMECHARS.keys() :
newName = NAMECHARS[event]
st.set("newName", st.get("newName") + str(newName))
newName = st.get("newName")
htmltext = st.showHtmlFile("changeName.htm").replace("%newName%", str(newName))
elif event == "changeMyName" :
if st.getQuestItemsCount(ITEM) < CHANGENAMEITEMCOUNT :
htmltext = "<html><head><body> You dont Have Enought item to use this Action!</body></html>"
else :
newName = st.get("newName")
if newName :
if player.isHero() :
htmltext = "<html><head><body>Hero Players Can't Change Name!</body></html>"
elif player.isCursedWeaponEquipped() :
htmltext = "<html><head><body> You Can't Change Name, Cursed Weapon!</body></html>"
elif player.isTransformed() :
htmltext = "<html><head><body> You Can't use This Action in Transformation!</body></html>"
else :
if Config.CNAME_PATTERN.matcher(newName).matches() :
if CharNameTable.getInstance().doesCharNameExist(newName) :
st.unset("newName")
htmltext = "<html><head><body> This Name Already Exist!</body></html>"
else :
if player.isInParty() :
htmltext = "You Must Remove From Party!"
else :
L2World.getInstance().removeFromAllPlayers(player)
player.setName(newName)
player.store()
L2World.getInstance().addToAllPlayers(player)
player.broadcastUserInfo()
if player.getClan() :
player.getClan().broadcastClanStatus()
RegionBBSManager.getInstance().changeCommunityBoard()
con = L2DatabaseFactory.getInstance().getConnection(None)
offline = con.prepareStatement("UPDATE auction_bid SET bidderName = ? WHERE bidderId = ?")
offline.setString(1, newName)
offline.setInt(2, player.getObjectId())
try :
offline.executeUpdate()
offline.close()
con.close()
except :
try : con.close()
except : pass
con = L2DatabaseFactory.getInstance().getConnection(None)
offline = con.prepareStatement("UPDATE characters_custom_data SET char_name = ? WHERE charId = ?")
offline.setString(1, newName)
offline.setInt(2, player.getObjectId())
try :
offline.executeUpdate()
offline.close()
con.close()
except :
try : con.close()
except : pass
con = L2DatabaseFactory.getInstance().getConnection(None)
offline = con.prepareStatement("UPDATE character_friends SET friend_name = ? WHERE friendId = ?")
offline.setString(1, newName)
offline.setInt(2, player.getObjectId())
try :
offline.executeUpdate()
offline.close()
con.close()
except :
try : con.close()
except : pass
con = L2DatabaseFactory.getInstance().getConnection(None)
offline = con.prepareStatement("UPDATE heroes SET char_name = ? WHERE charId = ?")
offline.setString(1, newName)
offline.setInt(2, player.getObjectId())
try :
offline.executeUpdate()
offline.close()
con.close()
except :
try : con.close()
except : pass
con = L2DatabaseFactory.getInstance().getConnection(None)
offline = con.prepareStatement("UPDATE olympiad_nobles SET char_name = ? WHERE charId = ?")
offline.setString(1, newName)
offline.setInt(2, player.getObjectId())
try :
offline.executeUpdate()
offline.close()
con.close()
except :
try : con.close()
except : pass
con = L2DatabaseFactory.getInstance().getConnection(None)
offline = con.prepareStatement("UPDATE posts SET post_owner_name = ? WHERE post_ownerid = ?")
offline.setString(1, newName)
offline.setInt(2, player.getObjectId())
try :
offline.executeUpdate()
offline.close()
con.close()
except :
try : con.close()
except : pass
con = L2DatabaseFactory.getInstance().getConnection(None)
offline = con.prepareStatement("UPDATE topic SET topic_ownername = ? WHERE topic_ownerid = ?")
offline.setString(1, newName)
offline.setInt(2, player.getObjectId())
try :
offline.executeUpdate()
offline.close()
con.close()
except :
try : con.close()
except : pass
st.takeItems(ITEM, CHANGENAMEITEMCOUNT)
htmltext = "<html><head><body>Congratulation, Your Name Changed.</body></html>"
st.playSound("ItemSound.quest_finish")
st.unset("newName")
st.exitQuest(1)
else :
htmltext = "<html><head><body> Something went wrong, Try Again!</body></html>"
else :
htmltext = "<html><head><body> Something went wrong, Try Again!</body></html>"
elif event == "transferChar.htm" :
st.set("newAccount","")
htmltext = st.showHtmlFile("transferChar.htm").replace("%newAccount%", " ")
elif event in ACCOUNTCHARS.keys() :
newAccount = ACCOUNTCHARS[event]
st.set("newAccount", st.get("newAccount") + str(newAccount))
newAccount = st.get("newAccount")
htmltext = st.showHtmlFile("transferChar.htm").replace("%newAccount%", str(newAccount))
elif event == "transferChar" :
if st.getQuestItemsCount(ITEM) < TRANSFERCHARITEMCOUNT :
htmltext = "cant.htm"
else :
if player.isCursedWeaponEquipped() :
htmltext = "<html><head><body> You Can't Make This Action, Cursed Weapon!</body></html>"
elif player.isTransformed() :
htmltext = "<html><head><body> You Can't use This Action in Transformation!</body></html>"
elif Olympiad.getInstance().isRegisteredInComp(player) :
htmltext = "<html><head><body> You Can't when Practice in Olympiad!</body></html>"
else :
newAccount = st.get("newAccount")
if newAccount :
if Config.CNAME_PATTERN.matcher(newAccount).matches() :
if findAccount(newAccount) == None :
htmltext = "<html><head><body> Sorry, This Account Don't Exist or dont have Any Character!</body></html>"
elif str(newAccount) == player.getAccountName() :
htmltext = "<html><head><body> This is your Curent Account, You Cant use this Action!</body></html>"
else :
con = L2DatabaseFactory.getInstance().getConnection(None)
offline = con.prepareStatement("UPDATE characters SET account_name = ? WHERE charId = ?")
offline.setString(1, newAccount)
offline.setInt(2, player.getObjectId())
try :
offline.executeUpdate()
offline.close()
con.close()
except :
try : con.close()
except : pass
AutoChat(npc, "Congratulation "+player.getName()+". You performed the function successfully. In order to complete the function you need to re-login.")
st.unset("newAccount")
st.takeItems(ITEM, TRANSFERCHARITEMCOUNT)
htmltext = "<html><head><body> Your Character Transfered in other Account!</body></html>"
st.playSound("ItemSound.quest_finish")
st.exitQuest(1)
player.closeNetConnection()
else :
htmltext = "<html><head><body> Something went wrong. Try Again!</body></html>"
else :
htmltext = "<html><head><body> Something went wrong. Try Again!</body></html>"
return htmltext
def onTalk(self, npc, player) :
htmltext = ""
st = player.getQuestState(qn)
if not st :
st = self.newQuestState(player)
htmltext = "home.htm"
st.playSound("ItemSound.quest_accept")
return htmltext