RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

[who and [wholist

Grom09

Sorceror
[who and [wholist

i figured this out, if players are interested ---

i got this currently working for players, but all players can "get" or "move to" other players, and other options that are for GM's +

how can i cancel those for players?

scripts/gump/whogump
i only modded 1 line

Code:
CommandSystem.Register( "Who", AccessLevel.Player, new CommandEventHandler( WhoList_OnCommand ) );
CommandSystem.Register( "WhoList", AccessLevel.Player, new CommandEventHandler( WhoList_OnCommand ) );
thx

sry, i found this problem
scripts/gumps/clientgump
search for move or properties, and adjust
thx lol

scripts/gumps/clientgump

Code:
		if ( from.AccessLevel >= AccessLevel.GameMaster && from.AccessLevel > m.AccessLevel )
thats the key line wherever your adding buttons
 
Top