Page: << 1 >>
EO+ error
Author Message
Post #203362 EO+ error

I am getting a error when I run my quest. It's saying when I put 


action AddNpcInput(1, 1, "Yes");


It's saying NpcInput is a unknown command any ideas?

6 years, 44 weeks ago
Post #203363 Re: EO+ error
action             AddNpcInput( 1 , 1 , "text");
6 years, 44 weeks ago
Post #203364 Re: EO+ error

Is it my spacing?


state Begin

{

    desc "Your course your, choice"

action AddNpcText(1, "You have awoken! the prophecy was correct!");

    action AddNpcText(1, "Now that you have awoken, it's time to pick a path!");

action AddNpcText(1, "There are three paths you can pick from...Are you ready?");

action AddNpcInput( 1 , 1, "Yes");

action AddNpcInput( 1 , 2, "No");

rule NpcInput(1) goto Yes

    rule NpcInput(2) goto No

}


my exact Code I have so far it's saying action NpcInput isn't a known command.

6 years, 44 weeks ago
Post #203366 Re: EO+ error

The error said NpcInput isn't valid. That is correct. The rule should be InputNpc(id).

I recommend this: http://www.endless-edge.com/npp-plugin.htm

6 years, 44 weeks ago
Post #203367 Re: EO+ error

Then why do I see everyone using action AddNpcInput? I am confused I am using your plugin thank you for that btw lol. Even yourself in your tutorials use action AddNpcInput sorry I am just trying to get it to work 


Never mind I got it to work I made a silly mistake :) Can someone delete this please :)

6 years, 44 weeks ago
Page: << 1 >>