ServUO Version
Publish Unknown
Ultima Expansion
The Second Age
I installed xanthos auction system on Runuo 2.2:

The method used inside the gump script is:
C#:
AddItemProperty( item.Serial);


So the item properties are only shown if the item is in my backpack or im carrying it, is there a way to fix that?


To view this content we will need your consent to set third party cookies.
For more detailed information, see our cookies page.
 
You have to force send info about the item if it's non-local;
Code:
item.SendInfoTo(ns, true); // ns is the gump viewer's NetState

AddItemProperty(item.Serial);
 
Thanks for the reply, it doesnt work for some reason.



I just noticed that only GMs are able to see the itemproperties in the Auction gump wich is weird

In a different gump from a different system If a player (Non GM ) carry an item the prioperties show on a gump

So the issue is the ActionItem.cs itself i suppose

I feel like it has to do with the player that ''cant'' see the item thats why Gms are able to see the item properties
 
Last edited:
Any clue what could be the issue?


for some reason the item properties in gumps are only visible to Accesslevel above player, GM's and such
 
Last edited:
In AuctionItem.cs,line 256,method private static string GetItemProperties( Item item )
Im using TOL expansion (ServUo 57.3)
Changed:
if ( Core.AOS)
to
if ( Core.TOL )
I know its not RunUo,but im sure your problem is here.

auction.gif
 
In AuctionItem.cs,line 256,method private static string GetItemProperties( Item item )
Im using TOL expansion (ServUo 57.3)
Changed:
if ( Core.AOS)
to
if ( Core.TOL )
I know its not RunUo,but im sure your problem is here.

View attachment 22350
Hello, thanks for your reply, Runuo 2.2 doesnt recognize TOL, its up to SE if i recall good.

I feel like the issue is deeper than the Auction system itself.

So if the itemprops are only visible by Staff members...its kinda weird
 
Last edited:
In the original post of the package im using the user says :
"Main change was the view item gump how uses Object Property List for item properties instead of listing them in html list."
Maybe this can help you?Here the original post:
ServUo Xanthos auction system
Maybe not for you,but you can take a look at the .cs
 
In the original post of the package im using the user says :
"Main change was the view item gump how uses Object Property List for item properties instead of listing them in html list."
Maybe this can help you?Here the original post:
ServUo Xanthos auction system
Maybe not for you,but you can take a look at the .cs

Im using the same scripts,the ones from that post, for some reason it just doesnt work to me.
 
Last edited:
The issue has to do with the parent, if i asign the item parent to a npc, (wich causes bugs) the item props are shown on the gump, so... i dont know a walk around
 
Back