I am trying to get the object id of the two cloth bazaar portals, were do you find the object type of objects/what is the type for cloth bazaar portals.
Originally Posted by ArkMods
I am trying to get the object id of the two cloth bazaar portals, were do you find the object type of objects/what is the type for cloth bazaar portals.
It's different for every server, best you can do is walk near it and get the object id from update packet.
In the Update packet newObjects array each item will have an objectType property. Each object type corresponds to an object in the Objects.json file, so you can get information using the resource manager
Code:
for (let i = 0; i < updatePacket.newObjects.length; i++) {
const obj = ResourceManager.objects[updatePacket.newObjects[i].objectType];
console.log(obj.type + ': ' + obj.id);
}
EDIT: fixed code
Originally Posted by ArkMods
Not the objectId I mean the object type.
objectType is in the xml
Thanks now I got my self a handy dandy ptrain/lh server finder
Originally Posted by ArkMods
Thanks now I got my self a handy dandy ptrain/lh server finder