Jump to content
  • 0

[HELP/Question] NameColor NPC


Question

Posted

Ebala ston server mou to npc pou allazeis name color.

 

pws mporw na to kanw na allazei to color tou title kai oxi tou name?

Kai pws mporw na to ftiaxw na mhn feugei me to restart?

 

edw einai o kwdikas. (__init__.py)

 

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

qn = "7800_Namecolor"

NPC=[7802]
QuestId     = 7800
QuestName   = "Namecolor"
QuestDesc   = "custom"
InitialHtml = "1.htm"

print "Loaded Custom: 7001 Namecolor"

class Quest (JQuest) :
   def __init__(self,id,name,descr): JQuest.__init__(self,id,name,descr)
   
   def onEvent(self,event,st) :
       htmltext = event

       if event == "1":
           if st.getQuestItemsCount(57) > 250000:
               st.takeItems(57,250000)
               st.getPlayer().getAppearance().setNameColor(0x009900)
	st.getPlayer().broadcastUserInfo();
               return "1.htm"
           if st.getQuestItemsCount(57) <= 250000:
               return "Announcements: No Enought Adena To Select Color!"
           st.exitQuest(0)

       if event == "2":
           if st.getQuestItemsCount(57) > 250000:
               st.takeItems(57,250000)
               st.getPlayer().getAppearance().setNameColor(0xff7f00)
	st.getPlayer().broadcastUserInfo();
               return "1.htm"
           if st.getQuestItemsCount(57) <= 250000:
               return "Announcements: No Enought Adena To Select Color!"

       if event == "3":
           if st.getQuestItemsCount(57) > 250000:
               st.takeItems(57,250000)
               st.getPlayer().getAppearance().setNameColor(0xff00ff)
	st.getPlayer().broadcastUserInfo();
               return "1.htm"
           if st.getQuestItemsCount(57) <= 250000:
               return "Announcements: No Enought Adena To Select Color!"

       if event == "4":
           if st.getQuestItemsCount(57) > 250000:
               st.takeItems(57,250000)
               st.getPlayer().getAppearance().setNameColor(0x00ffff)
	st.getPlayer().broadcastUserInfo();
               return "1.htm"
           if st.getQuestItemsCount(57) <= 250000:
               return "Announcements: No Enought Adena To Select Color!"

       if event == "5":
           if st.getQuestItemsCount(57) > 250000:
               st.takeItems(57,250000)
               st.getPlayer().getAppearance().setNameColor(0x0000ff)
	st.getPlayer().broadcastUserInfo();
               return "1.htm"
           if st.getQuestItemsCount(57) <= 250000:
               return "Announcements: No Enought Adena To Select Color!"

       if event == "6":
           if st.getQuestItemsCount(57) > 250000:
               st.takeItems(57,250000)
               st.getPlayer().getAppearance().setNameColor(0x0099ff)
	st.getPlayer().broadcastUserInfo();
               return "1.htm"
           if st.getQuestItemsCount(57) <= 250000:
               return "Announcements: No Enought Adena To Select Color!"

       if event == "7":
           if st.getQuestItemsCount(57) > 250000:
               st.takeItems(57,250000)
               st.getPlayer().getAppearance().setNameColor(0x70db93)
	st.getPlayer().broadcastUserInfo();
               return "1.htm"
           if st.getQuestItemsCount(57) <= 250000:
               return "Announcements: No Enought Adena To Select Color!"

       if event == "8":
           if st.getQuestItemsCount(57) > 250000:
               st.takeItems(57,250000)
               st.getPlayer().getAppearance().setNameColor(0x9f9f9f)
	st.getPlayer().broadcastUserInfo();
               return "1.htm"
           if st.getQuestItemsCount(57) <= 250000:
               return "Announcements: No Enought Adena To Select Color!"

       if event == "9":
           if st.getQuestItemsCount(57) > 250000:
               st.takeItems(57,250000)
               st.getPlayer().getAppearance().setNameColor(0xffff00)
	st.getPlayer().broadcastUserInfo();
               return "1.htm"
           if st.getQuestItemsCount(57) <= 250000:
               return "Announcements: No Enought Adena To Select Color!"



   def onTalk (self,npc,player):
       st = player.getQuestState(qn)
       htmltext = "<html><head><body><center>Nao tenho nada para dizer agora.</center></body></html>"
       st.setState(State.STARTED)
       return InitialHtml

QUEST = Quest(QuestId,str(QuestId) + "_" + QuestName,QuestDesc)

for npcId in NPC:
  QUEST.addStartNpc(npcId)
  QUEST.addTalkId(npcId)

 

thanks.

6 answers to this question

Recommended Posts

  • 0
Posted

file kanto etsi den  to exw kanei test sto lew  dokimaseto kai pes mou

 

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

qn = "7800_Titlecolor"

NPC=[7802]
QuestId     = 7800
QuestTitle   = "Titlecolor"
QuestDesc   = "custom"
InitialHtml = "1.htm"

print "Loaded Custom: 7001 Titlecolor"

class Quest (JQuest) :
   def __init__(self,id,title,descr): JQuest.__init__(self,id,title,descr)
   
   def onEvent(self,event,st) :
       htmltext = event

       if event == "1":
           if st.getQuestItemsCount(57) > 250000:
               st.takeItems(57,250000)
               st.getPlayer().getAppearance().setTitleColor(0x009900)
	st.getPlayer().broadcastUserInfo();
               return "1.htm"
           if st.getQuestItemsCount(57) <= 250000:
               return "Announcements: No Enought Adena To Select Color!"
           st.exitQuest(0)

       if event == "2":
           if st.getQuestItemsCount(57) > 250000:
               st.takeItems(57,250000)
               st.getPlayer().getAppearance().setTitleColor(0xff7f00)
	st.getPlayer().broadcastUserInfo();
               return "1.htm"
           if st.getQuestItemsCount(57) <= 250000:
               return "Announcements: No Enought Adena To Select Color!"

       if event == "3":
           if st.getQuestItemsCount(57) > 250000:
               st.takeItems(57,250000)
               st.getPlayer().getAppearance().setTitleColor(0xff00ff)
	st.getPlayer().broadcastUserInfo();
               return "1.htm"
           if st.getQuestItemsCount(57) <= 250000:
               return "Announcements: No Enought Adena To Select Color!"

       if event == "4":
           if st.getQuestItemsCount(57) > 250000:
               st.takeItems(57,250000)
               st.getPlayer().getAppearance().setTitleColor(0x00ffff)
	st.getPlayer().broadcastUserInfo();
               return "1.htm"
           if st.getQuestItemsCount(57) <= 250000:
               return "Announcements: No Enought Adena To Select Color!"

       if event == "5":
           if st.getQuestItemsCount(57) > 250000:
               st.takeItems(57,250000)
               st.getPlayer().getAppearance().setTitleColor(0x0000ff)
	st.getPlayer().broadcastUserInfo();
               return "1.htm"
           if st.getQuestItemsCount(57) <= 250000:
               return "Announcements: No Enought Adena To Select Color!"

       if event == "6":
           if st.getQuestItemsCount(57) > 250000:
               st.takeItems(57,250000)
               st.getPlayer().getAppearance().setTitleColor(0x0099ff)
	st.getPlayer().broadcastUserInfo();
               return "1.htm"
           if st.getQuestItemsCount(57) <= 250000:
               return "Announcements: No Enought Adena To Select Color!"

       if event == "7":
           if st.getQuestItemsCount(57) > 250000:
               st.takeItems(57,250000)
               st.getPlayer().getAppearance().setTitleColor(0x70db93)
	st.getPlayer().broadcastUserInfo();
               return "1.htm"
           if st.getQuestItemsCount(57) <= 250000:
               return "Announcements: No Enought Adena To Select Color!"

       if event == "8":
           if st.getQuestItemsCount(57) > 250000:
               st.takeItems(57,250000)
               st.getPlayer().getAppearance().setTitleColor(0x9f9f9f)
	st.getPlayer().broadcastUserInfo();
               return "1.htm"
           if st.getQuestItemsCount(57) <= 250000:
               return "Announcements: No Enought Adena To Select Color!"

       if event == "9":
           if st.getQuestItemsCount(57) > 250000:
               st.takeItems(57,250000)
               st.getPlayer().getAppearance().setTitleColor(0xffff00)
	st.getPlayer().broadcastUserInfo();
               return "1.htm"
           if st.getQuestItemsCount(57) <= 250000:
               return "Announcements: No Enought Adena To Select Color!"



   def onTalk (self,npc,player):
       st = player.getQuestState(qn)
       htmltext = "<html><head><body><center>Nao tenho nada para dizer agora.</center></body></html>"
       st.setState(State.STARTED)
       return InitialHtml

QUEST = Quest(QuestId,str(QuestId) + "_" + QuestTitle,QuestDesc)

for npcId in NPC:
  QUEST.addStartNpc(npcId)
  QUEST.addTalkId(npcId)

 

 

alla prepei na alla3eis kai pragmata mesa apo to html kai to fakelo pou einai mesa to __init__.py  prepei na to kaneis etsi 7800_Titlecolor giati prin itan etsi 7800_Namecolor

  • 0
Posted

Theos.

 

Eixa kanei oti m eipes kai egw , alla xehasa na allaxw to namecolor sto fakelo Default. :PPP

 

Mhpws xereis twra h mhpws fantazese pws tha mporesoume na to kanoume na menei gia panta kai na mhn feugei me to restart?

  • 0
Posted

giati den pernas to java code mesa sto pack  sou  ?

 

to katebasa kai eixe mono ta html kai to __init__.py.

 

Den xerw ti prepei na allaxw twra sto __init__.py.

 

Douleuei to npc apla thelw na menei to title color gia panta kai na mhn feugei me to rr

  • 0
Posted

ayto den ginete alla mporeis na kaneis to e3eis  na peraseis java code mesa sto pack sou oste  gia  posa pvp  i pk 8eleis na pernei ena color title i name

  • 0
Posted

ayto den ginete alla mporeis na kaneis to e3eis  na peraseis java code mesa sto pack sou oste  gia  posa pvp  i pk 8eleis na pernei ena color title i name

 

Auto to exw perasei :P

 

To exw dei se enan server auto pou s  lew.

 

allazeis to title kai menei gia panta.

 

tespa, ty gia thn bohthia

Guest
This topic is now closed to further replies.


  • Posts

    • Please note:i will provide you with forum address for registration once buyer sends money(my commission) to forum guarantor's payment details. You can register on forum in any day and in any time,which are convenient for you,send code word in private message to forum guarantor(you will receive code word from buyer). If buyer does not purchase your product,you will need to wait private message(answer) from forum guarantor to compare code word. I will invite you in "forum deal". I will add your name,which you registered on forum,in "forum deal". Then you write in "forum deal": "buyer did not purchase product" and add code word(you will have this right according to clause in forum questionnaire). Forum guarantor will refund buyer((in full amount). If buyer purchases your product,buyer notifies forum guarantor and forum guarantor will send money to my payment details.   Sports exercise machines,jacuzzi,building materials,cosmetics,perfumes,shoes,clothing,furniture,bags,televisions,music centers,telephones,laptops,tablet computers,refrigerators,washing machines,microwaves,fans.  
    • Here is a L2JMobius Classic Interlude FULL server. The share includes full server source+datapack, patch, interface and the P110 client. The original build is L2JMobius. However it was bought from a user called "ClassicLude (https://classic-lude.org/)" which is also a huge scammer, selling free Mobius files for $500. I could not believe someone actually bought this, yet here we are.    Unfortunately the admin is a scammer and refused to pay his remaining balance of over $150 to me since he is too busy "working for Bill Gates" and opening the next big mega mall in ChatGPT city therefore not having enough money. The server itself garnered a massive 30 players so I can't really tell you if this is usable. Knowing its backstory and that it is Mobius based i can surmise that it is NOT suitable for serious users. This build is the result of typical AI slop and vibecode "admins" thinking they just "one shotted L2J" because they discovered how to prompt an agent.   I have made the following changes, some of which were regrettably butchered by the admin after he discovered how to download Cursor. Not much more was done due to the absolute displeasure and misery of having to work on a Mobius server.   - Updated files to JDK 22 - Added l2 reborn community board - Added preview system for skins including mounts/agathions - Added AIO npc (buffer/store/teleporter) - Added QuickVar system - Added Ranking system (pvp/pk/online/level and moar) - Added raid boss list on community board - Added drop search+shift click with itemtooltip on community board and npc - Added l2 reborn styled flash windows and window borders and L2UI_CT1 - Added custom donate coin icon in the store swf - Fixed some random bugs like Hot Springs monsters not giving the disease     Links Source+Datapack: https://drive.google.com/file/d/1uMaTzSxKtnLxXC-VoZyHYW_OXq7Oof5L/view?usp=sharing Interface+Compiler+Client tools: https://drive.google.com/file/d/14IJWyYSDOjMycHnJ749H9dRXuv2JeYK3/view?usp=sharing Full Client: https://drive.google.com/file/d/1P7Yd9wI0XcWlLMFDPSdfTZgWhW_9JEii/view?usp=sharing
    • I logged in with this system, maybe its the patch shared by greenhope i don't remember i just downloaded it because i love C3 but no l2j or l2off c3 is good everything is buggy and this one too, also it has no geodata and i don't know if it has geoengine because i didn't see the config for it in the config folder. If someone had the latest l2jvn maybe it could be more stable but i don't think so at least without the source, if someone has it to share it that would be good  https://www.mediafire.com/file/mzodnsyi9qn4ap7/patch+560+for+c3.rar/file
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..