-
2 Attachment(s)
[Razi46] Woodlander Pack Quest!
-------------------
INFO
-------------------
Hey guys! I'm back to Quest coding! If anyone ever remembered my past Quests that I've made :) This quest I've made is called Woodlander Pack! Consisting of 2 NPCs. Namely Elf and Woodlander. This isn't a boss stage but if you want it, you can PM me and I can help you ^^
-------------------
PICS
-------------------
Attachment 111306Attachment 111307
-------------------
DOWNLOAD
-------------------
Mediafire: Quest.rar
Sendspace: Quest.rar
Depositfiles: Quest.rar
Filebeam: Quest.rar
password: razi46
-------------------
INSTALLATION
-------------------
Copy 'Woodlander.mrs' from the file you downloaded into your Gunz Client/Model/NPC >
Copy this into your system/NPC.xml
Code:
<NPC id="123"
name="Woodlander"
desc="Woodlander"
meshname="Woodlander"
scale="1.2 1.2 1.2"
grade="elite"
max_hp="150"
max_ap="100"
int="4"
agility="4"
view_angle="15"
dc="8"
offensetype="1"
dyingtime="3">
<COLLISION radius="35" height="160" />
<ATTACK type="melee" range="270" weaponitem_id="300015" />
<FLAG never_blasted="true" never_pushed="true" never_attack_cancel="true" />
<SPEED default="230" />
<DROP table="W01" />
</NPC>
<NPC id="124"
name="Elf"
desc="Elf"
meshname="elf"
scale="0.8 0.8 0.8"
grade="elite"
max_hp="100"
max_ap="50"
int="4"
agility="4"
view_angle="15"
dc="8"
offensetype="1"
dyingtime="3">
<COLLISION radius="35" height="130" />
<ATTACK type="melee" range="270" weaponitem_id="300015" />
<FLAG never_blasted="true" never_pushed="true" never_attack_cancel="true" />
<SPEED default="220" />
<SKILL id="421" />
<SKILL id="411" />
<DROP table="W02" />
</NPC>
Copy this into your matchserver/npcset.xml
Code:
<!-- Woodlander Pack -->
<NPCSET id="121" name="W01" basenpc="123"> <!-- Random 1 -->
<ADDNPC npc_id="124" min_rate="15" max_rate="15" /> 병정 고블린(이벤트용)
</NPCSET>
Copy this into your system/scenario.xml
Code:
<!-- SCENARIO.XML -->
<SPECIAL_SCENARIO id="99"
title="Woodlander Pack"
QL="1"
DC="1"
mapset="Dungeon"
XP="35000"
BP="9000">
<SACRI_ITEM itemid="200011" /> <!-- 큰두골 -->
<MAP dice="1" key_sector="306" key_npc="123" boss="false" >
<NPCSET_ARRAY>W01/W01/W01/W01</NPCSET_ARRAY>
<JACO count="2" tick="5" min_npc="0" max_npc="12">
<NPC npcid="123" rate="0.5" />
<NPC npcid="124" rate="0.2" />
<NPC npcid="123" rate="0.3" />
</JACO>
</MAP>
<MAP dice="2" key_sector="306" key_npc="123" boss="false">
<NPCSET_ARRAY>W01/W01/W01/W01</NPCSET_ARRAY>
<JACO count="2" tick="5" min_npc="0" max_npc="12">
<NPC npcid="123" rate="0.5" />
<NPC npcid="124" rate="0.2" />
<NPC npcid="123" rate="0.3" />
</JACO>
</MAP>
<MAP dice="3" key_sector="306" key_npc="123" boss="false">
<NPCSET_ARRAY>W01/W01/W01/W01</NPCSET_ARRAY>
<JACO count="2" tick="5" min_npc="0" max_npc="12">
<NPC npcid="123" rate="0.5" />
<NPC npcid="124" rate="0.2" />
<NPC npcid="123" rate="0.3" />
</JACO>
</MAP>
<MAP dice="4" key_sector="306" key_npc="123" boss="false">
<NPCSET_ARRAY>W01/W01/W01/W01</NPCSET_ARRAY>
<JACO count="2" tick="5" min_npc="0" max_npc="12">
<NPC npcid="123" rate="0.5" />
<NPC npcid="124" rate="0.2" />
<NPC npcid="123" rate="0.3" />
</JACO>
</MAP>
<MAP dice="5" key_sector="306" key_npc="123" boss="false">
<NPCSET_ARRAY>W01/W01/W01/W01</NPCSET_ARRAY>
<JACO count="2" tick="5" min_npc="0" max_npc="12">
<NPC npcid="123" rate="0.5" />
<NPC npcid="124" rate="0.2" />
<NPC npcid="123" rate="0.3" />
</JACO>
</MAP>
<MAP dice="6" key_sector="306" key_npc="123" boss="false">
<NPCSET_ARRAY>W01/W01/W01/W01</NPCSET_ARRAY>
<JACO count="2" tick="5" min_npc="0" max_npc="12">
<NPC npcid="123" rate="0.5" />
<NPC npcid="124" rate="0.2" />
<NPC npcid="123" rate="0.3" />
</JACO>
</MAP>
</SPECIAL_SCENARIO>
Copy this into your system/droptable.xml
Code:
<!-- DROPTABLE.XML -->
<DROPSET id="10" name="W01">
<ITEMSET QL="1">
<ITEM id="hp1" rate="0.20" />
<ITEM id="ap1" rate="0.20" />
<ITEM id="mag1" rate="0.20" />
<ITEM id="525101" rate="0.20" rent_period="168" /> <!-- 날고기 -->
</ITEMSET>
</DROPSET>
<DROPSET id="9" name="W02">
<ITEMSET QL="1">
<ITEM id="hp1" rate="0.20" />
<ITEM id="ap1" rate="0.20" />
<ITEM id="mag1" rate="0.20" />
<ITEM id="600101" rate="0.20" rent_period="168" /> <!-- 날고기 -->
</ITEMSET>
</DROPSET>
Copy this into your model/NPC.xml
Code:
<!-- /model/NPC.XML -->
<AddXml name="Woodlander" filename="model/npc/Woodlander/woodlander.xml" autoload = "false"> </AddXml>
<AddXml name="elf" filename="model/npc/Woodlander/elf.xml" autoload = "false"> </AddXml>
-------------------
CREDITS
-------------------
razi46 (for the coding and everything)
MAIET (for the models and animations)
Please do Like this post if it helped :)
-------------------
FAQ
-------------------
Q: I can't start the quest!
A: You probably screwed up the scenario.xml
Q: When I enter the game, I crash!
A: -You probably didn't put the npc.xml , or accidentally edited it wrongly. Check for the open <NPC and closing </NPC>, or check your model/npc.xml , make sure you have added it properly. Please add it within the </XML> tag.
-PLEASE CHECK THAT YOU ARE USING A 1.5 CLIENT SINCE OLDER VERSIONS CANT READ THE NEW ELU FORMAT.
Q: The NPCs don't drop items!
A: Make sure you have properly added the droptable code.
-------------------
EDITS
-------------------
-Added FAQ section.
-Added Edits section.
-Added mirrors to avoid dead links.
-Added second answer to FAQ.
-
Re: [Razi46] Woodlander Pack Quest!
Lol nice, :)
its not hard but good job :D
- Tankado
-
Re: [Razi46] Woodlander Pack Quest!
-
Re: [Razi46] Woodlander Pack Quest!
looks like Maokai from League of Legends! XD but good release!
-
Re: [Razi46] Woodlander Pack Quest!
@thajj : haha it doesn't >< thankyou ^^
-
Re: [Razi46] Woodlander Pack Quest!
that will not do not I get anything, trash crap that manages that because no good.
-
Re: [Razi46] Woodlander Pack Quest!
-
Re: [Razi46] Woodlander Pack Quest!
Good Job Like Thanks !!!!! :D:
-
Re: [Razi46] Woodlander Pack Quest!
Quote:
Originally Posted by
megol
that will not do not I get anything, trash crap that manages that because no good.
I don't understand what are you trying to say. Can you use Google translator?
Quote:
Originally Posted by
jur13n
ingame screen plawks
i hope someone can screenshot for me the quest >< its all there is in the picture i provided.
-
Re: [Razi46] Woodlander Pack Quest!
I added everything correctly but my game still crashed when I try to fricking join it:D
-
Re: [Razi46] Woodlander Pack Quest!
Quote:
Originally Posted by
smekdown
I added everything correctly but my game still crashed when I try to fricking join it:D
have you added the file Woodlander.mrs into the correct folder? have you added the code to /model/NPC.xml correctly? Or you may have added the system/npc.xml wrongly. CHECK AGAIN.
-
Re: [Razi46] Woodlander Pack Quest!
Quote:
Originally Posted by
razi46
have you added the file Woodlander.mrs into the correct folder? have you added the code to /model/NPC.xml correctly? Or you may have added the system/npc.xml wrongly. CHECK AGAIN.
I sure did, replaced them with my matchservers files. I just crash when I make a game and then start it( use to have it with more quests0,0 ) Any ways thnx for the boss^.^ ill try fixing it again
-
Re: [Razi46] Woodlander Pack Quest!
Can bee added ou 2008 version?
-
Re: [Razi46] Woodlander Pack Quest!
-
Re: [Razi46] Woodlander Pack Quest!
Quote:
Originally Posted by
Juliow
Can bee added ou 2008 version?
Yup! :)
EDIT: My mistake, you cant add it to older versions. 1.5 is working fine.
Quote:
Originally Posted by
smekdown
I sure did, replaced them with my matchservers files. I just crash when I make a game and then start it( use to have it with more quests0,0 ) Any ways thnx for the boss^.^ ill try fixing it again
can you post your FULL scenario.xml, npc.xml, dropable.xml, /model/npc.xml here?
so that i can clarify that you added everything correctly.
-
Re: [Razi46] Woodlander Pack Quest!
-
Re: [Razi46] Woodlander Pack Quest!
You can only at the quest in 1.5 clients. The elu format in the Woodlander.mrs is a NEW version that only the 1.5 could read.
-
Re: [Razi46] Woodlander Pack Quest!
Quote:
Originally Posted by
razi46
You can only at the quest in 1.5 clients. The elu format in the Woodlander.mrs is a NEW version that only the 1.5 could read.
You could add the new ELU information to the 2007 source o.o
-
Re: [Razi46] Woodlander Pack Quest!
So cannot be added at 2008?
-
Re: [Razi46] Woodlander Pack Quest!
Quote:
Originally Posted by
Juliow
So cannot be added at 2008?
No, only at 2011, or 2007 with a source edit.
-
Re: [Razi46] Woodlander Pack Quest!
its not working for me -.-,
when i start the quest, i see loading screen 1 sec than crach.
i have add new elu format
(duluxe runnable)
anyway, thx for help me if u help :P
- Tankado
-
Re: [Razi46] Woodlander Pack Quest!
Tankado, could you post you mlog, and your SCENARIO.xml here in a code? Just gonna make sure you add to the right place.
-
Re: [Razi46] Woodlander Pack Quest!
Razi46, i have made too custom quest so i know where to past scenario.xml, but i post last row of my mlog
-
Re: [Razi46] Woodlander Pack Quest!
Quote:
Originally Posted by
Tankado
Razi46, i have made too custom quest so i know where to past scenario.xml, but i post last row of my mlog
you know something, i've said already in my PMs and here to post your scenario.xml and also your mlog.txt?
You dont seem to understand do you? I'm trying to help here, but you're refusing to follow my instructions. This is SO THAT I CAN HELP YOU.
EDIT: I found the error already. You didn't add npcset.xml, refer to my thread again.
-
Re: [Razi46] Woodlander Pack Quest!
This should be a wonderful Tutorial on how to make a new quest than a release.:?:
-
Re: [Razi46] Woodlander Pack Quest!
Quote:
Originally Posted by
Dolan
This should be a wonderful Tutorial on how to make a new quest than a release.:?:
well, i've already created a tutorial on how to create the NPCs. [Easy-Tut] Creating an NPC
-
Re: [Razi46] Woodlander Pack Quest!