Jump to content

Malzahax

Members
  • Posts

    667
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by Malzahax

  1. If you read my timeline, you will surely understand than L2J needs more than "fixes" in order to be retail like. I don't really get your own work statut (project which doesn't correct big issues is kinda pointless imho).

     

    I don't know your sources, but if it's plain L2J well :P. So many things to correct. I begun my own pack 8 months ago, and I got the feeling to have the same amount to correct.

     

    Anyway gl to you, that is still a good mean to learn L2J/java.

     

    because i know baggos he doesnt want to make it retail like, just correct most well known bugs and run it for pvp servers :P

  2. Hi guys...I want to fix nobless npc....If one char want to be nobless i want to have only 4 items...I don't want to have subclass or anything else can explain me how can do this?? :/ ty

     

     

     

    qn = "6666_NoblessTrader"

     

    NPC=[66666]

    NOBLESS_TIARA=7694

    GOLD_BAR=3470

    QuestId    = 6666

    QuestName  = "NoblessTrade"

    QuestDesc  = "custom"

    InitialHtml = "31739-1.htm"

     

    print "Nobless Trader (66666) Enabled..."

     

    class Quest (JQuest) :

     

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

     

    def onEvent(self,event,st):

                  htmltext = "<html><head><body>I have nothing to say you</body></html>"

                  cond = st.getInt("cond")

                  count=st.getQuestItemsCount(GOLD_BAR)

                  if event == "31739-3.htm" :

                      if cond == 0 and st.getPlayer().isSubClassActive() :

                          if st.getPlayer().getLevel() >= 70 and count > 1:

                                htmltext=event

                                st.set("cond","0")

                                st.getPlayer().setNoble(True)

                                st.giveItems(NOBLESS_TIARA,1)

                                st.playSound("ItemSound.quest_finish")

                                st.setState(COMPLETED)

                                st.takeItems(GOLD_BAR,2)

                          else :

                                htmltext="31739-2.htm"

                                st.exitQuest(1)

                      else :

                          htmltext="31739-2.htm"

                          st.exitQuest(1)

                  return htmltext

     

    def onTalk (self,npc,player):

      htmltext = "<html><head><body>I have nothing to say you</body></html>"

              st = player.getQuestState(qn)

              if not st : return htmltext

              npcId = npc.getNpcId()

              id = st.getState()

              if id == CREATED :

                  st.set("cond","0")

                  htmltext="31739-1.htm"

              elif id == COMPLETED :

                  htmltext = "<html><head><body>This quest have already been completed.</body></html>"

              else :

                  st.exitQuest(1)

              return htmltext

     

     

    QUEST = Quest(6666,qn,"custom")

    CREATED    = State('Start', QUEST)

    STARTING    = State('Starting', QUEST)

    STARTED    = State('Started', QUEST)

    COMPLETED  = State('Completed', QUEST)

    QUEST.setInitialState(CREATED)

     

    for npcId in NPC:

    QUEST.addStartNpc(npcId)

    QUEST.addTalkId(npcId)

     

     

     

    GOLD_BAR=3470 change id  and name :)

     

    st.takeItems(GOLD_BAR,2) name and count

     

     

  3. I told you in this topic that Vhalior/Klebitz/Harpun is a not skilled scammer who can only copy changes from other packs :) This project is already based on my source files where Harpun few months ago be a developer.

    And at this time Vhalior/Harpun/klebitz with Matim is creating new project for sale named L2Desire http://l2desire.com.pl/ L2Sigmo copy/paste.... with same features

    SCAMMER SCAMMER SCAMMER :) But nobody trust me :) He only wants money!!

     

     

    vhalior / matim pwned?

  4. Hello everyone,

    Here I introduce you with a new event :)

    in this event you can claim rewards for certain achievements you make ingame

    For now there's only a small list of achievements, there'll be more soon :)

     

    For now there are the following achievements:

     

    1) Champion - Gain level 80 - Reward: 5 apiga

    2) Hero - Gain hero status - Reward: 15 apiga

    3) Noble - Gain noblesse status - Reward: 10 apiga

    4) Zaishen - Gain a +16 weapon, level 80 and hero status - Reward: 15 apiga

    5) Norn - Gain 4000 pvps - Reward: 20 apiga

    6) Commander - Be a clan leader of a level 8 clan, level 80 and hero status - Reward: 15 apiga

    7) Darkbringer - Gain 1500 pks - Reward: 20 apiga

    8) Bravery - Have 3 subclasses - Reward: 10 apiga

    9) Dealer - have 2.1bil adena, level 80 and hero status - Reward: 5 apiga

     

    Hope you'll enjoy it :) this topic will be updated with new achievements as soon as there'll be any, as well as any current achievement changes!

    by the Achievment NPC you can clain your reward and view the statues of your achievment.

    i got ideas for low lvls till lvl 52 but to give some boost on xp :) if y want to make a list pm me

  5. The "You gain noblesse status" is a system message written on the core side of server mate.not on client one. Try via eclipse

     

    activeChar.sendMessage("You gain noblesse status"); on l2pcinstance

    if(noble > 0)
    	{
    		setNoble(true);
                            activeChar.sendMessage("You gain noblesse status");
    	}

×
×
  • Create New...