Jump to content
  • 0

{HELP} Rinha's Buffer v1.3 - Epilogue / l2j


Question

Posted

I Did what this topic's installation guide writing...

 

http://www.maxcheaters.com/forum/index.php?topic=39966.0

 

i working on latest rev ..l2j epilogue ...

 

when i done ...

 

i take this error

 

Error on: C:\mycompileEpilogue\gameserver\data\scripts\custom\buffer.py.error.log

Line: -1 - Column: -1

 

Traceback (innermost last):

  File "buffer.py", line 4, in ?

ImportError: no module named net

 

 

and if i try to //spawn the npc (current id 555555)

 

appears the npc...but its html code-working is the same likes l2j default buffer...

(if i config its type from l2npcbuffer to l2npc -got blank quest when i talk with the npc...)

 

plz some..help..i think is buffer.py 's problem..someone to tell me what to do..

or upload the fix here...ty!!!!

 

 

 

5 answers to this question

Recommended Posts

  • 0
Posted

L2JEpilogue has new imports.

 

com.l2jserver ...

 

not

 

net.l2j ...

 

correct it.

  • 0
Posted

what you mean with ''correct it'' how i can open .py files???

 

explain me more..if isnt a spam msg...

 

ty

 

Example: You can open it with notepad.

Change this:

 

from net.sf.l2j import Config
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 import L2DatabaseFactory
from net.sf.l2j.gameserver.datatables import SkillTable
from net.sf.l2j.gameserver.datatables import ItemTable
from net.sf.l2j.gameserver.model.actor.instance import L2PcInstance
from net.sf.l2j.gameserver.model.zone import L2ZoneType
from net.sf.l2j.gameserver.network.serverpackets import SetupGauge

 

New code:

 

from com.l2jserver import Config
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
from com.l2jserver import L2DatabaseFactory
from com.l2jserver.gameserver.datatables import SkillTable
from com.l2jserver.gameserver.datatables import ItemTable
from com.l2jserver.gameserver.model.actor.instance import L2PcInstance
from com.l2jserver.gameserver.model.zone import L2ZoneType
from com.l2jserver.gameserver.network.serverpackets import SetupGauge

  • 0
Posted

wtf all night i tried to open it  with any of my programs + notepad..and all time nothing happens...

 

and now i can... :)) ..

 

i did what you told me and now..YES.. working 100%

 

Ty !!!!!!!

 

 

Lock the  Topic...

Guest
This topic is now closed to further replies.


×
×
  • Create New...