Jump to content
  • 0

Where is the Magic Gear NPC in rathena


Tzuridis

Question


  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  20
  • Reputation:   0
  • Joined:  06/19/12
  • Last Seen:  

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
Link to comment
Share on other sites

6 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  42
  • Topics Per Day:  0.01
  • Content Count:  297
  • Reputation:   15
  • Joined:  11/17/11
  • Last Seen:  

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
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  20
  • Reputation:   0
  • Joined:  06/19/12
  • Last Seen:  

Thanks man

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  94
  • Topics Per Day:  0.02
  • Content Count:  2192
  • Reputation:   252
  • Joined:  11/11/11
  • Last Seen:  

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
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  65
  • Topics Per Day:  0.02
  • Content Count:  235
  • Reputation:   0
  • Joined:  05/03/13
  • Last Seen:  

awesome trick 

Mysterious!!!
 
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  3
  • Reputation:   0
  • Joined:  08/05/13
  • Last Seen:  

but where is the path for it? trunk/npc/re/... .txt?

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