|
||
|
|||||||
| New Join Forum So your new to RunUO and looking to work with people that are new, this is the place. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 (permalink) |
|
Newbie
|
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 |
|
|
|
|
|
#2 (permalink) | |
|
Newbie
Join Date: Apr 2008
Posts: 16
|
Quote:
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 |
|
|
|
|
|
|
#3 (permalink) |
|
Forum Expert
|
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; }
}
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() );
Just add new lines as necessary Code:
PackItem( new YourStuff() ); *edit* Zandalor beat me to it...lol
__________________
In some cases stupid makes you win-Radwen |
|
|
|
|
|
#4 (permalink) |
|
Newbie
|
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. |
|
|
|
|
|
#5 (permalink) |
|
Newbie
Join Date: Jan 2008
Location: Hafnarfjordur Iceland
Posts: 65
|
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. |
|
|
|
|
|
#6 (permalink) | ||
|
Forum Expert
Join Date: Mar 2004
Location: NorthCentral IL, USA
Age: 34
Posts: 3,846
|
Quote:
__________________
Quote:
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." |
||
|
|
|
|
|
#7 (permalink) | |
|
Newbie
Join Date: Apr 2008
Posts: 16
|
Quote:
![]()
__________________
Tranquillien GM Server tranquillien.hopto.org - 5432 |
|
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|