Version 0.1.21

Status
Not open for further replies.

Afr0

Well-Known Member
This version should hopefully fix the cache system once and for all. It seemed to behave admirably when I tested it now. :)
Basically what this means is you'll be able to see your avatars whenever you log in.
Also, this version contains a cursory attempt at filling up the dropdown menu in the inbox in the city with the names of all the players that are currently online.
I'll need confirmation that this works before I can proceed with the rest of the chat system.
Also, I added some code to hopefully stabilize the character creation process. The city server has been crashing a lot as people have attempted to create characters.
 
This version should hopefully fix the cache system once and for all. It seemed to behave admirably when I tested it now. :)
Basically what this means is you'll be able to see your avatars whenever you log in.
Also, this version contains a cursory attempt at filling up the dropdown menu in the inbox in the city with the names of all the players that are currently online.
I'll need confirmation that this works before I can proceed with the rest of the chat system.
Also, I added some code to hopefully stabilize the character creation process. The city server has been crashing a lot as people have attempted to create characters.

My game freezes when creating a character, it stops at 50%.

And my character that I had is gone.
 
Blayer, you have a shitload of characters. I deleted three of them.
Try running the client as admin and then log in again.
 
Where should we be seeing the other players? I can't see anything on the dropdown in inbox.
 
Last edited:
Where should we be seeing the other players? I can't see anything on the dropdown in inbox.

Then you might be the only one online. Does this code look sane to you?

Code:
        public UIInboxDropdown()
        {
            this.RenderScript("messageinboxmenu.uis");
            Background = new UIImage(backgroundCollapsedImage);
            this.AddAt(0, Background);

            open = true;
            ToggleOpen();

            MenuListBox = new UIListBox();
            MenuListBox.Items.Clear();
            foreach (VMAvatar Avatar in Network.NetworkFacade.AvatarsInSession)
                MenuListBox.Items.Add(new UIListBoxItem(Avatar.Name));

            DropDownButton.OnButtonClick += new ButtonClickDelegate(DropDownButton_OnButtonClick);

        }

Testing it myself was impractical as it requires two separate PCs...
 
Does anyone know exactly where this inbox is? Is it on the SAS screen? Edit: Online on SAS and cannot enter map view
 
Updated the city server. Please try now.
Also, Blayer, if you keep running the game from source I will ban you, because you're essentially bypassing the versioning system unless you update your local repository every time I release a new patch.
 
Updated the city server. Please try now.
Also, Blayer, if you keep running the game from source I will ban you, because you're essentially bypassing the versioning system unless you update your local repository every time I release a new patch.
I don't have it anymore, I got rid of it :/
 
Status
Not open for further replies.
Back
Top