SubclassWithItemAndNoQuest

Support for the latest build of L2J Server, get help here with installations, upgrades, problems.
Do not post bugs reports here, use viewforum.php?f=77 instead.
There is no support for other server builds than the official provided by l2jserver.com
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
User avatar
Foxiksis
Posts: 22
Joined: Tue Jun 28, 2011 9:03 am

SubclassWithItemAndNoQuest

Post by Foxiksis »

Good all times of the day, I have a question)

It is possible to do so subclass skills can be taken without the quest and things for him ...
User avatar
MELERIX
L2j Veteran
L2j Veteran
Posts: 6667
Joined: Sat Sep 23, 2006 11:31 pm
Location: Chile
Contact:

Re: SubclassWithItemAndNoQuest

Post by MELERIX »

ofc ;)

Character.properties

Code: Select all

# Allow player to sub-class without checking for unique quest items.# Default: FalseAltSubClassWithoutQuests = True
User avatar
Foxiksis
Posts: 22
Joined: Tue Jun 28, 2011 9:03 am

Re: SubclassWithItemAndNoQuest

Post by Foxiksis »

I want to quest did not request things at once and everything was done without any quests

# ITEM
ECTOPLASM=9787
STABILIZED_ECTOPLASM=9786
ORDER=9788
GLASS_JAGUAR_CRYSTAL=9789
BOOK_OF_SEAL=9790
ADENA=57
TRANSFORM_BOOK=9648
Image

Code: Select all

 def onAdvEvent (self,event,npc, player) :    htmltext = event    st = player.getQuestState(qn)    if not st : return    id = st.getState()    cond = st.getInt("cond")    if event == "30832-02.htm" :       st.set("cond","1")       st.setState(State.STARTED)       st.giveItems(TRANSFORM_BOOK,1)       st.playSound("ItemSound.quest_finish")       st.setState(State.COMPLETED)       st.exitQuest(0)
Thx all...
Post Reply