Jump to content
  • 0

Change color name NPC


demolisha

Question

Hey.. I have a problem with this npc http://www.maxcheaters.com/forum/index.php?topic=152277.0 .

Well I want to put it on Epilogue and I use l2j and in his .py file I don't know how to change this..

 

from com.it.br.gameserver.model.actor.instance import L2PcInstance

from com.it.br.gameserver.model.actor.appearance import PcAppearance

 

Can you change it for me? Thanks!

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Hey.. I have a problem with this npc http://www.maxcheaters.com/forum/index.php?topic=152277.0 .

Well I want to put it on Epilogue and I use l2j and in his .py file I don't know how to change this..

 

from com.it.br.gameserver.model.actor.instance import L2PcInstance

from com.it.br.gameserver.model.actor.appearance import PcAppearance

 

Can you change it for me? Thanks!

 

uhm...? you want it like this :

 

java\net\sf\l2j\gameserver\model\actor\instance path for l2pcinstance

java\net\sf\l2j\gameserver\model\actor\appearance path for pcappearence i think you can change the pyhton file yourself or?

Link to comment
Share on other sites

  • 0

he want change imports, so lets go :

 

1. open file .py this npc

 

2. delete this

 

import sys
from com.it.br.gameserver.model.actor.instance import L2PcInstance
from com.it.br.gameserver.model.actor.appearance import PcAppearance
from com.it.br.gameserver.model.quest          import State
from com.it.br.gameserver.model.quest          import QuestState
from com.it.br.gameserver.model.quest.jython   import QuestJython as JQuest

 

and put it

 

import sys
from com.l2jserver.gameserver.model.actor.instance import L2PcInstance
from com.l2jserver.gameserver.model.actor.appearance import PcAppearance
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

 

3. restart server and it should work

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