Server Revision: 6445
Datapack Revision: 9641
Hi all!
I have a simple question: which of these items are safe as currency? (I need more than one item, possibly)
For "safe" I mean that players can obtain it only with my custom drops and not by quests or any other sort of cheat.
Apiga
Golden Apiga
Event - Apiga
Event - Golden Apiga
Gold Bar
Event - Gold Bar
Festival
Event - Medal
Event - Glittering Medal
Safe Currency with no custom items
Forum rules
READ NOW: L2j Forums Rules of Conduct
READ NOW: L2j Forums Rules of Conduct
-
- Posts: 16
- Joined: Sun Sep 29, 2013 4:20 pm
Re: Safe Currency with no custom items
As I stated in the title, server has NO custom items or any sort of client modification.
Thank you
Thank you
- Zealar
- L2j Veteran
- Posts: 1236
- Joined: Sun Jul 15, 2007 10:29 am
Re: Safe Currency with no custom items
Just search they ID in core then in DP if not find them so is safe.
-
- Posts: 16
- Joined: Sun Sep 29, 2013 4:20 pm
Re: Safe Currency with no custom items
I am sorry I did not understandZealar wrote:Just search they ID in core then in DP if not find them so is safe.

For example, I know that Gold Bar with desc "Heavy lump of pure gold" are safe, if you disable banking system. Right?
But gold bar with desc "A gold bar stamped with Duke Ashton's seal. Take this to Alex." is quest related, so I won't use it.
What about other items?
- AntV
- Posts: 177
- Joined: Mon May 10, 2010 10:46 pm
Re: Safe Currency with no custom items
I believe that Gold Bar can be obtained from a quest as well, I don't recall the name but it had something to do with a wishing potion.DrGonzo wrote:I am sorry I did not understandZealar wrote:Just search they ID in core then in DP if not find them so is safe.![]()
For example, I know that Gold Bar with desc "Heavy lump of pure gold" are safe, if you disable banking system. Right?
But gold bar with desc "A gold bar stamped with Duke Ashton's seal. Take this to Alex." is quest related, so I won't use it.
What about other items?
As Zealar said, search for their ID in core and in DP to check exactly what you need, whether they appear as drops or quest items.
On the other hand, you can always use the 4 color coins (Gold Einhasad, Silver Shilen, Blue Eva, Bloody Pa'agrio) which exist only for events.

- Zealar
- L2j Veteran
- Posts: 1236
- Joined: Sun Jul 15, 2007 10:29 am
Re: Safe Currency with no custom items
There is 2 Gold bar and only 2807 can be take from quest i think.
2807 Gold Bar
3470 Gold Bar
Btw best option is follow.
1) See item what do you like to use (for example gold bar 2807)
2) Open game\data\stats\items\custom\06500-06599.xml
3) Add new item
<set name="displayId" val="2807" /> will made that item to look like Gold Bar but will got ID 6555 so there will be no way players to take it.
4) For enable load custom items need to set config CustomItemsLoad in General settings to true.
2807 Gold Bar
3470 Gold Bar
Btw best option is follow.
1) See item what do you like to use (for example gold bar 2807)
2) Open game\data\stats\items\custom\06500-06599.xml
3) Add new item
Code: Select all
<item id="6555" type="EtcItem" name="Gold Bar"> <set name="icon" val="icon.etc_lump_yellow_i00" /> <set name="immediate_effect" val="true" /> <set name="material" val="STEEL" /> <set name="displayId" val="2807" /> <set name="is_tradable" val="false" /> <set name="is_dropable" val="false" /> <set name="is_sellable" val="false" /> <set name="is_depositable" val="false" /> <set name="is_stackable" val="true" /> </item>
4) For enable load custom items need to set config CustomItemsLoad in General settings to true.
-
- Posts: 16
- Joined: Sun Sep 29, 2013 4:20 pm
Re: Safe Currency with no custom items
Zealar wrote:There is 2 Gold bar and only 2807 can be take from quest i think.
2807 Gold Bar
3470 Gold Bar
Btw best option is follow.
1) See item what do you like to use (for example gold bar 2807)
2) Open game\data\stats\items\custom\06500-06599.xml
3) Add new item<set name="displayId" val="2807" /> will made that item to look like Gold Bar but will got ID 6555 so there will be no way players to take it.Code: Select all
<item id="6555" type="EtcItem" name="Gold Bar"> <set name="icon" val="icon.etc_lump_yellow_i00" /> <set name="immediate_effect" val="true" /> <set name="material" val="STEEL" /> <set name="displayId" val="2807" /> <set name="is_tradable" val="false" /> <set name="is_dropable" val="false" /> <set name="is_sellable" val="false" /> <set name="is_depositable" val="false" /> <set name="is_stackable" val="true" /> </item>
4) For enable load custom items need to set config CustomItemsLoad in General settings to true.
Perfect. That's a rly perfect solution, thank you very much Zealar!