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

    • First, you need to understand what you're doing and what you want to achieve. You have to choose a server core. After that, decide what you want your server to include, code it, modify the client to fit your server, go public, and drink champagne.   If you know how to code, creating a server is relatively easy — a few months of work and you can make it happen. Modifying the client is a completely different story. There’s a lack of tutorials, tools, and source materials. I’m currently working on the client myself, and I’ve already spent over three weeks just trying to get started due to the lack of information. If you don’t have the knowledge and experience, you’ll need a team and a bag of money — but realistically, it just won’t succeed.
    • The server has been online and stable for over 2 months now, and we’re still going strong! No wipes, no shortcuts ~ just continuous work, daily fixes, events, and improvements to ensure the best possible experience.   Great News! 🔥 CHAPTER II IS COMING — GRACIA FINAL 🔥 On February 16, L2Elixir enters a new era. The server will be officially updated to Gracia Final, opening Chapter II of our journey. Expect new content, improvements, and surprises that will refresh the gameplay while keeping the classic Gracia Final spirit alive.   More challenges, more competition, and more reasons to log in.   📅 Update Date: February 16 ⚔️ Chapter II: Gracia Final This is not a reset. This is evolution.   Prepare yourselves — Chapter II begins soon.   Website: https://l2elixir.org/ Discord: https://discord.gg/5ydPHvhbxs    
    • Server owners, Top.MaxCheaters.com is now live and accepting Lineage 2 server listings. There is no voting, no rankings manipulation, and no paid advantages. Visibility is clean and equal, and early listings naturally appear at the top while the platform grows. If your server is active, it should already be listed. Submit here 👉https://Top.MaxCheaters.com This platform is part of the MaxCheaters.com network and is being built as a long-term reference point for the Lineage 2 community. — MaxCheaters.com Team
    • Hello! We are Genesis, small team that works on new Lineage 2 project. Our goal with this project is to create a fresh new place to play — built around real community feedback, with no aggressive pay-to-win donations and with carefully thought-out quality-of-life improvements, balance changes etc. We believe that even tho we all love this game, everyone has at least one or two things they would like to change in the game to make it more enjoyable. Thats why we want the comunity feedback to shape our server. Main information about the server: • Interlude Classic version • Rates: EXP x4 SP x2 Loot x2, Spoil x2 (not set in stone, might be changed) • Local & Server-Side Dualbox Protection • Complete, Clear Website with Integrated Account Panel (Game account creation, direct communication with support, bug reporting, voting and reward system) • Launcher – External Game Login System: manage all your accounts inside the launcher, “Play” button logs you directly into the game server Here are list of few changes we already added/decided to add to the server: • Reworked Client to fit interlude Era with upgraded Classic Ui • Custom Antibot system • Custom AntiDualBox System • Offline shops • Offline shop with buffs (available only in towns) • Mass Sweeper added to the game • Newbie buffs available all the way to lvl 76 (nothing crazy, but its free) • Slight balance change to Destroyer damage with Polearm and Cancel spell from SPS • PvP zones on every Epic spawn spot • Overbuffing blocked • And more! Since we put big focus on community feedback and suggestions, we are looking for people for our internal tests, that will discuss whether current changes „fit” into the game and maybe suggest some changes themselves. If what you’ve just read sounds interesting to you, if you want to help creating server fitted for you, join our server Discord. Help us to understand what Lineage 2 players in 2026 actually expect and need — so we can meet those expectations and avoid becoming just another server that dies a natural death.     Even if you’re not interested in playing right now, but you are a long-time Lineage 2 player, feel free to join our community. We would greatly appreciate your experience and feedback to help us improve and develop our project. Join the growing L2Genesis community: https://discord.gg/mcuHsQzNCm Also check our website: https://l2genesis.com/
  • 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..