Status
Not open for further replies.
Regnak updated New Boats and Galleons (with SmoothMove and MouseControl) with a new update entry:

Fixing names and clilocs (+ minor bugs)

Hello !

Here's a new update for the Galleons and Boats. :)

- found a "fix" for bad names of components. It should display like OSI now (but English only)
- fixed clilocs on the TillerMan for Galleons
- paints are now useable by players (not only staff)
- changed the Cargo Hold of the Britain Galleon

That's about it for now ;)

Next steps :
- improve the Tillerman so it looks more like OSI (gump with security access, etc.).
- add the other normal boats

I would like to thank everyone for...

Read the rest of this update entry...
 
No problem :)

Only the scripts folder has changed. No need to recompile.
You might have to delete the old Galleons in game to make it work though.

Thanks if you have feedback ;-)

-Rek-


Sent from my iPhone using Tapatalk
 
Thanks for the answer :D. Keep up the amazing work !

I have made a little edit on the "Lower Anchor" and "Raise Anchor" methods inside the BaseShip.cs to make the Tillerman say a phrase when he lower or raise the anchor.

Just change the original methods to this :

Code:
        public bool LowerAnchor(bool message)
        {
            if (this.CheckDecay())
                return false;
            
            #region Frase do TillerMan
            if(this.m_Anchored)
            {
                if (message && this.m_TillerManMobile != null)
                    this.m_TillerManMobile.Say(501445); // Ar, the anchor was already dropped sir.
                return false;
            }
            #endregion
        
            EndMove();
        
            m_Anchored = true;
        
            #region Frase do TillerMan
            if (message && this.m_TillerManMobile != null)
                this.m_TillerManMobile.Say(501444); // Ar, anchor dropped sir.
            #endregion
        
            return true;
        }

        public bool RaiseAnchor(bool message)
        {
            if (this.CheckDecay())
                return false;
        
            #region Frase do TillerMan
            if (!this.m_Anchored)
            {
                if (message && this.m_TillerManMobile != null)
                    this.m_TillerManMobile.Say(501447); // Ar, the anchor has not been dropped sir.

                return false;
            }
            #endregion
        
            m_Anchored = false;
        
            #region Frase do TillerMan
            if (message && this.m_TillerManMobile != null)
                this.m_TillerManMobile.Say(501446); // Ar, anchor raised sir.
            #endregion
        
            return true;
        }

And on the "OnSpeech" method, find the LowerAnchor and RaiseAnchor cases and inside the parentesis write "true", just like this :

Code:
                            case 0x6A: LowerAnchor(true); break;
                            case 0x6B: RaiseAnchor(true); break;

Just a little edits :D
 
Last edited:
If anyone can PM me about this, I am wondering if this system will work with a previous build of ServUO. I am using Publish 54 still, its just a slightly older version but I've done way too much work to start over. I can't get my core to compile with this system and I'm extremely inexperienced with working with the core files.
 
I am using Publish 54 still, its just a slightly older version but I've done way too much work to start over.

You don't have to start over. You can link your directory up with the repo and pull the updates, if it's not already linked to the repo.
 
I made the tillerman Invulnerable [Blessed] since if tillerman gets killed your ship disappears and you are stranded. Scalis sunk my Galleon!! ...LOL
 
Hmm sink the tiller man pvp comes to mind just need a move to region on touching the water . Add some hp... How hard would that be?
 
Hmm sink the tiller man pvp comes to mind just need a move to region on touching the water . Add some hp... How hard would that be?

I think that a new condition will need to be made using the water TileID when a playermobile dips in the water. For sure not an easy task.

I don't know how the Galleon Damage works on OSI shards but I think that leaving the tillerman like a npc that can be killed should work more or less equal. So to apply the damage on the galleon we can use the Tillerman HP like : When the tillerman HP is equal to 75% of his Max HP, the galleon itemID is changed, and when the tillerman HP hits 0, he dies and a timer is initiated like "2 minutes until the galleon sunk", and this 2 minutes is the time for the players recall for another place or die.
 
I think on OSI the way it used to be handled was to teleport you to the closest land mass. (If you fell off the boat), otherwise you would be dead trying to use the "Help Im stuck button" to do just the same, teleport to closest land mass. Moving a dead body like in Doom is done within the region we don't want to do it by map obviously, so the problem will be relocating the corpse in a specific instance: not dead on a landtile or dead on an impassable surface.

I think a gump should come up telling you to abandon ship, you get teleported to closest land mass and to the victor go the spoils, your Galleon will remain standing for a period of minutes allowing the opposition to loot it before it disappears.
If you don't have any items onboard it can convert the value of the craft such as PVP and Insurance is handled. Tokuno Galleon is 150k maybe a 10% salvage of 15k goes to the victorious party in addition to any tangible loot.
 
I added the rest of the boats to the Boats.cs here. Everything is working fine on my server, though the testing has been limited.
 

Attachments

  • Boats.cs
    8.9 KB · Views: 24
so I tried to put these in a fresh server copy and I got this error
Code:
O-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' confli
cts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-ma
ster\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-mast
er\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 111: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServU
O-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' confli
cts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-ma
ster\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-mast
er\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
+ Spells/Spellweaving/SummonFey.cs:
    CS0436: Line 11: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 11: The type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-m
aster\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs' conflicts w
ith the imported type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-master\Se
rvUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-master\Scri
pts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs'.
+ Spells/Spellweaving/SummonFiend.cs:
    CS0436: Line 11: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 11: The type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-m
aster\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs' conflicts w
ith the imported type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-master\Se
rvUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-master\Scri
pts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs'.
+ Spells/Spellweaving/Thunderstorm.cs:
    CS0436: Line 11: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 12: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 12: The type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-m
aster\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs' conflicts w
ith the imported type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-master\Se
rvUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-master\Scri
pts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs'.
    CS0436: Line 38: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 43: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
+ Spells/Spellweaving/WordOfDeath.cs:
    CS0436: Line 94: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 102: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServU
O-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' confli
cts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-ma
ster\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-mast
er\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 9: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-
master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflict
s with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mast
er\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-master
\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 9: The type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-ma
ster\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs' conflicts wi
th the imported type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-master\Ser
vUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-master\Scrip
ts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs'.
    CS0436: Line 40: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
+ Spells/Third/Bless.cs:
    CS0436: Line 81: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 89: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 14: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 14: The type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-m
aster\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs' conflicts w
ith the imported type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-master\Se
rvUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-master\Scri
pts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs'.
    CS0436: Line 42: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
+ Spells/Third/Fireball.cs:
    CS0436: Line 89: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 95: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 13: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 13: The type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-m
aster\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs' conflicts w
ith the imported type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-master\Se
rvUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-master\Scri
pts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs'.
    CS0436: Line 37: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
+ Spells/Third/MagicLock.cs:
    CS0436: Line 77: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 85: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 17: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 17: The type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-m
aster\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs' conflicts w
ith the imported type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-master\Se
rvUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-master\Scri
pts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs'.
+ Spells/Third/Poison.cs:
    CS0436: Line 138: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServU
O-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' confli
cts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-ma
ster\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-mast
er\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 146: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServU
O-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' confli
cts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-ma
ster\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-mast
er\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 22: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 22: The type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-m
aster\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs' conflicts w
ith the imported type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-master\Se
rvUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-master\Scri
pts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs'.
    CS0436: Line 32: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
+ Spells/Third/Telekinesis.cs:
    CS0436: Line 87: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 97: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 15: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 15: The type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-m
aster\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs' conflicts w
ith the imported type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-master\Se
rvUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-master\Scri
pts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs'.
    CS0436: Line 109: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServU
O-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' confli
cts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-ma
ster\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-mast
er\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
+ Spells/Third/Teleport.cs:
    CS0436: Line 129: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServU
O-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' confli
cts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-ma
ster\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-mast
er\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 137: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServU
O-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' confli
cts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-ma
ster\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-mast
er\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 16: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 16: The type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-m
aster\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs' conflicts w
ith the imported type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-master\Se
rvUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-master\Scri
pts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs'.
+ Spells/Third/Unlock.cs:
    CS0436: Line 42: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 91: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 16: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 16: The type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-m
aster\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs' conflicts w
ith the imported type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-master\Se
rvUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-master\Scri
pts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs'.
+ Spells/UnsummonTimer.cs:
    CS0436: Line 9: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-
master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflict
s with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mast
er\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-master
\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 10: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
+ Targets/BladedItemTarget.cs:
    CS0436: Line 13: The type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-m
aster\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs' conflicts w
ith the imported type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-master\Se
rvUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-master\Scri
pts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs'.
    CS0436: Line 14: The type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-m
aster\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs' conflicts w
ith the imported type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-master\Se
rvUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-master\Scri
pts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs'.
    CS0436: Line 20: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 28: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
+ Targets/MoveTarget.cs:
    CS0436: Line 17: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
+ Targets/PickMoveTarget.cs:
    CS0436: Line 14: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
Errors:
+ Customs/NewBoats for ServUO Publish 54/Server/Item.cs:
    CS0227: Line 1040: Unsafe code may only appear if compiling with /unsafe
Scripts: One or more scripts failed to compile or no script files were found.
- Press return to exit, or R to try again.
 
so I tried to put these in a fresh server copy and I got this error
Code:
O-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' confli
cts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-ma
ster\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-mast
er\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 111: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServU
O-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' confli
cts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-ma
ster\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-mast
er\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
+ Spells/Spellweaving/SummonFey.cs:
    CS0436: Line 11: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 11: The type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-m
aster\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs' conflicts w
ith the imported type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-master\Se
rvUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-master\Scri
pts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs'.
+ Spells/Spellweaving/SummonFiend.cs:
    CS0436: Line 11: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 11: The type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-m
aster\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs' conflicts w
ith the imported type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-master\Se
rvUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-master\Scri
pts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs'.
+ Spells/Spellweaving/Thunderstorm.cs:
    CS0436: Line 11: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 12: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 12: The type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-m
aster\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs' conflicts w
ith the imported type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-master\Se
rvUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-master\Scri
pts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs'.
    CS0436: Line 38: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 43: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
+ Spells/Spellweaving/WordOfDeath.cs:
    CS0436: Line 94: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 102: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServU
O-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' confli
cts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-ma
ster\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-mast
er\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 9: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-
master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflict
s with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mast
er\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-master
\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 9: The type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-ma
ster\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs' conflicts wi
th the imported type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-master\Ser
vUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-master\Scrip
ts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs'.
    CS0436: Line 40: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
+ Spells/Third/Bless.cs:
    CS0436: Line 81: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 89: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 14: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 14: The type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-m
aster\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs' conflicts w
ith the imported type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-master\Se
rvUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-master\Scri
pts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs'.
    CS0436: Line 42: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
+ Spells/Third/Fireball.cs:
    CS0436: Line 89: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 95: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 13: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 13: The type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-m
aster\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs' conflicts w
ith the imported type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-master\Se
rvUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-master\Scri
pts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs'.
    CS0436: Line 37: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
+ Spells/Third/MagicLock.cs:
    CS0436: Line 77: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 85: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 17: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 17: The type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-m
aster\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs' conflicts w
ith the imported type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-master\Se
rvUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-master\Scri
pts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs'.
+ Spells/Third/Poison.cs:
    CS0436: Line 138: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServU
O-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' confli
cts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-ma
ster\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-mast
er\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 146: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServU
O-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' confli
cts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-ma
ster\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-mast
er\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 22: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 22: The type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-m
aster\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs' conflicts w
ith the imported type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-master\Se
rvUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-master\Scri
pts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs'.
    CS0436: Line 32: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
+ Spells/Third/Telekinesis.cs:
    CS0436: Line 87: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 97: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 15: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 15: The type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-m
aster\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs' conflicts w
ith the imported type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-master\Se
rvUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-master\Scri
pts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs'.
    CS0436: Line 109: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServU
O-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' confli
cts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-ma
ster\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-mast
er\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
+ Spells/Third/Teleport.cs:
    CS0436: Line 129: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServU
O-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' confli
cts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-ma
ster\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-mast
er\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 137: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServU
O-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' confli
cts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-ma
ster\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-mast
er\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 16: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 16: The type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-m
aster\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs' conflicts w
ith the imported type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-master\Se
rvUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-master\Scri
pts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs'.
+ Spells/Third/Unlock.cs:
    CS0436: Line 42: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 91: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 16: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 16: The type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-m
aster\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs' conflicts w
ith the imported type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-master\Se
rvUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-master\Scri
pts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs'.
+ Spells/UnsummonTimer.cs:
    CS0436: Line 9: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-
master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflict
s with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mast
er\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-master
\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 10: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
+ Targets/BladedItemTarget.cs:
    CS0436: Line 13: The type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-m
aster\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs' conflicts w
ith the imported type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-master\Se
rvUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-master\Scri
pts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs'.
    CS0436: Line 14: The type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-m
aster\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs' conflicts w
ith the imported type 'Server.Item' in 'c:\Users\Gamble\Desktop\ServUO-master\Se
rvUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-master\Scri
pts\Customs\NewBoats for ServUO Publish 54\Server\Item.cs'.
    CS0436: Line 20: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
    CS0436: Line 28: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
+ Targets/MoveTarget.cs:
    CS0436: Line 17: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
+ Targets/PickMoveTarget.cs:
    CS0436: Line 14: The type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO
-master\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs' conflic
ts with the imported type 'Server.Mobile' in 'c:\Users\Gamble\Desktop\ServUO-mas
ter\ServUO.exe'. Using the type defined in 'c:\Users\Gamble\Desktop\ServUO-maste
r\Scripts\Customs\NewBoats for ServUO Publish 54\Server\Mobile.cs'.
Errors:
+ Customs/NewBoats for ServUO Publish 54/Server/Item.cs:
    CS0227: Line 1040: Unsafe code may only appear if compiling with /unsafe
Scripts: One or more scripts failed to compile or no script files were found.
- Press return to exit, or R to try again.
It looks like you didn't do the Server/ edits and re-compile. ;)
 
my bad lol I thought this was a drag and drop .... thanks ... So I copied and replaced the files and I got these errors this time
Code:
Step 2 - Compile ServUO

Press any key to continue . . .
Could Not Find C:\Users\Gamble\Desktop\ServUO\ServUO.exe

C:\Users\Gamble\Desktop\ServUO>C:\Windows\Microsoft.NET\Framework\v4.0.30319\csc
.exe /win32icon:"C:\Users\Gamble\Desktop\ServUO\Server\servuo.ico" /r:"C:\Users\
Gamble\Desktop\ServUO\OpenUO.Core.dll" /r:"C:\Users\Gamble\Desktop\ServUO\OpenUO
.Ultima.dll" /r:"C:\Users\Gamble\Desktop\ServUO\OpenUO.Ultima.Windows.Forms.dll"
/r:"C:\Users\Gamble\Desktop\ServUO\SevenZipSharp.dll" /target:exe /out:"C:\User
s\Gamble\Desktop\ServUO\ServUO.exe" /recurse:"C:\Users\Gamble\Desktop\ServUO\Ser
ver\*.cs" /d:Framework_4_0 /d:ServUO /nowarn:0618 /debug /nologo /optimize /unsa
fe
Server\Items\BaseSmoothMulti.cs(116,45): error CS0246: The type or namespace
        name 'ContainerMultiList' could not be found (are you missing a using
        directive or an assembly reference?)
Server\Items\BaseSmoothMulti.cs(206,13): error CS0246: The type or namespace
        name 'SmoothMovement' could not be found (are you missing a using
        directive or an assembly reference?)
Server\Items\BaseSmoothMulti.cs(206,49): error CS0246: The type or namespace
        name 'SmoothMovement' could not be found (are you missing a using
        directive or an assembly reference?)

Done!

Press any key to continue . . .
 
Hello guys,

I can say that the current version of the New Boats is not compatible with the latest ServUO Publishes.

As I have abandoned this project (and the project of my UO Shard), I hope someone else will take the relay on this.

Good luck !

-Regnak-
 
Well the boat control has a major issue anyway. Once in steering mode if you crash and get kicked off boat you are frozen. It crashes the client in general also. There is alot to attend to with SA unfinished content as well as some bugs from previously released expansions, so I have also decided not to use this. Thank you for all the efforts on this project.
 
I noticed the crashing when I was changing the old pirates script over to the smooth movement boats (the name of the script eludes me, but it was the npc pirates that control boats and chase players). Between the few tweaks I made and updating my client, the crashes seem to have gone away. That was just testing with myself, a couple friends and the NPC pirates though, not sure if more players might cause more crashes.

Sent from my DROID4 using Tapatalk
 
I noticed the crashing when I was changing the old pirates script over to the smooth movement boats (the name of the script eludes me, but it was the npc pirates that control boats and chase players). Between the few tweaks I made and updating my client, the crashes seem to have gone away. That was just testing with myself, a couple friends and the NPC pirates though, not sure if more players might cause more crashes.

Sent from my DROID4 using Tapatalk
Try dying or crashing while you are steering the ship or if you were steering your friends ship and you crashed you would definitely be shot to closest land mass and frozen in place cause it thinks you still steering. You also cannot recall to the key so if you are shot off the boat good luck finding it. Just stating this in an alpha stage at best.
 
Just some notes on this. Theres only one file that doesn't just replace other files from the current 54 publish and thats mobile, but its easy to merge. Other then that other then crashes menchoned (which I havent tested yet) only other then I see is some warnings which might be an easy fix.

Code:
Warnings:
Scripts\Custom Systems\NewBoats\Mobiles\TillermanHS.cs(10,7): warning CS0105:
  The using directive for 'Server.Multis' appeared previously in this
  namespace
Scripts\Custom Systems\NewBoats\BaseShip.cs(45,20): warning CS0108:
  'Server.Multis.BaseShip.Moving' hides inherited member
  'Server.Items.BaseSmoothMulti.Moving'. Use the new keyword if hiding was
  intended.
ServUO.exe: (Location of symbol related to previous warning)

Scripts\Custom Systems\NewBoats\Mobiles\TillermanHS.cs(120,21): warning CS0108:
'Server.Mobiles.TillerManHS.Say(int)' hides inherited member
  'Server.Mobile.Say(int)'. Use the new keyword if hiding was intended.
ServUO.exe: (Location of symbol related to previous warning)
Scripts\Custom Systems\NewBoats\Mobiles\TillermanHS.cs(125,21): warning CS0108:
'Server.Mobiles.TillerManHS.Say(int, string)' hides inherited member
  'Server.Mobile.Say(int, string)'. Use the new keyword if hiding was
  intended.
ServUO.exe: (Location of symbol related to previous warning)

Scripts\Custom Systems\NewBoats\BaseShip.cs(48,15): warning CS0108:
  'Server.Multis.BaseShip.IsMoving' hides inherited member
  'Server.Items.BaseSmoothMulti.IsMoving'. Use the new keyword if hiding
  was intended.
ServUO.exe: (Location of symbol related to previous warning)

Scripts\Custom Systems\NewBoats\Boats\BaseBoat.cs(25,24): warning CS0108:
  'Server.Multis.NewBaseBoat.Hold' hides inherited member
  'Server.Multis.BaseShip.Hold'. Use the new keyword if hiding was
  intended.
Scripts\Custom Systems\NewBoats\BaseShip.cs(85,21): (Location of symbol related
  to previous warning)


Some ideas for this would be to include Arte Gordon's XML Siege sytem. It was dealing with Land cannons you could hitch to your horse and move around, even onto boats, for ship to ship combat (Including the pirate ships listed above). I havent tried to update that system for RunUO in a long time, but with High Seas it might be worth it. It used the XML settings. At the very least it could give options for ways of making ship to ship combat easier to add. If I finish my update of my server to ServeUO I might try to play around with this. Right now Im still learning all the differences between OrbUO and ServeUO to make much of an effective updater. High Seas prob one of the best UO expansions ever for roleplay, too bad it came at the end of UO's lifespan.

http://www.runuo.com/community/thre...r-damageable-structures-beta-runuo-2-0.69253/
 
Sirenix, just as a heads up XMLSpawner (including XmlSiege) comes as part of the stock ServUO package. All you (or anyone) would have to do is add the flags to the boats/ships.
 
Last edited:
Is it possible to change what the deeds look like for each of the 4 galleons? I want to use possibly the same graphic just with different hues, so its easier to tell the ships apart if you have all 4 deeds in your pack.

Also, I'm having tons of issues with this system. ALL my ships are saying the deck is constantly cluttered and wont let me dry dock any ship at all. And I'm finding that only my Owner account can use the boats. It wont let any other account in the game use the ships wheel to steer the boat for any reason.

I've even tried setting my own player account to owner level to test, and it wont even let that account do it once I raise the access level. Only the actual master account. Has anyone else seen these problems?

*Added*

Apparently my other accounts can steer with classic text commands (left, right, forward, back, turn around, etc). But the ships wheel doesn't work for any other account accept the master Owner account.

*Also added*

I've even tried deleting relocating off-ship the cannon platforms, hold, ships wheel, mouring lines and even the tillerman. It still says the deck is cluttered.
 
Last edited:
Regnak updated New Boats and Galleons (with SmoothMove and MouseControl) with a new update entry:

NewBoats v1.11 - Compatibility with latest ServUO version and minor fixes

To install the new boats :

1/ Copy the two folders Scripts and Server from this package
2/ Paste the files to your ServUO Folder
3/ Replace the files when asked
4/ Recompile the Core
5/ Ready to launch

V.1.11 (2014-04-24)
- Compatibility with ServUO Publish 54 (2014-04-10)
- Fix DryDock with all the Galleons
- Add all the normal boats
- The Tillerman Mobile is set to invulnerable

Read the rest of this update entry...
 
So, I just got a wild idea. And I pose this as purely a hypothetical, I don't expect anyone to actually do this. So, out of curiosity how difficult would it be to modify these boats using the new smooth movement so that when they are sitting idle, they sway a few pixels from west to east, or north to south, like they're in wavey water? Just curious. =)

It'd add so much more depth to the boats which already look and feel amazing, in my most humble opinion. ;)
 
Regnak updated New Boats and Galleons with a new update entry:

Introducing Boat Fight

v.1.12
- leave the commands of the boats on death or on logout
- fix recalling from key
- introducing BoatFight (not finished yet)

Manual for Boat Fight :
- Create a HeavyCannonDeed or LightCannonDeed
- Place them on the Cannon Places
- Create a ShipCannonBall (iron, fiery, etc...)
- Load the cannon
- and fire at the ennemy boat (for now, you can only target the main mast... I'm working on expending to the whole ship ;) )

Read the rest of this update entry...
 
Followed install instructions. Got a couple errors. I think your core differs slightly from the one you sent me the other day Regnak.

Code:
----------------------------------------------------------------------------
ServUO - [http://www.servuo.com] Version 0.5, Build 5237.14336
Publish 54
Core: Optimizing for 8 64-bit processors
RandomImpl: CSPRandom (Software)
OpenUO Error: Client files not found.
Scripts: Compiling C# scripts...Failed with: 3 errors, 0 warnings
Errors:
+ Items/Food/Food.cs:
    CS0234: Line 6: The type or namespace name 'FoodEffects' does not exist in t
he namespace 'CustomsFramework.Systems' (are you missing an assembly reference?)

+ Misc/RegenRates.cs:
    CS0234: Line 9: The type or namespace name 'FoodEffects' does not exist in t
he namespace 'CustomsFramework.Systems' (are you missing an assembly reference?)

+ Multis/HouseFoundation.cs:
    CS0234: Line 6: The type or namespace name 'VIPSystem' does not exist in the
namespace 'CustomsFramework.Systems' (are you missing an assembly reference?)
Scripts: One or more scripts failed to compile or no script files were found.
- Press return to exit, or R to try again.

*ADDED*

My previous build was 5233.24230. Maybe that is the problem? If it is, I do not know how to fix it to make it run the latest build. =(
 
My previous build was 5233.24230. Maybe that is the problem?
The build number doesn't have anything to do it with it. It's just a number based off of date/time ticks that gets generated anytime you compile the core. You could recompile over and over with the exact same code and would get a new build number each time. You should double check your edits to see where you went wrong.
 
Ahhh. Well now I feel silly. But hey, now I know, right? =)

I don't know what I could have done wrong. The other day when the other release came out fixing the drydock issue, I copied/pasted and it worked just fine. I did the same thing and now its throwing errors in places that aren't even related to the boats. Its weird. I'll look into it a little further unless anyone has any other input. Thank you Kalamus.

I believe I see the problem now. Not sure how to fix it just yet, but I feel like I'm on the right track. =)
 
Last edited:
Regnak updated New Boats and Galleons with a new update entry:

NewBoats v1.14 - Fix on the cannons

To install the new boats :

1/ Copy the two folders Scripts and Server from this package
2/ Paste the files to your ServUO Folder
3/ Replace the files when asked
4/ Recompile the Core
5/ Ready to launch

v1.11 (2014-04-24)
- Compatibility with ServUO Publish 54 (2014-04-10)
- Fix DryDock with all the Galleons
- Add all the normal boats
- The Tillerman Mobile is set to invulnerable

v1.12 (2014-04-26)
- leave the commands of the boats on death or on logout
- fix recalling from key
- introducing...

Read the rest of this update entry...
 
suggestions"
1: mount/dismount from.sendmessage you assume control of the vesal on using shipwheel and a (may not use this while mounted)
fail msg. (super simple)
2: raise the cannon fire graphic z appropriately (fire animation going below shipdeck)

questions:
a: i know its beta but fire does what? damage players that step on it? does it dmg the boat condition at all? and if so how does a boat in combat repair itself?
b: i launched a few canonballs at a ship and i get green flames (below deck) but the effect has been ongoing for 30 mins now supposed to work like this?
 
Last edited:
Thanks for the suggestions !!
I'll work on these for the next version.

For your questions :
a/ up to now, fire only works when targeting the Main Mast. It's supposed to work on the whole ship and if I want to be really OSI style, we should not even be able to target, but fire straight ahead. And there should be a Gump Menu to load and fire with the cannons.
Repairs should come from the Tillerman (emergency repairs), or from a lighthouse addon.

b/ the power of the cannon balls has still to be adjusted. As a GM, you can change their power to 64.000 and you will notice a change in the boat durability when firing.

I know it's still in beta, and I wish I could throw more time in this project, but time is missing...
Hopefully next month we have a better version, which would be closer to OSI. ;)

Anyway, thanks for testing it out ! I really appreciate the feedback.

-Rek-



Envoyé de mon iPhone à l'aide de Tapatalk
 
With guidance of Regnak, i've merged playermobile.cs for both his boats and imbuing from Dreamseeker - in case anyone need one ;)
 

Attachments

  • PlayerMobile.cs
    137.4 KB · Views: 7
i am new to these scripts so if somebody could help me figure out how to fix the derective and assembly references i would be deeply greatfull this is an awesome script i have seen it in action however my primary source for errors is not playing uo anymore so im kind of in a sticky situation.. thank you for your time :)
 
Hey !
What assembly are you missing ?
Any error message ?
Have you recompiled the core after copying the scripts ? ;)


Envoyé de mon iPhone à l'aide de Tapatalk
 
Status
Not open for further replies.
Back