Jump to content
  • 0

"no jython module" problem


~!M@R@SL@K0SsS!~

Question

Hello i search forum for my problem but i don't find sth..  so i post it here...

 

i updated my server pack L2J server Beta to a new revirsion and i have  problem with my custom npcs... like toplist npc

 

the code is this .

import sys
from java.util import Iterator
from com.l2jserver import L2DatabaseFactory
from com.l2jserver.gameserver.model.quest import State
from com.l2jserver.gameserver.model.quest import QuestState
from com.l2jserver.gameserver.model.quest.jython import QuestJython as JQuest

qn = "36601_Toplist"

NPC         = 36601
QuestId     = 36601
MIN_LEVEL   = 0
MAX_LEVEL   = 86
QuestName   = "Toplist"
QuestDesc   = "custom"
InitialHtml = "1.htm"
DonateMaster  = "This ain't no free service nubblet! Now get out of my hare... Get it, 'hare'? - That gets me every time!"


class Quest  (JQuest):

def __init__(self,id,name,descr): JQuest.__init__(self,id,name,descr)

def onEvent(self,event,st):
	htmltext = event
	level = st.getPlayer().getLevel()
	levelup = 86 - level
	if level < MIN_LEVEL :
		return"<html><head><body>No quicky for you! - Your to young shorty!</body></html>"
	if level > MAX_LEVEL :
	    return"<html><head><body>No quicky for you! - Your to old fatty!</body></html>"

	else:
            		#PK INFO
		if event == "01":
		 con = L2DatabaseFactory.getInstance().getConnection()
		 total_asesinados = 0
		 htmltext_ini = "<html><head><title>PK List</title></head><body><table width=300><tr><td><font color =\"FF00FF\">Pos.</td><td><center><font color =\"FFFF00\">*** Player ***</color></center></td><td><center>*** Kill's ***</center></td></tr>"
		 htmltext_info =""
		 color = 1
		 pos = 0
		 pks = con.prepareStatement("SELECT char_name,pkkills FROM characters WHERE pkkills>0 and accesslevel=0 order by pkkills desc limit 50")
		 rs = pks.executeQuery()
		 while (rs.next()) :
		   char_name = rs.getString("char_name")
		   char_pkkills = rs.getString("pkkills")
		   total_asesinados = total_asesinados + int(char_pkkills)
		   pos = pos + 1
		   posstr = str(pos)
		   if color == 1:
		      color_text = "<font color =\"00FFFF\">"
		      color = 2
		      htmltext_info = htmltext_info + "<tr><td><center><font color =\"FF00FF\">" + posstr + "</td><td><center>" + color_text + char_name +"</center></td><td><center>" + char_pkkills + "</center></td></tr>"
		   elif color == 2:
		      color_text = "<font color =\"FF0000\">"
		      color = 1
		      htmltext_info = htmltext_info + "<tr><td><center><font color =\"FF00FF\">" + posstr + "</td><td><center>" + color_text + char_name +"</center></td><td><center>" + char_pkkills + "</center></td></tr>"
		 htmltext_end = "</table><center><font color=\"FFFFFF\">" + "A Total of " + str(total_asesinados) + " Pk's.</center></body></html>"
		 htmltext_pklist = htmltext_ini + htmltext_info + htmltext_end
		 L2DatabaseFactory.close(con)
		 return htmltext_pklist

            		#PVP INFO
		if event == "02":
		 con = L2DatabaseFactory.getInstance().getConnection()
		 total_asesinados = 0
		 htmltext_ini = "<html><head><title>PvP List</title></head><body><table width=300><tr><td><font color =\"FF00FF\">Pos.</td><td><center><font color =\"FFFF00\">*** Player ***</color></center></td><td><center>*** Kill's ***</center></td></tr>"
		 htmltext_info =""
		 color = 1
		 pos = 0
		 pks = con.prepareStatement("SELECT char_name,pvpkills FROM characters WHERE pvpkills>0 and accesslevel=0 order by pvpkills desc limit 50")
		 rs = pks.executeQuery()
		 while (rs.next()) :
		   char_name = rs.getString("char_name")
		   char_pvpkills = rs.getString("pvpkills")
		   total_asesinados = total_asesinados + int(char_pvpkills)
		   pos = pos + 1
		   posstr = str(pos)
		   if color == 1:
		      color_text = "<font color =\"00FFFF\">"
		      color = 2
		      htmltext_info = htmltext_info + "<tr><td><center><font color =\"FF00FF\">" + posstr + "</td><td><center>" + color_text + char_name +"</center></td><td><center>" + char_pvpkills + "</center></td></tr>"
		   elif color == 2:
		      color_text = "<font color =\"FF0000\">"
		      color = 1
		      htmltext_info = htmltext_info + "<tr><td><center><font color =\"FF00FF\">" + posstr + "</td><td><center>" + color_text + char_name +"</center></td><td><center>" + char_pvpkills + "</center></td></tr>"
		 htmltext_end = "</table><center><font color=\"FFFFFF\">" + "A Total of " + str(total_asesinados) + " PvP's.</center></body></html>"
		 htmltext_pklist = htmltext_ini + htmltext_info + htmltext_end
		 L2DatabaseFactory.close(con)
		 return htmltext_pklist

		if htmltext != event:

			st.exitQuest(1)

	return htmltext



def onFirstTalk (self,npc,player):

   st = player.getQuestState(qn)

   if not st : st = self.newQuestState(player)

   return InitialHtml


QUEST = Quest(QuestId,str(QuestId) + "_" + QuestName,QuestDesc)
QUEST.addStartNpc(NPC)
QUEST.addFirstTalkId(NPC)
QUEST.addTalkId(NPC)
print "###############################"
print "#      Top Lists - Loaded     #"
print "#                             #"

 

and when i start my gameserver.bat show me an error . i go to __init__.py error,log and i see this

 

Error on: C:\server new\game\data\scripts\custom\36601_Toplist\__init__.py.error.log
Line: -1 - Column: -1

Traceback (innermost last):
  File "custom/36601_Toplist/__init__.py", line 6, in ?
ImportError: no module named jython

 

and its true because no jython moduls is at com.l2jserver.gameserver.model.quest.jython .....

 

and here is a foto of my java

 

xe.png

 

any solution ... to change com.l2jserver.gameserver.model.quest.jython import QuestJython as JQuest  to sth else location that will exist jython??

 

thn'x in advance

 

Link to comment
Share on other sites

Recommended Posts

  • 0

Easy solution is just to open other .py script and view how jython is located there and c/p

 

OFFTIPIC wtf with forum xD

 

its the first thing that made..... but with no solution..

Link to comment
Share on other sites

  • 0

i have tried to delete it but another error apears....

i have tried to change it to com.l2jserver.gameserver.model.quest import Quest as JQuest  (because this link exists..) but npc's not working well some times don't get adena for the work that do.. buffer don't remove  buffs...

 

and now i'm tired to change - restart server - test . change - restart server - test.... :D because of that i post it here...

 

Link to comment
Share on other sites

  • 0

i have tried to delete it but another error apears....

i have tried to change it to com.l2jserver.gameserver.model.quest import Quest as JQuest  (because this link exists..) but npc's not working well some times don't get adena for the work that do.. buffer don't remove  buffs...

 

and now i'm tired to change - restart server - test . change - restart server - test.... :D because of that i post it here...

 

so its hi5 correct?

Link to comment
Share on other sites

  • 0

yeah.. it's correct this npc's worked correctly before server update revision.. and now it's not..

Ok ill check... lastest updates

 

OFFTOPIC:

There is smth wrong with topic sizes and i'm sick to search the button quote :)

Link to comment
Share on other sites

  • 0

OFFTOPIC:

There is smth wrong with topic sizes and i'm sick to search the button quote :)

 

OFFTIPIC: yeah it's one line of npc code that is too big ... because of that is big... 

 

 

and now i'm searching on l2jserver forum of sth exists about this problem...

Link to comment
Share on other sites

  • 0

OFFTIPIC: yeah it's one line of npc code that is too big ... because of that is big... 

 

 

and now i'm searching on l2jserver forum of sth exists about this problem...

 

nop its cuz of Counting Down in the news of forum...

Link to comment
Share on other sites

  • 0

This is the old one.... i have long time to see what l2j is doing right now. Ill make a check wen i have free time.

 

 

/*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
* 
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
* 
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.l2jserver.l2j.gameserver.model.quest;

import com.l2jserver.gameserver.model.quest.Quest;

public abstract class QuestJython extends Quest
{
/**
 * Constructor used in jython files.
 * @param questId : int designating the ID of the quest
 * @param name : String designating the name of the quest
 * @param descr : String designating the description of the quest
 */
public QuestJython(int questId, String name, String descr)
{
	super(questId, name, descr);
}
}

Link to comment
Share on other sites

  • 0

This is the old one.... i have long time to see what l2j is doing right now. Ill make a check wen i have free time.

 

 

/*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
* 
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
* 
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.l2jserver.l2j.gameserver.model.quest.jython;

import com.l2jserver.gameserver.model.quest.Quest;

public abstract class QuestJython extends Quest
{
/**
 * Constructor used in jython files.
 * @param questId : int designating the ID of the quest
 * @param name : String designating the name of the quest
 * @param descr : String designating the description of the quest
 */
public QuestJython(int questId, String name, String descr)
{
	super(questId, name, descr);
}
}

 

this is the old one com.l2jserver.gameserver.model.quest.jython  ??? 

if its is its good idea to add it as java file in eclipse?

 

Link to comment
Share on other sites

  • 0

this is the old one com.l2jserver.gameserver.model.quest.jython  ??? 

if its is its good idea to add it as java file in eclipse?

 

 

mmmm w8

 

name it QuestJython.java and put this inside and lets see :P

 

at com.l2jserver.l2j.gameserver.model.quest

 

/*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
* 
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
* 
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.l2jserver.l2j.gameserver.model.quest;

import com.l2jserver.gameserver.model.quest.Quest;

public abstract class QuestJython extends Quest
{
/**
 * Constructor used in jython files.
 * @param questId : int designating the ID of the quest
 * @param name : String designating the name of the quest
 * @param descr : String designating the description of the quest
 */
public QuestJython(int questId, String name, String descr)
{
	super(questId, name, descr);
}
}

Link to comment
Share on other sites

  • 0

i have tried to delete it but another error apears....

i have tried to change it to com.l2jserver.gameserver.model.quest import Quest as JQuest  (because this link exists..) but npc's not working well some times don't get adena for the work that do.. buffer don't remove  buffs...

 

and now i'm tired to change - restart server - test . change - restart server - test.... :D because of that i post it here...

 

 

i'have tried

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


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