Jump to content

Question

Posted

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?

3 answers to this question

Recommended Posts

Posted
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..

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...