EOSERV Forum > Lounge > Can any1 make me a quest?
Topic is locked.
Page: << 1 >>
Can any1 make me a quest?
Author Message
Post #50553 Can any1 make me a quest?


Well i cant find a guide howto make a quest so i decided to see if any1 could make 1 for me =D

i just want a started quest that says "Hello kill 10 goats for a suprise!"

and make that a quest =D if any1 could

---
stay tuned.
14 years, 29 weeks ago
Post #50556 Re: Can any1 make me a quest?

http://webcache.googleusercontent.com/search?q=cache:http://www.endless-edge.com/eoplus.htmhttp://webcache.googleusercontent.com/search?q=cache:http://www.endless-edge.com/eoplus.htm


That's the link to use my quest guide. I made quests recently, and you have to add them into the EOSERV source to get them working. Note: The quests that I posted are outdated and are leaky, Apollo's Vodka EOSERV release has new updated working quests

---
http://www.addipop.com
14 years, 29 weeks ago
Post #50557 Re: Can any1 make me a quest?


ty so much addison =D

---
stay tuned.
14 years, 29 weeks ago
Post #50603 Re: Can any1 make me a quest?

i dont know if i need to sent it on file but i make one for you. its working on vodka and its reapeated. here it is:

Main
{
    questname     "Kill the goat"
    version        1.0
}

State Begin
{
    desc        "Talk to farmer"
   
    action    AddNpcChat( 6 , "Hello. I got a quest for you strainger" );
    action    AddNpcText( 6 , "Kill 10 goats for me hero. And a suprise waits for you." );

    rule         TalkedToNpc(6) goto Killgoats
}

State Killgoats
{
    desc        "Kill 10 goats"
   
    rule        KilledNpcs(7,10) goto Rewards
}

State Rewards
{
    desc        "Talk to farmer"

    action    AddNpcText(6 , "Congratulations. Here is your reward.");

    rule        TalkedToNpc(6) goto End
}

State End
{
    action    GiveExp(500);
    action    GiveItem(1,5000);
    action    Reset( );

}


Notes: i named your quest npc farmer and gave him the quest id 6. you set that on the pub files. For that reason you have to name that quest like that: 00006.eqf

you can change the dialogs if you want, and the rewards.

if you change the reset into end that make the quest not repeatable.

the rule killednpc(7,10) shows the id of the monster you need to kill(goat is 7 on original eo pubs) and 10 is the amount of them u need to kill. Hope i helped.


14 years, 29 weeks ago
Post #50648 Re: Can any1 make me a quest?


what do i change in pub files?

---
stay tuned.
14 years, 29 weeks ago
Post #50655 Re: Can any1 make me a quest?

then npc that you want to give you the quest. That npc you edit on pub files. You edit the npc type. From " 0-Non-compat" you make it "15-Quest- and then on quest script you type the quest id. in your case is the number 6. See image below.





On my example i edited ayla.

14 years, 29 weeks ago
Post #50662 Re: Can any1 make me a quest?


Does it work with eoserv?

EDIT: hmm cant seem to get it to work on vodka.

---
stay tuned.
14 years, 29 weeks ago
Post #50666 Re: Can any1 make me a quest?
andrewbob1 posted: (7th Oct 2010 10:22 pm)


Does it work with eoserv?

EDIT: hmm cant seem to get it to work on vodka.


i dont know if that works with other server except vodka. i choosed the one that can make quest. I dont know why it dont work for the rest.
But i am 100% sure it work on vodka. Here are the steps you must follow:
1. Choose what npc you want to be your farmer. I choosed Ayla. Then open pub files and edit it like my image. Quest id 6. Make sure none else npc got the id 6. (maybe you want to choose another number, but on my example i choosed randomly the 6).
2. Write that quest and save it like 00006.eqf (cause the file name must be same with the 1st npc id that appears on your quest. In my example is the id 6).
3. all changes must be with your server closed. Or your pub files will corrupt.

If you do these i dont know any reason why not to work that very simple quest....
14 years, 29 weeks ago
Post #50667 Re: Can any1 make me a quest?


lol i forgot to save on pub edit XD and yes it works on eoserv thx dude u rock!

EDIT: ok this is odd when i kill goats it dosnt work xD it shows up as 0 and i cant click on npc farmer when i kill 10 goats error maybe?

---
stay tuned.
14 years, 29 weeks ago
Page: << 1 >>
Topic is locked.
EOSERV Forum > Lounge > Can any1 make me a quest?