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 ...
SubclassWithItemAndNoQuest
Forum rules
READ NOW: L2j Forums Rules of Conduct
READ NOW: L2j Forums Rules of Conduct
- MELERIX
- L2j Veteran
- Posts: 6667
- Joined: Sat Sep 23, 2006 11:31 pm
- Location: Chile
- Contact:
Re: SubclassWithItemAndNoQuest
ofc 
Character.properties

Character.properties
Code: Select all
# Allow player to sub-class without checking for unique quest items.# Default: FalseAltSubClassWithoutQuests = True
- Foxiksis
- Posts: 22
- Joined: Tue Jun 28, 2011 9:03 am
Re: SubclassWithItemAndNoQuest
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
Thx all...
# ITEM
ECTOPLASM=9787
STABILIZED_ECTOPLASM=9786
ORDER=9788
GLASS_JAGUAR_CRYSTAL=9789
BOOK_OF_SEAL=9790
ADENA=57
TRANSFORM_BOOK=9648

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)