SphereCommunity
ID of item in @ResourceGather - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: General Help (/Forum-General-Help)
+--- Thread: ID of item in @ResourceGather (/Thread-ID-of-item-in-ResourceGather)



ID of item in @ResourceGather - Jhobean - 12-18-2019 02:19 AM

Hi,

I use the trigger @ResourceGather on my ressource.

This argument Local.ResourceID is suppose to return the ID of the item.

Code:
[ITEMDEF  i_log_cryptomeria]
DEFNAME= i_log_cryptomeria
NAME=Buche de cryptomeria

IF I DO:
serv.log <Local.ResourceID>
I GET: 014297 and not i_log_cryptomeria

2 questions?
1- How I can know the number ID of an ITEMDEF i_xxxxx
2- This ID change are it,s ALWAYS the same?


THX


RE: ID of item in @ResourceGather - Coruja - 12-18-2019 08:21 AM

Every chardef/itemdef/etc is an resource, and each one have an unique internal ID. So 014297 is the internal resource ID of i_log_cryptomeria

This internal value is only used by sphere internal functions, to get the real "readable" info about of this resource you must use <SERV.ITEMDEF.014297.NAME>, <SERV.ITEMDEF.014297.ID>, <SERV.ITEMDEF.014297.BASEID>, etc


RE: ID of item in @ResourceGather - Jhobean - 12-18-2019 09:54 AM

Thx so much. it's work perfect.

Question. It's possible The number 014297 can change between 2 differents boot? or it's always fix?


RE: ID of item in @ResourceGather - Coruja - 12-20-2019 04:46 AM

Honestly I don't know exactly how this resource ID list is built, probably sphere fill the resource ID's list at server startup as it read script files. So maybe resources should keep the same value if you don't change any script. But content of script files doesn't stay the same forever, so its better assume that these resource IDs can change too