Page: << 1 >>
Party Warping
Author Message
Post #204767 Party Warping

im trying to write a quest that requires a party to start. Also im trying to use the PartyWarp action an the eo serv is showing PartyWarp isn't a valid Action its unknown. Anyway I can get this quest to use a function that warps a party


Main


{


questname "Dungeon"


version 1.0



}


State begin



{


desc "Talk to Dungeon Master"


rule DoneDaily(1)goto start



}


State start



{


desc "Talk to Dungeon Master"


action AddNpcText(17, "Haul only a team of 2 or more can enter this dungeon");


action AddNpcInput(17, 1, "understood ill get my party");


action AddNpcInput(17, 2, "Ill never find anyone to join");


rule InputNpc(1) goto talk



}


State talk



{


desc "Talk to Dungeon Master"


action AddNpcText(17, "By order of the King I must inform you, Before entering this dungeon you an your team need to know it isnt for the faint of heart.");


action AddNpcText(17, "Enter at your on risk.");


rule InParty() goto enter



}


 


State enter



{


desc "Enter Dungeon"


action PartyWarp(203,0,9);


rule EnterMap(203) goto startquest



}


State startquest



{


desc "Kill The Boss"


rule KilledNpcs(194, 1) goto talk1



}


State talk1



{


desc "Talk To Dungeon Master"


action AddNpcText(17, "You an your party Successfully completed this dungeon");


action AddNpcText(17, "Heres your reward");


rule TalkedToNpc(17) goto reward



}


State reward



{


desc "Talk To Dungeon Master"


action PartyWarp(105,7,5);


action ResetDaily();




}


5 years, 8 weeks ago
Post #204768 Re: Party Warping

As far as I've seen, vanilla EOSERV does not have a PartyWarp quest action. I assume you're looking at EOSource documentation, which has some tacked-on features.

This wouldn't be terribly difficult implement in EOSERV. You would have to know how to modify the source code, though.

---
Want to learn to pixel?
Pixelsource.org
5 years, 8 weeks ago
Post #204771 Re: Party Warping

Im using eo-server i have the uncomplied version i believe i have codeblocks llink to it but i don't know how to program or anything

5 years, 8 weeks ago
Post #204772 Re: Party Warping
Fluster posted: (1st Mar 2019, 11:12 pm)

Im using eo-server i have the uncomplied version i believe i have codeblocks llink to it but i don't know how to program or anything


You're going to want to either find a programmer willing to join your project, or start learning C++.
---
Want to learn to pixel?
Pixelsource.org
5 years, 7 weeks ago
Page: << 1 >>