charon Posted June 20, 2012 Group: Members Topic Count: 21 Topics Per Day: 0.00 Content Count: 58 Reputation: 0 Joined: 06/14/12 Last Seen: August 19, 2014 Share Posted June 20, 2012 (edited) Can Any One Give Me Simple Item Identifier Npc Script Edited June 21, 2012 by charon Quote Link to comment Share on other sites More sharing options...
1 EvilPuncker Posted June 20, 2012 Group: Members Topic Count: 19 Topics Per Day: 0.00 Content Count: 713 Reputation: 71 Joined: 11/08/11 Last Seen: December 25, 2024 Share Posted June 20, 2012 something like this http://pastebin.com/raw.php?i=R9w6K7L3 Quote Link to comment Share on other sites More sharing options...
1 Rikimaru Posted June 20, 2012 Group: Members Topic Count: 16 Topics Per Day: 0.00 Content Count: 658 Reputation: 57 Joined: 11/20/11 Last Seen: July 1, 2017 Share Posted June 20, 2012 This is the one I use on my Test Server : http://upaste.me/3065505f1e2d6f8 Quote Link to comment Share on other sites More sharing options...
1 Euphy Posted July 1, 2012 Group: Members Topic Count: 72 Topics Per Day: 0.02 Content Count: 2997 Reputation: 1132 Joined: 05/27/12 Last Seen: June 1, 2017 Share Posted July 1, 2012 @patr3k: This is the script I use (it's included in my All-In-One NPC): <header> { set .@Price, 100; // Zeny per identify getinventorylist; for(set .@i,0; .@i<@inventorylist_count; set .@i,.@i+1) { if (@inventorylist_identify[.@i]) continue; if (Zeny < .@Price) { dispbottom "It costs "+.@Price+" to identify an item."; break; } set Zeny, Zeny-.@Price; delitem2 @inventorylist_id[.@i],1,0,0,0,0,0,0,0; getitem @inventorylist_id[.@i],1; setarray .@Total[0], .@Total[0]+1, .@Total[1]+.@Price; } if (!.@Total[0]) { message strcharinfo(0),"No items identified."; end; } specialeffect2 154; message strcharinfo(0),"Identified "+.@Total[0]+" items"+((.@Total[1])?" for "+.@Total[1]+" Zeny":"")+"."; end; } Quote Link to comment Share on other sites More sharing options...
0 Quesooo Posted August 1, 2017 Group: Members Topic Count: 197 Topics Per Day: 0.07 Content Count: 883 Reputation: 28 Joined: 02/13/17 Last Seen: November 10, 2022 Share Posted August 1, 2017 i use this script on my server but when players get bulk of crimson unidentified weapons all of them dont have elements but when they use merchant skill and magnifiers the elements is there what should be the fix magnifier npc? Quote Link to comment Share on other sites More sharing options...
charon Posted June 21, 2012 Group: Members Topic Count: 21 Topics Per Day: 0.00 Content Count: 58 Reputation: 0 Joined: 06/14/12 Last Seen: August 19, 2014 Author Share Posted June 21, 2012 Thanks Guys Quote Link to comment Share on other sites More sharing options...
patr3k Posted July 1, 2012 Group: Members Topic Count: 104 Topics Per Day: 0.02 Content Count: 257 Reputation: 7 Joined: 03/12/12 Last Seen: May 31, 2014 Share Posted July 1, 2012 @Rikimaru About the Identifier your using, hmmm.. i tried using yours but there's a bug. Even if i dont have item/s to identify. It still charged me 100. Is possible to trap that bug? For example, if you don't have items/s to identify, npc will say... sorry you dont have item/s to identify. Something like that. Quote Link to comment Share on other sites More sharing options...
patr3k Posted July 1, 2012 Group: Members Topic Count: 104 Topics Per Day: 0.02 Content Count: 257 Reputation: 7 Joined: 03/12/12 Last Seen: May 31, 2014 Share Posted July 1, 2012 @Euphy Thanks alot. I will try yours. But where can i set the price? LOL! Sorry... Quote Link to comment Share on other sites More sharing options...
Euphy Posted July 1, 2012 Group: Members Topic Count: 72 Topics Per Day: 0.02 Content Count: 2997 Reputation: 1132 Joined: 05/27/12 Last Seen: June 1, 2017 Share Posted July 1, 2012 set .@Price, 100; // Zeny per identify Quote Link to comment Share on other sites More sharing options...
patr3k Posted July 1, 2012 Group: Members Topic Count: 104 Topics Per Day: 0.02 Content Count: 257 Reputation: 7 Joined: 03/12/12 Last Seen: May 31, 2014 Share Posted July 1, 2012 Oh f**k i didnt saw that. hahahaha. sorry im a bit sleepy. Thanks again Quote Link to comment Share on other sites More sharing options...
Question
charon
Can Any One Give Me Simple Item Identifier Npc Script
Edited by charonLink to comment
Share on other sites
9 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.