Page 1 of 1

Safe Currency with no custom items

Posted: Mon Oct 06, 2014 8:37 pm
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

Re: Safe Currency with no custom items

Posted: Mon Oct 06, 2014 8:38 pm
by DrGonzo
As I stated in the title, server has NO custom items or any sort of client modification.
Thank you

Re: Safe Currency with no custom items

Posted: Mon Oct 06, 2014 8:42 pm
by Zealar
Just search they ID in core then in DP if not find them so is safe.

Re: Safe Currency with no custom items

Posted: Mon Oct 06, 2014 8:56 pm
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?

Re: Safe Currency with no custom items

Posted: Tue Oct 07, 2014 12:13 am
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. ;)

Re: Safe Currency with no custom items

Posted: Tue Oct 07, 2014 9:41 am
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.

Re: Safe Currency with no custom items

Posted: Tue Oct 07, 2014 7:51 pm
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!