Go Back   RunUO - Ultima Online Emulation > RunUO > RunUO Post Archive

RunUO Post Archive The Archvie

Reply
 
Thread Tools Display Modes
Old 06-02-2004, 06:42 PM   #1 (permalink)
Forum Novice
 
Rakshasas's Avatar
 
Join Date: Oct 2003
Location: Canada
Age: 24
Posts: 185
Send a message via ICQ to Rakshasas Send a message via AIM to Rakshasas Send a message via MSN to Rakshasas
Default How do I get the Message In a Bottle/SOS working on <facet>?

After disabling Trammel on my shard, I quickly found out that messages in bottles no longer work, nor to the SOS. After fiddling around for about an hour or two I think I finally got it all set up properly.

Note: This wont tell you how to disable a facet on your shard, there are already other FAQs that deal with that.
  1. Open MessageInABottle.cs in Scripts\Items\Skill Items\Fishing\Misc
  2. On line 21 you should see:
    PHP Code:
        [Constructable]
    public 
    MessageInABottle() : thisMap.Trammel)
    {

    Change it to:
    PHP Code:
        [Constructable]
    public 
    MessageInABottle() : thisMap.Felucca)
    {

  3. On line 51 you should see:
    PHP Code:
                switch ( version )
    {
        case 
    1:
        {
            
    m_TargetMap reader.ReadMap();
            break;
        }
        case 
    0:
        {
            
    m_TargetMap Map.Trammel;
            break;
        }

    Change it to:

    PHP Code:
                switch ( version )
    {
        case 
    1:
        {
            
    m_TargetMap reader.ReadMap();
            break;
        }
        case 
    0:
        {
            
    m_TargetMap Map.Felucca;
            break;
        }

  4. Save and close, now open SOS.cs in \Scripts\Items\Skill Items\Fishing\Misc
  5. On line 36 you should see:
    PHP Code:
    [Constructable]
    public 
    SOS() : thisMap.Trammel )
    {

    Change it to:
    PHP Code:
    [Constructable]
    public 
    SOS() : thisMap.Felucca )
    {

  6. On line 86:
    PHP Code:
    if ( m_TargetMap == null || m_TargetMap == Map.Internal )
        
    m_TargetMap Map.Trammel
    change it to:
    PHP Code:
    if ( m_TargetMap == null || m_TargetMap == Map.Internal )
        
    m_TargetMap Map.Felucca

I hope I didn't leave anything out, but that should get the bottles working on different facets.
__________________
Try diplomacy first, you can always invade later...
Rakshasas 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