Search results

  1. [Servuo] Mysterious client crashes due to "shared bank" feature

    I would share it if I believed it would help. I even tidied up the script a bit and added comments etc, but then I found the answer to my original question. I don't understand how my question is aided by any particular script. I'm not asking to help with a compilation error or something... I'm...
  2. [Servuo] Mysterious client crashes due to "shared bank" feature

    The bankbox system isn't that intricated. Anyway, I'm not inheriting from bank box or anything, I do use it as "inspiration", as I need mostly the same things. Apparently the reason for the crash is the fact that I added a new layer for container. I'm not surprised that I can't add a new layer...
  3. [Servuo] Mysterious client crashes due to "shared bank" feature

    I have implemented a bank that can be shared between multiple accounts. However, this causes client-side crashes. Hence, I don't get any crash logs. At least I can't find any crash logs, do they exist? For the implementation to work, upon opening the container it is added to the player (making...
  4. [ServUO] Globally accessible container

    Yes. The additions I've made in item.cs so far seem to serve their purpose (making it so clients get updated if they have the box opened even if they aren't in range). But they don't allow picking up items unless they are the parent (which in my case would be whoever opened it most recently, but...
  5. [ServUO] Globally accessible container

    I think it very well might be. In the ProcessDelta in item.cs I made some changes by adding an alternative condition to CanSee && InRange check. There's a plethora of functions, though, with zero documentation on when the function is called or what it does. And many of them I've already tried to...
  6. [ServUO] Globally accessible container

    I want to make a container that is globally accessible given the right permissions. In the current case, permissions are related to which account the character is on. I would like all characters who have access to the container to make use of it simultaneously, and see the changes made by the...
Back