Jump to content
  • 0

R> Default kafra with identify


ADMSarah

Question


  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.03
  • Content Count:  141
  • Reputation:   8
  • Joined:  08/19/23
  • Last Seen:  

May I request a kafra NPC (default one) with an identify on the choices with 100z per item cost?

Link to comment
Share on other sites

13 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.03
  • Content Count:  141
  • Reputation:   8
  • Joined:  08/19/23
  • Last Seen:  

Anyone?

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  207
  • Reputation:   92
  • Joined:  06/02/12
  • Last Seen:  

Hi, find in \npc\kafras\functions_kafras.txt

.@menu$ = implode(.@K_Menu0$,":");

And insert above it:

	.@s = getarraysize(.@K_Menu0$);
	.@K_Menu0$[.@s] = .@K_Menu0$[.@s-1];
	.@K_Menu0$[.@s-1] = "Identify items (100z each)";

 

Find:

		else if (.@K_Menu0$[.@j] == "Use Guild Storage") {
			callfunc "F_KafStor",1,0;
			next;
		}

And insert below it:

		else if (.@K_Menu0$[.@j] == "Identify items (100z each)") {
			callfunc "F_KafIdentify";
			next;
		}

 

Also insert this at the end of the file:

//===================================================
// Identify Items Function
//===================================================
function	script	F_KafIdentify	{
	.@zeny = 100;
	.@i = identifyall(false);
	mes "[Kafra Employee]";
	mes "The cost for identify each item is " + .@zeny + "z.";
	if (.@i) {
		mes "You have " + F_InsertPlural(.@i, "unidentified item") + ".";
		mes "Are you sure you want to pay ^0000FF" + .@zeny * .@i + "z^000000?";
		next;
		if(select("Yes.", "No, I changed my mind.") == 1) {
			if (Zeny < .@zeny * .@i) {
				mes "[Kafra Employee]";
				mes "I'm sorry, but you don't have enough zeny.";
				return;
			}
			Zeny -= .@zeny * .@i;
			identifyall;
			mes "[Kafra Employee]";
			mes "All your items have been identified.";
			mes "Thank you for using the Kafra Services!";
		}
	} else
		mes "You have no unidentified items in your inventory.";	
	return;
}

 

Or just replace the whole file:functions_kafras.txt

  • MVP 1
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.03
  • Content Count:  141
  • Reputation:   8
  • Joined:  08/19/23
  • Last Seen:  

6 hours ago, Racaae said:

Hi, find in \npc\kafras\functions_kafras.txt

.@menu$ = implode(.@K_Menu0$,":");

And insert above it:

	.@s = getarraysize(.@K_Menu0$);
	.@K_Menu0$[.@s] = .@K_Menu0$[.@s-1];
	.@K_Menu0$[.@s-1] = "Identify items (100z each)";

 

Find:

		else if (.@K_Menu0$[.@j] == "Use Guild Storage") {
			callfunc "F_KafStor",1,0;
			next;
		}

And insert below it:

		else if (.@K_Menu0$[.@j] == "Identify items (100z each)") {
			callfunc "F_KafIdentify";
			next;
		}

 

Also insert this at the end of the file:

//===================================================
// Identify Items Function
//===================================================
function	script	F_KafIdentify	{
	.@zeny = 100;
	.@i = identifyall(false);
	mes "[Kafra Employee]";
	mes "The cost for identify each item is " + .@zeny + "z.";
	if (.@i) {
		mes "You have " + F_InsertPlural(.@i, "unidentified item") + ".";
		mes "Are you sure you want to pay ^0000FF" + .@zeny * .@i + "z^000000?";
		next;
		if(select("Yes.", "No, I changed my mind.") == 1) {
			if (Zeny < .@zeny * .@i) {
				mes "[Kafra Employee]";
				mes "I'm sorry, but you don't have enough zeny.";
				return;
			}
			Zeny -= .@zeny * .@i;
			identifyall;
			mes "[Kafra Employee]";
			mes "All your items have been identified.";
			mes "Thank you for using the Kafra Services!";
		}
	} else
		mes "You have no unidentified items in your inventory.";	
	return;
}

 

Or just replace the whole file:functions_kafras.txt

Thanks mate

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.03
  • Content Count:  141
  • Reputation:   8
  • Joined:  08/19/23
  • Last Seen:  

6 hours ago, Racaae said:

Hi, find in \npc\kafras\functions_kafras.txt

.@menu$ = implode(.@K_Menu0$,":");

And insert above it:

	.@s = getarraysize(.@K_Menu0$);
	.@K_Menu0$[.@s] = .@K_Menu0$[.@s-1];
	.@K_Menu0$[.@s-1] = "Identify items (100z each)";

 

Find:

		else if (.@K_Menu0$[.@j] == "Use Guild Storage") {
			callfunc "F_KafStor",1,0;
			next;
		}

And insert below it:

		else if (.@K_Menu0$[.@j] == "Identify items (100z each)") {
			callfunc "F_KafIdentify";
			next;
		}

 

Also insert this at the end of the file:

//===================================================
// Identify Items Function
//===================================================
function	script	F_KafIdentify	{
	.@zeny = 100;
	.@i = identifyall(false);
	mes "[Kafra Employee]";
	mes "The cost for identify each item is " + .@zeny + "z.";
	if (.@i) {
		mes "You have " + F_InsertPlural(.@i, "unidentified item") + ".";
		mes "Are you sure you want to pay ^0000FF" + .@zeny * .@i + "z^000000?";
		next;
		if(select("Yes.", "No, I changed my mind.") == 1) {
			if (Zeny < .@zeny * .@i) {
				mes "[Kafra Employee]";
				mes "I'm sorry, but you don't have enough zeny.";
				return;
			}
			Zeny -= .@zeny * .@i;
			identifyall;
			mes "[Kafra Employee]";
			mes "All your items have been identified.";
			mes "Thank you for using the Kafra Services!";
		}
	} else
		mes "You have no unidentified items in your inventory.";	
	return;
}

 

Or just replace the whole file:functions_kafras.txt

I tested but the kafras don't have an option for refine.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.03
  • Content Count:  141
  • Reputation:   8
  • Joined:  08/19/23
  • Last Seen:  

I tried to add the function as well on kafras.txt but still doesn't shows any options

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  207
  • Reputation:   92
  • Joined:  06/02/12
  • Last Seen:  

9 hours ago, Questune said:

I tested but the kafras don't have an option for refine.

Refine? Do you mean identify?

8 hours ago, Questune said:

I tried to add the function as well on kafras.txt but still doesn't shows any options

Any warning on the map-server console? Which Kafra NPC you talking? This should work only on the default/commom ones.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.03
  • Content Count:  141
  • Reputation:   8
  • Joined:  08/19/23
  • Last Seen:  

29 minutes ago, Racaae said:

Refine? Do you mean identify?

Any warning on the map-server console? Which Kafra NPC you talking? This should work only on the default/commom ones.

Sorry for the confusion ahaha It is identify. There's no error on the console either.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.03
  • Content Count:  141
  • Reputation:   8
  • Joined:  08/19/23
  • Last Seen:  

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  207
  • Reputation:   92
  • Joined:  06/02/12
  • Last Seen:  

image.thumb.png.129f6afcb0ba667ffdb8df91b97f9c82.png

It's working fine here.
Could you share your \npc\kafras\functions_kafras.txt?

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.03
  • Content Count:  141
  • Reputation:   8
  • Joined:  08/19/23
  • Last Seen:  

5 hours ago, Racaae said:

image.thumb.png.129f6afcb0ba667ffdb8df91b97f9c82.png

It's working fine here.functions_kafras.txt
Could you share your \npc\kafras\functions_kafras.txt?

Here's my kafra functions

Edited by Questune
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.03
  • Content Count:  141
  • Reputation:   8
  • Joined:  08/19/23
  • Last Seen:  

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.03
  • Content Count:  141
  • Reputation:   8
  • Joined:  08/19/23
  • Last Seen:  

On 7/5/2024 at 5:27 PM, Racaae said:

Hi, find in \npc\kafras\functions_kafras.txt

.@menu$ = implode(.@K_Menu0$,":");

And insert above it:

	.@s = getarraysize(.@K_Menu0$);
	.@K_Menu0$[.@s] = .@K_Menu0$[.@s-1];
	.@K_Menu0$[.@s-1] = "Identify items (100z each)";

 

Find:

		else if (.@K_Menu0$[.@j] == "Use Guild Storage") {
			callfunc "F_KafStor",1,0;
			next;
		}

And insert below it:

		else if (.@K_Menu0$[.@j] == "Identify items (100z each)") {
			callfunc "F_KafIdentify";
			next;
		}

 

Also insert this at the end of the file:

//===================================================
// Identify Items Function
//===================================================
function	script	F_KafIdentify	{
	.@zeny = 100;
	.@i = identifyall(false);
	mes "[Kafra Employee]";
	mes "The cost for identify each item is " + .@zeny + "z.";
	if (.@i) {
		mes "You have " + F_InsertPlural(.@i, "unidentified item") + ".";
		mes "Are you sure you want to pay ^0000FF" + .@zeny * .@i + "z^000000?";
		next;
		if(select("Yes.", "No, I changed my mind.") == 1) {
			if (Zeny < .@zeny * .@i) {
				mes "[Kafra Employee]";
				mes "I'm sorry, but you don't have enough zeny.";
				return;
			}
			Zeny -= .@zeny * .@i;
			identifyall;
			mes "[Kafra Employee]";
			mes "All your items have been identified.";
			mes "Thank you for using the Kafra Services!";
		}
	} else
		mes "You have no unidentified items in your inventory.";	
	return;
}

 

Or just replace the whole file:functions_kafras.txt

Maybe I insert the changes into a incorrect locations when I try to get the attached file here its working perfect. Thank you so much mate for the help I didn't realized that

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.03
  • Content Count:  141
  • Reputation:   8
  • Joined:  08/19/23
  • Last Seen:  

Just have 1 problem at the moment, The NPC doesn't tell you you don't have an item to identify. After choosing to identify items

 

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