Safe Currency with no custom items

Support for the latest build of L2J Server, get help here with installations, upgrades, problems.
Do not post bugs reports here, use viewforum.php?f=77 instead.
There is no support for other server builds than the official provided by l2jserver.com
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
DrGonzo
Posts: 16
Joined: Sun Sep 29, 2013 4:20 pm

Safe Currency with no custom items

Post by DrGonzo »

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
DrGonzo
Posts: 16
Joined: Sun Sep 29, 2013 4:20 pm

Re: Safe Currency with no custom items

Post by DrGonzo »

As I stated in the title, server has NO custom items or any sort of client modification.
Thank you
User avatar
Zealar
L2j Veteran
L2j Veteran
Posts: 1236
Joined: Sun Jul 15, 2007 10:29 am

Re: Safe Currency with no custom items

Post by Zealar »

Just search they ID in core then in DP if not find them so is safe.
DrGonzo
Posts: 16
Joined: Sun Sep 29, 2013 4:20 pm

Re: Safe Currency with no custom items

Post by DrGonzo »

Zealar wrote:Just search they ID in core then in DP if not find them so is safe.
I am sorry I did not understand :|

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?
User avatar
AntV
Posts: 177
Joined: Mon May 10, 2010 10:46 pm

Re: Safe Currency with no custom items

Post by AntV »

DrGonzo wrote:
Zealar wrote:Just search they ID in core then in DP if not find them so is safe.
I am sorry I did not understand :|

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?
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.
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. ;)
User avatar
Zealar
L2j Veteran
L2j Veteran
Posts: 1236
Joined: Sun Jul 15, 2007 10:29 am

Re: Safe Currency with no custom items

Post by Zealar »

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

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>
<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.
DrGonzo
Posts: 16
Joined: Sun Sep 29, 2013 4:20 pm

Re: Safe Currency with no custom items

Post by DrGonzo »

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

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

Perfect. That's a rly perfect solution, thank you very much Zealar!
Post Reply