Jump to content
  • 0

How to edit GM Shop (L2jFrozen)


TheProdigy

Question

Hey guys, sorry for the stupid question, but how can I edit the items in the GM Shop?

I made a server a few days ago and now i'm almost done with the NPC's and some other stuff. The only thing left is the GM Shop.

I've already looked it up on youtube, google and some other forums but 95% of the stuff I found is in lithuanian, greek or other languages.

I'm new to this kind of stuff, never used Java before. I've checked the htm and xml files but I couldn't find anything.

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

To add an item or remove,or change quantity, or change price, or change currency of exhanging,u have to open it's Multisell and do it through it. 

 

  • Upvote 1
Link to comment
Share on other sites

  • 0
<!-- Soulshot: S-Grade -->
  <item id="6">
    <ingredient id="57" count="1000000"/>
    <production id="1467" count="10000"/>
  </item>

ok so i got this code, the ingredient is adena, right?

Link to comment
Share on other sites

  • 0
4 minutes ago, TheProdigy said:

<!-- Soulshot: S-Grade -->
  <item id="6">
    <ingredient id="57" count="1000000"/>
    <production id="1467" count="10000"/>
  </item>

ok so i got this code, the ingredient is adena, right?

 

No this code is to call NASA. afcourse.. It's not like you deal with any low level programming language.. it says Ingredient and then the id and the count.. and bellow that production and then id and count.. 

 

Also how u search " how to edit gm shop" and you found no results? I found 20 topics only in the first page. :3

Link to comment
Share on other sites

  • 0
2 minutes ago, TheProdigy said:

<!-- Soulshot: S-Grade -->
  <item id="6">
    <ingredient id="57" count="1000000"/>
    <production id="1467" count="10000"/>
  </item>

ok so i got this code, the ingredient is adena, right?

 

Yes,so you have to give the ingredient (adena) to aquire Soulshot : S-Grade.

 

<item id="6"> is the 6th item in the specific list of your shop.

to add item, use the same line, example : 

<item id="7">
    <ingredient id="YourItemsID" count="quantity of the item"/>
    <production id="YourItemID" count="Quantity"/>
  </item>

Ingredient = the item that is required to be exchanged 

production= the item that gm shop gives you.

 

If you want to remove an item,just delete that part, and if you just want to edit edit the id's or quantities.

 

 

 

  • Like 1
  • Thanks 4
Link to comment
Share on other sites

  • 0
1 minute ago, TheProdigy said:

@camenomat0 thanks for the help, much appreciated.

@Evie Frye sry for the dumb questions bud, i haven't slept in a while.

 

Awww, you should go sleep and then continue the dumb questions. Don't worry we also make dumb questions :3

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...