Hi I don't speak Russian, but could you please make this addon work for different private servers as well? It works ok on another server so far, but the only thing is no item appears in the transmogrify and addon doesn't load the cache at the beginning like it shows to you in the first picture..
I'm sorry, it cannot work on other servers because it's very closely tied with the server itself. Most of its functionality relies on the server providing it with data, validating player's choices, and, well, applying and storing the transmog. There is A LOT of serverside code supporting this addon (and collections in general), somewhere around 8500 lines for everything combined. It won't be an easy thing to port to another server even if I was willing to share the code, but I cannot do this for one simple reason: I was paid for my work, and it would be unfair to my employer to give it away to competitors. But hey, the addon's code is open, if another server wants to steal it - godspeed, but they'll have to reverse engineer it and make their own serverside implementation, just like they have to do with WoW itself.
And, honestly, I don't know how do you expect an addon like this to work on EVERY private server. Transmog is not an inherent feature of 3.3.5 client, every implementation of transmog on private servers is custom to each server, and can differ between them in hundreds of ways. There is no "one size fits all" solution.
but the only thing is no item appears in the transmogrify
The only data stored in the addon itself are mounts and pets, since those cannot be changed from the server without patching the client, unlike items. Thus, the data for transmog and toys is entirely obtained from the server, it's not hardcoded within the addon, to allow us to change it whenever we want without requiring players to update the addon: change transmog rules, pricing, add custom items with unused models etc. The addon does not "work ok", it simply loads, but without all the data and support for all the addon<->server interactions - it's useless, it's just a glorified UI for mounts and pets, incapable of doing anything more.
addon doesn't load the cache at the beginning like it shows to you in the first picture..
Nor should it - burst transmission of item cache is also something that's implemented on the server and initiated by the server. Without serverside support, all you can do is start requesting cache one-by-one, and it's going to be a horrendously long process.