EOSERV Forum > Lounge > QuestMakerClass in PHP - Demo
Topic is locked.
Page: << 1 >>
QuestMakerClass in PHP - Demo
Author Message
Post #49245 QuestMakerClass in PHP - Demo

I have started to make this about 5 hours ago now and it can make the entire "Skywonder Quest" with ease :)

There is still loads more to add but it works :)

Enjoy, I will do a write-up and tutorial when I get more of the class complete.

Edit:

I have now added all commands and it all works 100%. Please note that this is for Apollo's Vodka release ONLY.

http://pastebin.com/UG97ywTi - Save this as "eoquestmaker.class.php"

Quests:

[Skywonder Rescue] http://pastebin.com/uXZGVKLn - Save this in the same directory and run :)

Please feel free to use this class in your own projects. I shall work on an online quest maker next so that you can use it to make your own quests.

---
I am an alien and not crazy!
14 years, 31 weeks ago
Post #49313 Re: QuestMakerClass in PHP - Demo

Looks great, though it would be better if there was an interface to add all this to.


One flaw though, it needs to escape the ' and " characters.

14 years, 31 weeks ago
Post #49315 Re: QuestMakerClass in PHP - Demo

I am sure Desmond has most likely modeled his quest maker using my recent "Vodka" release of EOSERV. It doesn't require the use of " \' " to escape the apostophes. It is slightly more authentic to the original EO+ quest designed by Vult-r this way, but his allows for any mistake a Vult-r can make :P

14 years, 31 weeks ago
Post #49317 Re: QuestMakerClass in PHP - Demo

Oh well fair enough, i don't run the servers i just feck with them.

With Desmonds permission i'd like to make something bigger of this.


Edit: [offtopic] Des you should add me on MSN again ~Denny

14 years, 31 weeks ago
Post #49338 Re: QuestMakerClass in PHP - Demo
FrostFÿr posted: (17th Sep 2010 01:51 am)

Oh well fair enough, i don't run the servers i just feck with them.

With Desmonds permission i'd like to make something bigger of this.


Edit: [offtopic] Des you should add me on MSN again ~Denny

I don't have the internet atm so im hi-jacking connections.

I am going to build an interface for this so that people can make quests, This is just the class. I have also changed the class a lot so that it is easier to modify if Apollo adds more features to the quest system.

And yes, It is for the Vodka release :P

And I give permission to use however you like as it's only the class :)
---
I am an alien and not crazy!
14 years, 31 weeks ago
Post #49356 Re: QuestMakerClass in PHP - Demo

I'm still trying to understand, on how to exactly to get this to work. I know I need Apollo's EOSERV, and I save your pastebin as questmaker.class.php.


Is that all?

14 years, 30 weeks ago
Post #49401 Re: QuestMakerClass in PHP - Demo
xIFearlessIxx posted: (17th Sep 2010 08:09 pm)

I'm still trying to understand, on how to exactly to get this to work. I know I need Apollo's EOSERV, and I save your pastebin as questmaker.class.php.


Is that all?

Nope. You need the class and then you use the class in a php driven website to make quests.

Example.

<?php
include_once 'eoquestmaker.class.php';

$q = new EOQuestMaker('My Quest', 1, 0);

$q->SetWorkingState('Begin');
$q->AddNpcText(4, 'Hello There, how are you today?');

$q->SaveToFile('00001.eqf', true);
?>

ect
---
I am an alien and not crazy!
14 years, 30 weeks ago
Post #49404 Re: QuestMakerClass in PHP - Demo

Ah okay. Thanks.

14 years, 30 weeks ago
Page: << 1 >>
Topic is locked.
EOSERV Forum > Lounge > QuestMakerClass in PHP - Demo