• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

znote acc

  • Thread starter Thread starter verdehile95
  • Start date Start date
V

verdehile95

Guest
Hello, how can I add new items to a Znote account so that they are visible on the website and update the appearance of old ones?znote.webp
 
Hello, how can I add new items to a Znote account so that they are visible on the website and update the appearance of old ones?
URL to item images is configured in config.php in line ( ZnoteAAC/config.php at master · Znote/ZnoteAAC (https://github.com/Znote/ZnoteAAC/blob/master/config.php#L969-L970) ):
Code:
'imageServer' => 'items.znote.eu',
You can replace this URL with 13+ TFS images (uses item IDs from items.otb / items.xml from OTAcademy RME):
Code:
'imageServer' => 'item-images.ots.me/latest_ota_anim',
or if you are running "canary" engine - which uses client IDs as server IDs - you can use (14.11 items):
Code:
'imageServer' => 'item-images.ots.me/latest_otbr',
If your server uses custom client with custom item IDs, you must generate own images .png and host them on your server using:
(item-images.ots.me official image hosts contains both .png and .gif images, Znote by default uses .gif and "generator" generates only .png, so if you generate own images, you must edit Znote config, to make it use png, not gif)
 
URL to item images is configured in config.php in line ( ZnoteAAC/config.php at master · Znote/ZnoteAAC (https://github.com/Znote/ZnoteAAC/blob/master/config.php#L969-L970) ):
Code:
'imageServer' => 'items.znote.eu',
You can replace this URL with 13+ TFS images (uses item IDs from items.otb / items.xml from OTAcademy RME):
Code:
'imageServer' => 'item-images.ots.me/latest_ota_anim',
or if you are running "canary" engine - which uses client IDs as server IDs - you can use (14.11 items):
Code:
'imageServer' => 'item-images.ots.me/latest_otbr',
If your server uses custom client with custom item IDs, you must generate own images .png and host them on your server using:
(item-images.ots.me official image hosts contains both .png and .gif images, Znote by default uses .gif and "generator" generates only .png, so if you generate own images, you must edit Znote config, to make it use png, not gif)
can you help me? I followed your steps but I still don't see the images
 

Attachments

Back
Top