Jump to content
  • 0

Help NPC didn't appear


Question

Posted (edited)

anyone please help me :(
I have try to make a new Wings quest maker
but NPC was didn't appear when I load it
could someone help me with this script
 

abbey03,232,139,3	script	Wings maker	98,{

	mes "[Wings Maker]";  
	mes "Did you wanna Fly ?? I can make it for you,";
	mes "if you bring me the right items."; 
	goto H_top;

H_top:
	menu "Wings",H_01,"Cancel",H_cancel;

//_____________Hat List_______________//


H_01:
menu 	"Bloomy Wings",I_bloom,
	"Wolf Wings",I_wolf,
	"Return to Menu",H_top;

//_____________Item requirements_______________//

//________model___________//
//I_:
//	next;
//	mes "";
//	menu "Make",M_,"Return to Menu",H_top;

I_bloom:
	next;
	menu "Green Bloomy Wing",I_Green,"Yellow Bloomy Wings",I_Yellow,"White Bloomy Wings",I_White,"Dark Bloomy Wings",I_Dark,"Saikos Bloomy Wings",I_Saikos,"Metallish Bloomy Wings",I_Metallish,"Blue Bloomy Wings",I_Blue,"Purple Bloomy Wings",I_Purple,"Pink Bloomy Wings",I_Pink""Pure White Bloomy Wings",I_Pure,"Lemon Bloomy Wings",I_Lemon,"Solar Bloomy Wings",I_Solar,"Return to Menu",H_top;

I_wolf:
	next;
	menu "White Wolf Wing",I_wwolf,"Green Wolf Wings",I_gwolf,"Black Wolf Wings",I_bwolf,"Return to Menu",H_top;

I_Green:
	next;
	mes "20 Dark Green Dye";
	mes "250 transparent plate";
	mes "300 powder of butterfly";
	mes "200 giant butterfly wing";
	mes "100 crystal mirror";
	menu "Make",M_Green,"Return to Menu",H_top;

I_Yellow:
	next;
	mes "20 Lemon Dye";
	mes "250 transparent plate";
	mes "300 powder of butterfly";
	mes "200 giant butterfly wing";
	mes "100 crystal mirror";
	menu "Make",M_Yellow,"Return to Menu",H_top;

I_White:
	next;
	mes "10 White Dye";
	mes "10 Black Dye";
	mes "250 transparent plate";
	mes "300 powder of butterfly";
	mes "200 giant butterfly wing";
	mes "100 crystal mirror";
	menu "Make",M_White,"Return to Menu",H_top;

I_Dark:
	next;
	mes "5 White Dye";
	mes "15 Black Dye";
	mes "250 transparent plate";
	mes "300 powder of butterfly";
	mes "200 giant butterfly wing";
	mes "100 crystal mirror";
	menu "Make",M_Dark,"Return to Menu",H_top;

I_Saikos:
	next;
	mes "10 White Dye";
	mes "5 Cobalt Blue Dye";
	mes "5 Black Dye";
	mes "250 transparent plate";
	mes "300 powder of butterfly";
	mes "200 giant butterfly wing";
	mes "100 crystal mirror";
	menu "Make",M_Saikos,"Return to Menu",H_top;

I_Metallish:
	next;
	mes "8 White Dye";
	mes "10 Cobalt Blue Dye";
	mes "4 Violet Dye";
	mes "250 transparent plate";
	mes "300 powder of butterfly";
	mes "200 giant butterfly wing";
	mes "100 crystal mirror";
	menu "Make",M_Metallish,"Return to Menu",H_top;

I_Blue:
	next;
	mes "10 White Dye";
	mes "10 Cobalt Blue Dye";
	mes "250 transparent plate";
	mes "300 powder of butterfly";
	mes "200 giant butterfly wing";
	mes "100 crystal mirror";
	menu "Make",M_Blue,"Return to Menu",H_top;

I_Purple:
	next;
	mes "20 Violet Dye";
	mes "250 transparent plate";
	mes "300 powder of butterfly";
	mes "200 giant butterfly wing";
	mes "100 crystal mirror";
	menu "Make",M_Purple,"Return to Menu",H_top;

I_Pink:
	next;
	mes "10 White Dye";
	mes "10 Scarlet Dye";
	mes "250 transparent plate";
	mes "300 powder of butterfly";
	mes "200 giant butterfly wing";
	mes "100 crystal mirror";
	menu "Make",M_Pink,"Return to Menu",H_top;

I_Pure:
	next;
	mes "20 White Dye";
	mes "250 transparent plate";
	mes "300 powder of butterfly";
	mes "200 giant butterfly wing";
	mes "100 crystal mirror";
	menu "Make",M_Pure,"Return to Menu",H_top;

I_Lemon:
	next;
	mes "10 White Dye";
	mes "10 Lemon Dye";
	mes "250 transparent plate";
	mes "300 powder of butterfly";
	mes "200 giant butterfly wing";
	mes "100 crystal mirror";
	menu "Make",M_Lemon,"Return to Menu",H_top;

I_Solar:
	next;
	mes "15 Lemon Dye";
	mes "5 Black Dye";
	mes "250 transparent plate";
	mes "300 powder of butterfly";
	mes "200 giant butterfly wing";
	mes "100 crystal mirror";
	menu "Make",M_White,"Return to Menu",H_top;

I_wwolf:
	next;
	mes "20 White Dye";
	mes "300 soft feather";
	mes "200 wolf claw";
	mes "200 fur";
	mes "200 feather";
	menu "Make",M_wwolf,"Return to Menu",H_top;

I_gwolf:
	next;
	mes "10 White Dye";
	mes "10 DarkGreen Dye";
	mes "300 soft feather";
	mes "200 wolf claw";
	mes "200 fur";
	mes "200 feather";
	menu "Make",M_gwolf,"Return to Menu",H_top;

I_bwolf:
	next;
	mes "20 Black Dye";
	mes "300 soft feather";
	mes "200 wolf claw";
	mes "200 fur";
	mes "200 feather";
	menu "Make",M_wwolf,"Return to Menu",H_top;

//_____________deletion and creation of items_______________//

//____________model______________//
//M_:
//	if(countitem()< || countitem()< || Zeny < )
//	goto M_insufficient; 
//	delitem ,;
//	delitem ,;
//	set zeny,zeny-;
//	getitem ,;
//	close;

M_Green:
	if(countitem(7354)<250 || countitem(924)<300 || countitem(7168)<200 || countitem(747)<100 || countitem(979)<20)
	goto M_insufficient; 
	delitem 7354,250;
	delitem 924,300;
	delitem 7168,200;
	delitem 747,100;
	delitem 979,20;
	getitem 30294,1;
	close;

M_Yellow:
	if(countitem(7354)<250 || countitem(924)<300 || countitem(7168)<200 || countitem(747)<100 || countitem(976)<20)
	goto M_insufficient; 
	delitem 7354,250;
	delitem 924,300;
	delitem 7168,200;
	delitem 747,100;
	delitem 976,20;
	getitem 30293,1;
	close;

M_White:
	if(countitem(7354)<250 || countitem(924)<300 || countitem(7168)<200 || countitem(747)<100 || countitem(982)<10 || countitem(983)<10)
	goto M_insufficient; 
	delitem 7354,250;
	delitem 924,300;
	delitem 7168,200;
	delitem 747,100;
	delitem 982,10;
	delitem 983,10;
	getitem 30292,1;
	close;

M_Dark:
	if(countitem(7354)<250 || countitem(924)<300 || countitem(7168)<200 || countitem(747)<100 || countitem(982)<5 || countitem(983)<15)
	goto M_insufficient; 
	delitem 7354,250;
	delitem 924,300;
	delitem 7168,200;
	delitem 747,100;
	delitem 982,5;
	delitem 983,15;
	getitem 30276,1;
	close;

M_Saikos:
	if(countitem(7354)<250 || countitem(924)<300 || countitem(7168)<200 || countitem(747)<100 || countitem(982)<10 || countitem(983)<5 || countitem(978)<5)
	goto M_insufficient; 
	delitem 7354,250;
	delitem 924,300;
	delitem 7168,200;
	delitem 747,100;
	delitem 982,10;
	delitem 983,5;
	delitem 978,5;
	getitem 30287,1;
	close;

M_Metallish:
	if(countitem(7354)<250 || countitem(924)<300 || countitem(7168)<200 || countitem(747)<100 || countitem(982)<8 || countitem(983)<8 || countitem(981)<4)
	goto M_insufficient; 
	delitem 7354,250;
	delitem 924,300;
	delitem 7168,200;
	delitem 747,100;
	delitem 982,8;
	delitem 983,8;
	delitem 981,4;
	getitem 30241,1;
	close;

M_Blue:
	if(countitem(7354)<250 || countitem(924)<300 || countitem(7168)<200 || countitem(747)<100 || countitem(982)<10 || countitem(978)<10)
	goto M_insufficient; 
	delitem 7354,250;
	delitem 924,300;
	delitem 7168,200;
	delitem 747,100;
	delitem 982,10;
	delitem 978,10;
	getitem 30230,1;
	close;

M_Purple:
	if(countitem(7354)<250 || countitem(924)<300 || countitem(7168)<200 || countitem(747)<100 || countitem(981)<20)
	goto M_insufficient; 
	delitem 7354,250;
	delitem 924,300;
	delitem 7168,200;
	delitem 747,100;
	delitem 981,20;
	getitem 30228,1;
	close;

M_Pink:
	if(countitem(7354)<250 || countitem(924)<300 || countitem(7168)<200 || countitem(747)<100 || countitem(982)<10 || countitem(975)<10)
	goto M_insufficient; 
	delitem 7354,250;
	delitem 924,300;
	delitem 7168,200;
	delitem 747,100;
	delitem 982,10;
	delitem 975,10;
	getitem 30226,1;
	close;

M_Pure:
	if(countitem(7354)<250 || countitem(924)<300 || countitem(7168)<200 || countitem(747)<100 || countitem(982)<20)
	goto M_insufficient; 
	delitem 7354,250;
	delitem 924,300;
	delitem 7168,200;
	delitem 747,100;
	delitem 982,20;
	getitem 30223,1;
	close;

M_Lemon:
	if(countitem(7354)<250 || countitem(924)<300 || countitem(7168)<200 || countitem(747)<100 || countitem(982)<10 || countitem(976)<10)
	goto M_insufficient; 
	delitem 7354,250;
	delitem 924,300;
	delitem 7168,200;
	delitem 747,100;
	delitem 982,10;
	delitem 976,10;
	getitem 30222,1;
	close;

M_Solar:
	if(countitem(7354)<250 || countitem(924)<300 || countitem(7168)<200 || countitem(747)<100 || countitem(983)<5 || countitem(976)<15)
	goto M_insufficient; 
	delitem 7354,250;
	delitem 924,300;
	delitem 7168,200;
	delitem 747,100;
	delitem 976,15;
	delitem 983,5;
	getitem 30230,1;
	close;

M_wwolf:
	if(countitem(7063)<300 || countitem(920)<200 || countitem(6020)<200 || countitem(949)<200 || countitem(982)<20)
	goto M_insufficient; 
	delitem 7063,300;
	delitem 920,200;
	delitem 6020,200;
	delitem 949,100;
	delitem 982,20;
	getitem 30283,1;
	close;

M_gwolf:
	if(countitem(7063)<300 || countitem(920)<200 || countitem(6020)<200 || countitem(949)<200 || countitem(982)<10 || countitem(979)<10)
	goto M_insufficient; 
	delitem 7063,300;
	delitem 920,200;
	delitem 6020,200;
	delitem 949,100;
	delitem 982,10;
	delitem 979,10;
	getitem 30280,1;
	close;

M_bwolf:
	if(countitem(7063)<300 || countitem(920)<200 || countitem(6020)<200 || countitem(949)<200 || countitem(983)<20)
	goto M_insufficient; 
	delitem 7063,300;
	delitem 920,200;
	delitem 6020,200;
	delitem 949,100;
	delitem 983,20;
	getitem 30283,1;
	close;

M_insufficient:
	next;
	mes "[Wings Maker]";
	mes "You don't have the required materials.";
	mes "Please come back when you do...";
	menu "Leave",H_cancel;
	close;

H_cancel:
	close;

}
Edited by kilua72

2 answers to this question

Recommended Posts

Posted (edited)

Did the map server show any error?

 

//edit: You had a quotation mark at the end of the I_Pink label, and a comma was missing there, too. Replace line 29 with this.

menu "Green Bloomy Wing",I_Green,"Yellow Bloomy Wings",I_Yellow,"White Bloomy Wings",I_White,"Dark Bloomy Wings",I_Dark,"Saikos Bloomy Wings",I_Saikos,"Metallish Bloomy Wings",I_Metallish,"Blue Bloomy Wings",I_Blue,"Purple Bloomy Wings",I_Purple,"Pink Bloomy Wings",I_Pink,"Pure White Bloomy Wings",I_Pure,"Lemon Bloomy Wings",I_Lemon,"Solar Bloomy Wings",I_Solar,"Return to Menu",H_top;
Edited by DeadlySilence
Posted

Did the map server show any error?

 

//edit: You had a quotation mark at the end of the I_Pink label, and a comma was missing there, too. Replace line 29 with this.

menu "Green Bloomy Wing",I_Green,"Yellow Bloomy Wings",I_Yellow,"White Bloomy Wings",I_White,"Dark Bloomy Wings",I_Dark,"Saikos Bloomy Wings",I_Saikos,"Metallish Bloomy Wings",I_Metallish,"Blue Bloomy Wings",I_Blue,"Purple Bloomy Wings",I_Purple,"Pink Bloomy Wings",I_Pink,"Pure White Bloomy Wings",I_Pure,"Lemon Bloomy Wings",I_Lemon,"Solar Bloomy Wings",I_Solar,"Return to Menu",H_top;

ahhh thats one ><

thankyouuu :D 

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