Go Back   RunUO - Ultima Online Emulation > RunUO > New Join Forum

New Join Forum So your new to RunUO and looking to work with people that are new, this is the place.

Reply
 
Thread Tools Display Modes
Old 04-12-2008, 06:51 AM   #1 (permalink)
Newbie
 
Join Date: Dec 2007
Age: 25
Posts: 62
Send a message via ICQ to Elora
Default A few questions.

Hello,
Just wondering if anyone could tell me where to look to change the weight of gold?
Also where to edit what/how much new characters receive in their banks on creation?
And, one last question for tonight... *sigh* how do I install UOArchitect? lol, I downloaded it a while back, but I reinstalled RunUO, and forgot how to work it into the root. I went to the websites, but they're in the process of moving, and none of the tutorials are there anymore.

Thank you,
~Elora
Elora is offline   Reply With Quote
Old 04-12-2008, 06:56 AM   #2 (permalink)
Newbie
 
Zandalor's Avatar
 
Join Date: Apr 2008
Posts: 16
Default

Quote:
Originally Posted by Elora View Post
Hello,
Just wondering if anyone could tell me where to look to change the weight of gold?
Also where to edit what/how much new characters receive in their banks on creation?
And, one last question for tonight... *sigh* how do I install UOArchitect? lol, I downloaded it a while back, but I reinstalled RunUO, and forgot how to work it into the root. I went to the websites, but they're in the process of moving, and none of the tutorials are there anymore.

Thank you,
~Elora
1. In Gold.cs (Scripts/Items/Misc/Gold.cs) at around line 9, change 0.02 to the weight you want a gold piece to weigh.

2. Characters don't receive any money in their banks, but if you want to change the amount they get in their inventory, in CharacterCreation.cs (Scripts/Misc/CharacterCreation.cs) at around line 39 change the "1000" to however much gold you want players to get.

3. Don't know about UOArchitect, sorry.

Hope this helps you
__________________
Tranquillien GM Server
tranquillien.hopto.org - 5432
Zandalor is offline   Reply With Quote
Old 04-12-2008, 07:00 AM   #3 (permalink)
Forum Expert
 
Johabius's Avatar
 
Join Date: Dec 2004
Location: Kansas, USA
Age: 37
Posts: 4,966
Send a message via ICQ to Johabius Send a message via Yahoo to Johabius
Default

Gold Weight you can change in the gold.cs (Scripts/Items/Misc/Gold.cs) in this section
Code:
public override double DefaultWeight
        {
            get { return 0.02; }
        }
In CharacterCreation.cs (Scripts/Misc/CharacterCreation.cs) take a look at this section around line 19 in the AddBackpack method
Code:
private static void AddBackpack( Mobile m )
        {
            Container pack = m.Backpack;

            if ( pack == null )
            {
                pack = new Backpack();
                pack.Movable = false;

                m.AddItem( pack );
            }

            PackItem( new RedBook( "a book", m.Name, 20, true ) );
            PackItem( new Gold( 1500 ) ); // Starting gold can be customized here
            PackItem( new Dagger() );
            PackItem( new Candle() );
            PackItem( new CasinoToken() );
            PackItem( new StorageBook() );
            PackItem( new RewardTicketLedger() );
            PackItem( new TrashPack() );
            PackItem( new LetterofApprenticeship() );
That's where you add new stuff that characters start out with.
Just add new lines as necessary
Code:
PackItem( new YourStuff() );
The new stuff you add there will only be added to new characters; for existing characters you will have to do something ingame like [online addtopack youritem where playermobile.
*edit* Zandalor beat me to it...lol
__________________
In some cases stupid makes you win-Radwen
Johabius is offline   Reply With Quote
Old 04-12-2008, 07:17 AM   #4 (permalink)
Newbie
 
Join Date: Dec 2007
Age: 25
Posts: 62
Send a message via ICQ to Elora
Default

Thank you both! That's precisely what I was looking for.

~Elora

oh! bleh, one more question. How would I change the bandage application times? Or is that even possible?
(sorry bout the extra question thrown in.)
Thanks,
~El

Last edited by Elora; 04-12-2008 at 07:21 AM.
Elora is offline   Reply With Quote
Old 04-12-2008, 07:35 AM   #5 (permalink)
Newbie
 
Join Date: Jan 2008
Location: Hafnarfjordur Iceland
Posts: 65
Default

This is the best I can remember about setting it up, its hard when all of their documentation is on their site and the site is being moved, but hopefully this will help some.

UO Architect itself can be installed wherever you like, but OrbServerSDK.dll and UOArchitectInterface.dll must be placed directly in your RunUO directory.

The Orb Server itself should be placed in your scripts\custom directory. This is what actually allows UOArchitect to interact with your shard.

you need to set up the orb server to allow you to log into the desired shard, so you need to put in the server name, your login name and password to log in with it.
VindiKat is offline   Reply With Quote
Old 04-12-2008, 11:22 AM   #6 (permalink)
Forum Expert
 
Greystar's Avatar
 
Join Date: Mar 2004
Location: NorthCentral IL, USA
Age: 34
Posts: 3,846
Default

Quote:
Originally Posted by VindiKat View Post
This is the best I can remember about setting it up, its hard when all of their documentation is on their site and the site is being moved, but hopefully this will help some.

UO Architect itself can be installed wherever you like, but OrbServerSDK.dll and UOArchitectInterface.dll must be placed directly in your RunUO directory.

The Orb Server itself should be placed in your scripts\custom directory. This is what actually allows UOArchitect to interact with your shard.

you need to set up the orb server to allow you to log into the desired shard, so you need to put in the server name, your login name and password to log in with it.
You also have to edit a cfg file in the data directory. I'm not at my computer that has RunUO on it, but there is one file you need to edit to make it so the dll's are actually linked to RunUO. (Assembly.cfg I think)
__________________
Quote:
(\__/)
(='.'=)This is Bunny. Copy and paste bunny into your
(")_(")signature to help him gain world domination.
Killable Guards (GS Version)
Just a Simple Staff Tool
You can leave me messages.
Ernest Gary Gygax - Quote "I would like the world to remember me as the guy who really enjoyed playing games and sharing his knowledge and his fun pastimes with everybody else."
Greystar is offline   Reply With Quote
Old 04-12-2008, 01:20 PM   #7 (permalink)
Newbie
 
Zandalor's Avatar
 
Join Date: Apr 2008
Posts: 16
Post

Quote:
Originally Posted by Greystar View Post
You also have to edit a cfg file in the data directory. I'm not at my computer that has RunUO on it, but there is one file you need to edit to make it so the dll's are actually linked to RunUO. (Assembly.cfg I think)
Assemblies.cfg
__________________
Tranquillien GM Server
tranquillien.hopto.org - 5432
Zandalor is offline   Reply With Quote
Old 04-12-2008, 06:04 PM   #8 (permalink)
Newbie
 
Join Date: Dec 2007
Age: 25
Posts: 62
Send a message via ICQ to Elora
Default

Thank you all, so much!
I'll see what I can do with it.
~Elora
Elora is offline   Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0 RC5