Jump to content
  • 0

HELP? Quest npc


greyman15

Question


  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  26
  • Reputation:   2
  • Joined:  06/28/14
  • Last Seen:  

i made my own EMG quest npc but heres what i've done it looks like the the menu doesn't appear..

here's my script code:

//Evil Horn ItemID=923----------50pcs.
//Shell ItemID=935--------------200pcs.
//Majestic Goat ItemID=2256------1pcs.
//TCG Card ItemID=7227----------5pcs.

//Evolved Magestic Goat Quest NPC
turbo_room,135,91,3	script	EMG Quest	736,{
	
	mes "[EMG Quest]";
	mes "Hello there Adventurer?";
	mes "Do you want to accept this";
	mes "Quest to have my Precious Horns";
	mes "as my reward for doing it?";
	menu "Yes",-,"No",No;
	next;
	mes "[EMG Quest]";
	mes "Well let's get started then!";
	mes "first I'll require you to gather";
	mes "some items to complete this task";
	next;
	mes "[EMG Quest]";
	mes "You'll need the following:";
	mes "50 pcs. of Evil Horn";
	mes "200 pcs. of Shell";
	mes "1 pcs. of Majestic Goat";
	mes "and 5 pcs. of TCG Card";
	menu "Yes, I have those SHITS!!",-,"No, I'm starting to gather it";
	next;
	
	mes "[EMG Quest]";
	mes "Do you have them all?";
	if(countitem(923)<=49) goto L_None;
	if(countitem(935)<=199) goto L_None;
	if(countitem(2256)<=1) goto L_None;
	if(countitem(7227)<=4) goto L_None;
	menu "Yes, I have those SHITS!!",-,"No, I'm starting to gather it";
	next;
	mes "[EMG Quest]";
	mes "Here's your reward!";
	mes "I can't belive you gather them all!";
	getitem 5374,1;//Evolved Magestic Goat
	mes "Enjoy! my friend until next time.";
	close;
	L_None:
	mes "[EMG Quest]";
	mes "I guess your fooling me around don't you?";
	atcommand "@doom";
	close;
	No:
	mes "[EMG Quest]";
	mes "Im Just here when you need me.";
	close;
}	

can you check if I've done it wrong?

Link to comment
Share on other sites

3 answers to this question

Recommended Posts


  • Group:  Developer
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  2407
  • Reputation:   613
  • Joined:  07/05/12
  • Last Seen:  

menu "Yes, I have those SHITS!!",-,"No, I'm starting to gather it";

where is the label for "No, I'm starting to gather it" ?

  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  26
  • Reputation:   2
  • Joined:  06/28/14
  • Last Seen:  

menu "Yes, I have those SHITS!!",-,"No, I'm starting to gather it";

where is the label for "No, I'm starting to gather it" ?

 

yeah I forgot it must be the 'No:' at the bottom of the script..

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  135
  • Reputation:   41
  • Joined:  02/05/14
  • Last Seen:  

He means to say change these lines:

menu "Yes, I have those SHITS!!",-,"No, I'm starting to gather it";

Into this:

menu "Yes, I have those SHITS!!",-,"No, I'm starting to gather it",No;
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...