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!

[where help

Dreadfull

Sorceror
[where help

I have seen that players can't use the [where command to get their exact location. So I am trying to figure out where I have to edit the account limtations in the scripting to allow players a where/location command. Or at least how to begin to make one. It has been a while since I last scripted anything.

Thank you for your time and services.
 

HellRazor

Knight
Dreadfull;722699 said:
I have seen that players can't use the [where command to get their exact location. So I am trying to figure out where I have to edit the account limtations in the scripting to allow players a where/location command. Or at least how to begin to make one. It has been a while since I last scripted anything.

Thank you for your time and services.

In Scripts/Commands/Handlers.cs:

Register( "Where", AccessLevel.Counselor, new CommandEventHandler( Where_OnCommand ) );

Change AccessLevel.Counselor to AccessLevel.Player.
 
Top