perfect posted: (3rd Aug 2011 12:35 am)
Nvm, posting it in Sausages pastebin instead..
Use my quest as a reference to fix yours up.:)
- I was going to rewrite the quest for you but i decided you won't learn if u don't attempt to fix it yourself ;p
ok i tryed to see what ur quest had that mine was missing but i still cant fix it can u take the sections that i screwed up on and post em for me cause i just cant see what i did wrong
Updated Quest:
Main
{
questname "The Octo Quest"
version 1.0
}
State Begin
{
desc "The Octo Quest"
action AddNpcText(3, "Hello" );
action AddNpcText(3, "Would you like a Lenz of truth?" );
action AddNpcInput(3, 1, "Yes");
action AddNpcInput(3, 2, "No ty i'm a puss");
rule InputNpc(1) goto Yes
rule InputNpc(2) goto Quit
}
State Yes
{
action AddNpcText(3, "Now go kill The Mother bat and then Come back to me." );
desc "Kill Mother Bat In the cave"
rule KilledNpcs(305, 1) goto Octopus
}
State Quit
{
action AddNpcText(3, "Wow You really are a puss good bye" );
action restart()
}
State Octopus
{
action AddNpcText(3, "Now go under the waterfall and kill a Octopus and then Come back to me." );
desc "Kill One baby Octopus"
rule KilledNpcs(286, 1) goto Reward
}
State Reward
{
action AddNpcText(3, "Well you have my congrats now you get a Lenz of truth");
action GiveItem(421, 1);
action End();
}