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!

Deleting Static items with RunUO ?

Deleting Static items with RunUO ?

hello ,

i know with sphere it is possible and really easy to delete static items with ''uosir'' and its possible to make static some dynamic items with uosp.

i was wondering if there is any programs that i can use to do the same thing with RunUO?

or any command to make static items dynamic so i can delete them ingame (that would be nice )

(ive been looking alot on the forums to find a post about it but havent find any)

thanks!
 

Stilgar

Sorceror
[freeze
[unfreeze
[freezemap
[unfreezemap
[clearfacet
[wipe
etc...

runuo is a perfect tool self to edit static item files
 
omg ! thanks alot gonna try it right now

(i always wish i could do that yay!)


if there is any other commands like that feel free to post them :D
 
i am having some problem to make this works.

when i try to add the new folder location i got some errors .
this is the part i edited , i tryed different things but cant figure out howto do it right.
Code:
public class DataPath
	{
		/* If you have not installed Ultima Online,
		 * or wish the server to use a seperate set of datafiles,
		 * change the 'CustomPath' value, example:
		 * 
		 * private const string CustomPath = @"C:\Program Files\Ultima Online";
		 */
		private static string CustomPath = null;

i tryed to edit the '' */
private static string CustomPath = null;'' for ''*/
private static string CustomPath = C:\righthere;''

(righthere is the name of my new folder lol)

i have no idea really how to edit it right :(
 
i cant copy them...


but its like that

ERRORS:
*misc/patchdata.cs
CS1056:LINE16: UNEXPECTED CHARACTER
CS1002:LINE16: ;EXPECTED
CS1519:LINE16: INVALID TOKEN ';' IN CLASS , STUCT, OR INTERFACE MEMBER DECLARATION
 

Uhhhh

Wanderer
You should be able to copy out of the RunUO console if you right-click on the console window, and select 'Mark', highlight what you want, and press Enter.

Could you post the entire script? A guess based on your error is maybe there's a ; missing somewhere.

*Edit: Actually. . .
Code:
private static string CustomPath = C:\righthere;''

Would want to look like
Code:
private static string CustomPath = "C:\righthere";

Since you are specifying a string value for CustomPath.
 
World: Loading...An error was encountered while loading a saved object
- Type: Server.Items.CandelabraStand
- Serial: 0x4000283C
Delete the object? (y/n)

if i delete the object the console will terminate and exit lol
 
Top