Jump to content
  • 0

Where is the Magic Gear NPC in rathena


Question

Posted (edited)

This is kind of a simple question :P but does anyone know:

Where is the Magic Gear Master NPC located in /trunk/npc, in case your wondering which npc its the npc at 163,178 in Prontera. I have been trying to disable this npc for about an hour and can not find him.

Thanks for reading,

Tzuridis

Edited by Tzuridis

6 answers to this question

Recommended Posts

Posted

i just disabled it. im using current svn.

.\npc\merchants\renters.txt

Line 348

change

prontera,163,178,4 script Magic Gear Master 105,{

to

prontera,0,0,4 script Magic Gear Master 105,{

  • Upvote 1
Posted (edited)

Or.. you could of done..

/*
// Magic Gear Renter
prontera,163,178,4 script Magic Gear Master 105,{
mes "[Magic Gear Master]";
if (Class == Job_Mechanic || Class == Job_Mechanic_T || Class == Job_Baby_Mechanic) {
 mes "Welcome. Would you like to rent a Magic Gear?";
 next;
 switch(select("Yes:No")) {
 case 1:
  if (!getskilllv("NC_MADOLICENCE")) {
mes "[Magic Gear Master]";
mes "Please learn how to use a Magic Gear first.";
close;
  }
  else if (checkmadogear()) {
mes "[Magic Gear Master]";
mes "You already have a Magic Gear.";
close;
  }
  else if(ismounting()) {
mes "[Magic Gear Master]";
mes "Please remove your cash mount.";
close;
  }
  setmadogear;
  close;
 case 2:
  mes "[Magic Gear Master]";
  mes "I see. Then have a great day.";
  close;
 }
}
mes "How may I help you?";
mes "Magic Gears are only available for Mechanics.";
close;
}
*/

So that the NPC isn't actually loaded.

Edited by Mysterious

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