On the newest ServUO:

Errors:
+ Custom Items/EVO System/BaseEvo.cs:
CS0508: Line 265: 'Xanthos.Evo.BaseEvo.Damage(int, Server.Mobile)': return type must be 'int' to match overridden member 'Server.Mobile.Damage(int, Server.Mobile)'

Lines 265 - 271:

public override void Damage( int amount, Mobile defender )
{
if ( AddPointsOnDamage )
AddPoints( defender );

base.Damage( amount, defender );
}
 
This and SimonOmega helped me get on the right track.
Here is the edit I've been using that appears to be working fine.

public override int Damage( int amount, Mobile defender ) { if ( AddPointsOnDamage ) AddPoints( defender ); return base.Damage( amount, defender ); }

Replaced "void" with "int" as Voxpire pointed out but It wouldn't allow the If statement to be broken across two lines assume it was just confusing the emulator reading it. As stated before I've been using this fix with BaseEvo.cs and BaseMountEvo.cs.
 
  • Like
Reactions: ExX
Would you mind sharing an updated evo weapon system? It would save me a lot of time of fixing the errors as I upgrade my 3 year old server to the newest distro. :D
 
Would you mind sharing an updated evo weapon system? It would save me a lot of time of fixing the errors as I upgrade my 3 year old server to the newest distro. :D

I regret to inform I only have the Evo System (Shrinking, Training Elementals, Mounts, Pets, Mercs, Merc Gear) I don't believe I ever got into or used the Evo Weapons Sorry >.<
 
  • Like
Reactions: ExX
I am trying to add this to newest build, downloaded 9/19/19, and getting this on several of the evo pets/animals
+ Customs/Evosystem/EVO System/Dragon/DragonEvo.cs:
CS0115: Line 26: 'RaelisDragon.HasBreath': no suitable method found to overr
ide
+ Customs/Evosystem/EVO System/EvoMounts2/ECuSidhe/CuSidheEvo.cs:
CS0115: Line 26: 'EvoCuSidhe.HasBreath': no suitable method found to overrid
e
line 26 of each is as follows
public override bool HasBreath{ get{ return true; } }
has the method changed? any help will be appreciated, thank you in advance ;]
 
Those breath mechanics were removed, not sure if they were replaced with something else, but you can just remove the breath code from the offending script and it should work.
 
Can someone help me, I try to place the pet EVO system and the shrink system but it gives error, I am not an expert scriptin
Post automatically merged:

1582735664970.png
 
Last edited:
Here's what I'm facing with the script if anyone can point me the solution this is beyond what I can do
1584043712502.png
Post automatically merged:

These files are basicaly the same. I thought i could post a complete one
C#:
#region AuthorHeader
//
//    EvoSystem version 2.1, by Xanthos
//
//
#endregion AuthorHeader
using System;
using System.Collections;
using System.Collections.Generic;
using Server;
using Server.Mobiles;

namespace Xanthos.Evo
{
    class EvoArcherAI : ArcherAI
    {
        private bool m_CanAttackPlayers;

        public EvoArcherAI( BaseCreature m, bool canAttackPlayers ) : base( m )
        {
            m_CanAttackPlayers = canAttackPlayers;
        }
        
        public override void EndPickTarget(Mobile from, IDamageable target, OrderType order)
        {
            IDamageable oldTarget = m_Mobile.ControlTarget;
            OrderType oldOrder = order;

            base.EndPickTarget( from, target, order );

            if ( OrderType.Attack == order && target is PlayerMobile && !m_CanAttackPlayers )
            {
                // Not allowed to attack players so reset what was changed by EndPickTarget
                m_Mobile.ControlTarget = oldTarget;
                m_Mobile.ControlOrder = oldOrder;
            }
        }

        public override bool DoOrderGuard()
        {
            if ( m_Mobile.IsDeadPet )
                return true;

            Mobile controlMaster = m_Mobile.ControlMaster;

            if ( controlMaster == null || controlMaster.Deleted )
                return true;

            IDamageable combatant = m_Mobile.Combatant;

            List<AggressorInfo> aggressors = controlMaster.Aggressors;

            if ( aggressors.Count > 0 )
            {
                for ( int i = 0; i < aggressors.Count; ++i )
                {
                    AggressorInfo info = aggressors[ i ];
                    Mobile attacker = info.Attacker;

                    if ( attacker != null && !attacker.Deleted && attacker.GetDistanceToSqrt( m_Mobile ) <= m_Mobile.RangePerception )
                    {
                        if ( combatant == null || ((Mobile)attacker).GetDistanceToSqrt( controlMaster ) < ((Mobile)combatant).GetDistanceToSqrt( controlMaster ) )
                        {
                            if ( ( attacker is PlayerMobile && m_CanAttackPlayers ) || !( attacker is PlayerMobile ) )
                                combatant = attacker;
                        }
                    }
                }

                if ( combatant != null )
                    m_Mobile.DebugSay( "Crap, my master has been attacked! I will atack one of those bastards!" );
            }

            if ( combatant != null && combatant != m_Mobile && combatant != m_Mobile.ControlMaster && !combatant.Deleted && combatant.Alive && !((Mobile)m_Mobile.Combatant).IsDeadBondedPet && m_Mobile.CanSee( combatant ) && m_Mobile.CanBeHarmful( combatant, false ) && combatant.Map == m_Mobile.Map )
            {
                m_Mobile.DebugSay( "Guarding from target..." );

                m_Mobile.Combatant = combatant;
                m_Mobile.FocusMob = combatant;
                Action = ActionType.Combat;

                /*
                 * We need to call Think() here or spell casting monsters will not use
                 * spells when guarding because their target is never processed.
                 */
                Think();
            }
            else
            {
                m_Mobile.DebugSay( "Nothing to guard from" );

                m_Mobile.Warmode = false;

                WalkMobileRange( controlMaster, 1, false, 0, 1 );
            }

            return true;
        }
    }
}
Post automatically merged:

And here are the BaseEvo.cs lines
C#:
        protected override BaseAI ForcedAI { get { return m_ForcedAI; } }

        private void InitAI()
        {
            switch ( AI )
            {
                case AIType.AI_Melee:
                    m_ForcedAI = new EvoMeleeAI( this);
                    break;
                case AIType.AI_Berserk:
                    m_ForcedAI = new EvoBerserkAI( this);
                    break;
                case AIType.AI_Archer:
                    m_ForcedAI = new EvoArcherAI( this);
                    break;
                case AIType.AI_Mage:
                    m_ForcedAI = new EvoMageAI( this);
                    break;
                default:
                    m_ForcedAI = null;
                    break;
            }
            ChangeAIType( AI );
        }
 
the error tells you that you did not provide a value / variable for the parameter canAttackPlayers.
your Code:
C#:
    m_ForcedAI = new EvoMeleeAI( this);

what it should like for example
C#:
m_ForcedAI = new EvoMeleeAI(this, true);
 
Im getting these Errors can anyone help plz im using pub57 if that matters. Thx!
+ My Customs/EVO System/BaseEvo.cs:
CS0234: Line 16: The type or namespace name 'Buffers' does not exist in the namespace 'System' (are you missing an assembly reference?)
CS0234: Line 18: The type or namespace name 'Linq' does not exist in the namespace 'System.Xml' (are you missing an assembly reference?)
Scripts: One or more scripts failed to compile or no script files were found.
 
Im getting these Errors can anyone help plz im using pub57 if that matters. Thx!
+ My Customs/EVO System/BaseEvo.cs:
CS0234: Line 16: The type or namespace name 'Buffers' does not exist in the namespace 'System' (are you missing an assembly reference?)
CS0234: Line 18: The type or namespace name 'Linq' does not exist in the namespace 'System.Xml' (are you missing an assembly reference?)
Scripts: One or more scripts failed to compile or no script files were found.
Try this one im using.
 

Attachments

  • Evo system updated.rar
    146.1 KB · Views: 8
Try this one im using.
What do you make of this?

Errors:
+ My Customs/Evo Creatures/BaseEvo.cs:
CS0246: Line 29: The type or namespace name 'ShrinkItem' could not be found (are you missing a using directive or an assembly reference?)
+ My Customs/Evo Creatures/BaseMountEvo.cs:
CS0246: Line 29: The type or namespace name 'ShrinkItem' could not be found (are you missing a using directive or an assembly reference?)
Scripts: One or more scripts failed to compile or no script files were found.
 
Install the shrink system or delete references.
i replaced the one i had with this one and it worked thanks. but i didnt see a mercenary script in your file.
i was hoping to get mercenarys on the server im playing with any way do to do that?
 
thx ill try this one i found one similar with just bushido. but it didnt want to work no matter what i did to it.
ugh this one has more errors than the merc file i was trying to use whigh i got down to one error i read something about the discordance file needing fixed to run this. but no ideal what VvVSigil is.
Errors:
+ My Customs/Squire System/Other/SquireTargets.cs:
CS0117: Line 1377: 'VvVSigil' does not contain a definition for 'ExistsOn'
CS0122: Line 911: 'Discordance.m_Table' is inaccessible due to its protection level
CS0122: Line 990: 'Discordance.DiscordanceInfo' is inaccessible due to its protection level
CS0122: Line 990: 'Discordance.DiscordanceInfo' is inaccessible due to its protection level
CS0122: Line 991: 'Discordance.DiscordanceInfo.m_Timer' is inaccessible due to its protection level
CS0122: Line 991: 'Discordance.DiscordanceInfo' is inaccessible due to its protection level
CS0122: Line 991: 'Discordance.DiscordanceInfo' is inaccessible due to its protection level
CS0122: Line 991: 'Discordance.ProcessDiscordance(Discordance.DiscordanceInfo)' is inaccessible due to its protection level
CS0122: Line 993: 'Discordance.m_Table' is inaccessible due to its protection level
Scripts: One or more scripts failed to compile or no script files were found.
 
Last edited:
In Discordance.cs change the "private" to "public".
About the VvVSigil....

Try delete this:

C#:
if (VvVSigil.ExistsOn(m_Squire))
                        {
                            if (m_Squire.m_SquireBeQuiet == false)
                            {
                                SquireDialog.DoSquireDialog(m_From, m_Squire, SquireDialogTree.SigilHasReturnedBecauseAlreadyHaveOne, null, null);
                            }
                        }

And change else if to if in next line.
 
that came up with a bunch more errors im about done with this pub 57.3 looking for something older now
well im getting the same thing in all...
Errors:
+ My Customs/Squire System/Other/SquireTargets.cs:
CS1519: Line 1409: Invalid token 'else' in class, struct, or interface member declaration
CS8124: Line 1409: Tuple must contain at least two elements.
CS1026: Line 1409: ) expected
CS1519: Line 1409: Invalid token '==' in class, struct, or interface member declaration
CS8124: Line 1409: Tuple must contain at least two elements.
CS1026: Line 1409: ) expected
CS1519: Line 1409: Invalid token '==' in class, struct, or interface member declaration
CS1519: Line 1409: Invalid token ')' in class, struct, or interface member declaration
CS8124: Line 1411: Tuple must contain at least two elements.
CS1026: Line 1411: ) expected
CS1519: Line 1411: Invalid token '==' in class, struct, or interface member declaration
CS1519: Line 1413: Invalid token '(' in class, struct, or interface member declaration
CS1031: Line 1413: Type expected
CS1026: Line 1413: ) expected
CS1519: Line 1413: Invalid token 'null' in class, struct, or interface member declaration
CS1022: Line 1416: Type or namespace definition, or end-of-file expected
CS8124: Line 1416: Tuple must contain at least two elements.
CS1026: Line 1416: ) expected
CS1022: Line 1416: Type or namespace definition, or end-of-file expected
CS0116: Line 1416: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1416: Type or namespace definition, or end-of-file expected
CS0116: Line 1416: A namespace cannot directly contain members such as fields or methods
CS8124: Line 1416: Tuple must contain at least two elements.
CS1022: Line 1416: Type or namespace definition, or end-of-file expected
CS8124: Line 1418: Tuple must contain at least two elements.
CS1026: Line 1418: ) expected
CS1022: Line 1418: Type or namespace definition, or end-of-file expected
CS0116: Line 1420: A namespace cannot directly contain members such as fields or methods
CS1031: Line 1420: Type expected
CS1026: Line 1420: ) expected
CS1022: Line 1420: Type or namespace definition, or end-of-file expected
CS1022: Line 1421: Type or namespace definition, or end-of-file expected
CS1022: Line 1422: Type or namespace definition, or end-of-file expected
CS1022: Line 1423: Type or namespace definition, or end-of-file expected
CS8124: Line 1423: Tuple must contain at least two elements.
CS1026: Line 1423: ) expected
CS1022: Line 1423: Type or namespace definition, or end-of-file expected
CS0116: Line 1423: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1423: Type or namespace definition, or end-of-file expected
CS0116: Line 1423: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1423: Type or namespace definition, or end-of-file expected
CS0116: Line 1423: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1423: Type or namespace definition, or end-of-file expected
CS8124: Line 1425: Tuple must contain at least two elements.
CS1026: Line 1425: ) expected
CS1022: Line 1425: Type or namespace definition, or end-of-file expected
CS0116: Line 1427: A namespace cannot directly contain members such as fields or methods
CS1031: Line 1427: Type expected
CS1026: Line 1427: ) expected
CS1022: Line 1427: Type or namespace definition, or end-of-file expected
CS1022: Line 1428: Type or namespace definition, or end-of-file expected
CS1022: Line 1429: Type or namespace definition, or end-of-file expected
CS1022: Line 1430: Type or namespace definition, or end-of-file expected
CS1031: Line 1430: Type expected
CS8124: Line 1430: Tuple must contain at least two elements.
CS1026: Line 1430: ) expected
CS1022: Line 1430: Type or namespace definition, or end-of-file expected
CS0116: Line 1430: A namespace cannot directly contain members such as fields or methods
CS8124: Line 1430: Tuple must contain at least two elements.
CS1026: Line 1430: ) expected
CS8124: Line 1430: Tuple must contain at least two elements.
CS1022: Line 1430: Type or namespace definition, or end-of-file expected
CS8124: Line 1432: Tuple must contain at least two elements.
CS1026: Line 1432: ) expected
CS1022: Line 1432: Type or namespace definition, or end-of-file expected
CS0116: Line 1434: A namespace cannot directly contain members such as fields or methods
CS1031: Line 1434: Type expected
CS1026: Line 1434: ) expected
CS1022: Line 1434: Type or namespace definition, or end-of-file expected
CS1022: Line 1435: Type or namespace definition, or end-of-file expected
CS1022: Line 1436: Type or namespace definition, or end-of-file expected
CS1022: Line 1437: Type or namespace definition, or end-of-file expected
CS8124: Line 1437: Tuple must contain at least two elements.
CS1026: Line 1437: ) expected
CS1022: Line 1437: Type or namespace definition, or end-of-file expected
CS0270: Line 1437: Array size cannot be specified in a variable declaration (try initializing with a 'new' expression)
CS1022: Line 1437: Type or namespace definition, or end-of-file expected
CS1031: Line 1437: Type expected
CS1003: Line 1437: Syntax error, ',' expected
CS1003: Line 1437: Syntax error, '>' expected
CS1022: Line 1438: Type or namespace definition, or end-of-file expected
CS8124: Line 1439: Tuple must contain at least two elements.
CS1026: Line 1439: ) expected
CS1022: Line 1439: Type or namespace definition, or end-of-file expected
CS0116: Line 1441: A namespace cannot directly contain members such as fields or methods
CS1031: Line 1441: Type expected
CS1026: Line 1441: ) expected
CS1022: Line 1441: Type or namespace definition, or end-of-file expected
CS1022: Line 1442: Type or namespace definition, or end-of-file expected
CS1022: Line 1443: Type or namespace definition, or end-of-file expected
CS1022: Line 1444: Type or namespace definition, or end-of-file expected
CS8124: Line 1444: Tuple must contain at least two elements.
CS1026: Line 1444: ) expected
CS1022: Line 1444: Type or namespace definition, or end-of-file expected
CS0116: Line 1444: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1444: Type or namespace definition, or end-of-file expected
CS8124: Line 1446: Tuple must contain at least two elements.
CS1026: Line 1446: ) expected
CS1022: Line 1446: Type or namespace definition, or end-of-file expected
CS0116: Line 1448: A namespace cannot directly contain members such as fields or methods
CS1031: Line 1448: Type expected
CS1026: Line 1448: ) expected
CS1022: Line 1448: Type or namespace definition, or end-of-file expected
CS1022: Line 1449: Type or namespace definition, or end-of-file expected
CS1022: Line 1450: Type or namespace definition, or end-of-file expected
CS1022: Line 1451: Type or namespace definition, or end-of-file expected
CS8124: Line 1451: Tuple must contain at least two elements.
CS1026: Line 1451: ) expected
CS1022: Line 1451: Type or namespace definition, or end-of-file expected
CS0116: Line 1451: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1451: Type or namespace definition, or end-of-file expected
CS8124: Line 1453: Tuple must contain at least two elements.
CS1026: Line 1453: ) expected
CS1022: Line 1453: Type or namespace definition, or end-of-file expected
CS0116: Line 1455: A namespace cannot directly contain members such as fields or methods
CS1031: Line 1455: Type expected
CS1026: Line 1455: ) expected
CS1022: Line 1455: Type or namespace definition, or end-of-file expected
CS1022: Line 1456: Type or namespace definition, or end-of-file expected
CS1022: Line 1457: Type or namespace definition, or end-of-file expected
CS1022: Line 1458: Type or namespace definition, or end-of-file expected
CS8124: Line 1458: Tuple must contain at least two elements.
CS1026: Line 1458: ) expected
CS1022: Line 1458: Type or namespace definition, or end-of-file expected
CS0116: Line 1458: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1458: Type or namespace definition, or end-of-file expected
CS8124: Line 1458: Tuple must contain at least two elements.
CS8124: Line 1458: Tuple must contain at least two elements.
CS1022: Line 1458: Type or namespace definition, or end-of-file expected
CS0116: Line 1458: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1458: Type or namespace definition, or end-of-file expected
CS0116: Line 1458: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1458: Type or namespace definition, or end-of-file expected
CS8124: Line 1460: Tuple must contain at least two elements.
CS1026: Line 1460: ) expected
CS1022: Line 1460: Type or namespace definition, or end-of-file expected
CS0116: Line 1462: A namespace cannot directly contain members such as fields or methods
CS1031: Line 1462: Type expected
CS1026: Line 1462: ) expected
CS1022: Line 1462: Type or namespace definition, or end-of-file expected
CS1022: Line 1463: Type or namespace definition, or end-of-file expected
CS1022: Line 1464: Type or namespace definition, or end-of-file expected
CS1022: Line 1465: Type or namespace definition, or end-of-file expected
CS8124: Line 1465: Tuple must contain at least two elements.
CS1026: Line 1465: ) expected
CS1022: Line 1465: Type or namespace definition, or end-of-file expected
CS0116: Line 1465: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1465: Type or namespace definition, or end-of-file expected
CS0116: Line 1465: A namespace cannot directly contain members such as fields or methods
CS8124: Line 1465: Tuple must contain at least two elements.
CS8124: Line 1465: Tuple must contain at least two elements.
CS1022: Line 1465: Type or namespace definition, or end-of-file expected
CS1022: Line 1467: Type or namespace definition, or end-of-file expected
CS1022: Line 1468: Type or namespace definition, or end-of-file expected
CS8124: Line 1468: Tuple must contain at least two elements.
CS1026: Line 1468: ) expected
CS1022: Line 1468: Type or namespace definition, or end-of-file expected
CS0116: Line 1468: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1468: Type or namespace definition, or end-of-file expected
CS8124: Line 1470: Tuple must contain at least two elements.
CS1026: Line 1470: ) expected
CS1022: Line 1470: Type or namespace definition, or end-of-file expected
CS0116: Line 1472: A namespace cannot directly contain members such as fields or methods
CS1031: Line 1472: Type expected
CS1026: Line 1472: ) expected
CS1022: Line 1472: Type or namespace definition, or end-of-file expected
CS1022: Line 1473: Type or namespace definition, or end-of-file expected
CS1022: Line 1474: Type or namespace definition, or end-of-file expected
CS1022: Line 1475: Type or namespace definition, or end-of-file expected
CS1022: Line 1479: Type or namespace definition, or end-of-file expected
CS8124: Line 1479: Tuple must contain at least two elements.
CS1026: Line 1479: ) expected
CS1022: Line 1479: Type or namespace definition, or end-of-file expected
CS8124: Line 1481: Tuple must contain at least two elements.
CS1026: Line 1481: ) expected
CS1022: Line 1481: Type or namespace definition, or end-of-file expected
CS0116: Line 1483: A namespace cannot directly contain members such as fields or methods
CS1031: Line 1483: Type expected
CS1026: Line 1483: ) expected
CS1022: Line 1483: Type or namespace definition, or end-of-file expected
CS1022: Line 1484: Type or namespace definition, or end-of-file expected
CS1022: Line 1485: Type or namespace definition, or end-of-file expected
CS1022: Line 1486: Type or namespace definition, or end-of-file expected
CS8124: Line 1488: Tuple must contain at least two elements.
CS1026: Line 1488: ) expected
CS1022: Line 1488: Type or namespace definition, or end-of-file expected
CS0116: Line 1488: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1488: Type or namespace definition, or end-of-file expected
CS1022: Line 1492: Type or namespace definition, or end-of-file expected
CS1031: Line 1492: Type expected
CS1003: Line 1492: Syntax error, ',' expected
CS1003: Line 1492: Syntax error, ',' expected
CS1003: Line 1493: Syntax error, ',' expected
CS1003: Line 1493: Syntax error, '>' expected
CS8124: Line 1493: Tuple must contain at least two elements.
CS1026: Line 1493: ) expected
CS1022: Line 1493: Type or namespace definition, or end-of-file expected
CS8124: Line 1494: Tuple must contain at least two elements.
CS1026: Line 1494: ) expected
CS1022: Line 1494: Type or namespace definition, or end-of-file expected
CS0116: Line 1494: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1494: Type or namespace definition, or end-of-file expected
CS0116: Line 1495: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1495: Type or namespace definition, or end-of-file expected
CS0116: Line 1495: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1495: Type or namespace definition, or end-of-file expected
CS1022: Line 1499: Type or namespace definition, or end-of-file expected
CS8124: Line 1499: Tuple must contain at least two elements.
CS1026: Line 1499: ) expected
CS1022: Line 1499: Type or namespace definition, or end-of-file expected
CS0116: Line 1499: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1499: Type or namespace definition, or end-of-file expected
CS0116: Line 1502: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1502: Type or namespace definition, or end-of-file expected
CS8124: Line 1504: Tuple must contain at least two elements.
CS1026: Line 1504: ) expected
CS1026: Line 1504: ) expected
CS1022: Line 1504: Type or namespace definition, or end-of-file expected
CS0116: Line 1504: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1504: Type or namespace definition, or end-of-file expected
CS0116: Line 1505: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1505: Type or namespace definition, or end-of-file expected
CS0116: Line 1505: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1505: Type or namespace definition, or end-of-file expected
CS1022: Line 1506: Type or namespace definition, or end-of-file expected
CS1022: Line 1507: Type or namespace definition, or end-of-file expected
CS0116: Line 1510: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1510: Type or namespace definition, or end-of-file expected
CS8124: Line 1512: Tuple must contain at least two elements.
CS1026: Line 1512: ) expected
CS1026: Line 1512: ) expected
CS1022: Line 1512: Type or namespace definition, or end-of-file expected
CS0116: Line 1512: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1512: Type or namespace definition, or end-of-file expected
CS0116: Line 1514: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1514: Type or namespace definition, or end-of-file expected
CS0116: Line 1514: A namespace cannot directly contain members such as fields or methods
CS1026: Line 1514: ) expected
CS1022: Line 1514: Type or namespace definition, or end-of-file expected
CS0116: Line 1514: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1514: Type or namespace definition, or end-of-file expected
CS8124: Line 1516: Tuple must contain at least two elements.
CS1026: Line 1516: ) expected
CS1022: Line 1516: Type or namespace definition, or end-of-file expected
CS0116: Line 1517: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1517: Type or namespace definition, or end-of-file expected
CS0116: Line 1517: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1517: Type or namespace definition, or end-of-file expected
CS1022: Line 1518: Type or namespace definition, or end-of-file expected
CS1022: Line 1519: Type or namespace definition, or end-of-file expected
CS1022: Line 1520: Type or namespace definition, or end-of-file expected
CS1022: Line 1521: Type or namespace definition, or end-of-file expected
CS0116: Line 1524: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1524: Type or namespace definition, or end-of-file expected
CS8124: Line 1526: Tuple must contain at least two elements.
CS1026: Line 1526: ) expected
CS1026: Line 1526: ) expected
CS1022: Line 1526: Type or namespace definition, or end-of-file expected
CS0116: Line 1526: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1526: Type or namespace definition, or end-of-file expected
CS0116: Line 1527: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1527: Type or namespace definition, or end-of-file expected
CS0116: Line 1527: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1527: Type or namespace definition, or end-of-file expected
CS1022: Line 1528: Type or namespace definition, or end-of-file expected
CS1022: Line 1530: Type or namespace definition, or end-of-file expected
CS8124: Line 1530: Tuple must contain at least two elements.
CS1026: Line 1530: ) expected
CS1022: Line 1530: Type or namespace definition, or end-of-file expected
CS8124: Line 1532: Tuple must contain at least two elements.
CS1026: Line 1532: ) expected
CS1022: Line 1532: Type or namespace definition, or end-of-file expected
CS0116: Line 1534: A namespace cannot directly contain members such as fields or methods
CS1031: Line 1534: Type expected
CS1026: Line 1534: ) expected
CS1022: Line 1534: Type or namespace definition, or end-of-file expected
CS1022: Line 1535: Type or namespace definition, or end-of-file expected
CS1022: Line 1537: Type or namespace definition, or end-of-file expected
CS8124: Line 1537: Tuple must contain at least two elements.
CS1026: Line 1537: ) expected
CS1022: Line 1537: Type or namespace definition, or end-of-file expected
CS0116: Line 1539: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1539: Type or namespace definition, or end-of-file expected
CS0116: Line 1540: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1540: Type or namespace definition, or end-of-file expected
CS1022: Line 1541: Type or namespace definition, or end-of-file expected
CS1022: Line 1542: Type or namespace definition, or end-of-file expected
CS1022: Line 1543: Type or namespace definition, or end-of-file expected
CS8124: Line 1545: Tuple must contain at least two elements.
CS1026: Line 1545: ) expected
CS1022: Line 1545: Type or namespace definition, or end-of-file expected
CS0116: Line 1547: A namespace cannot directly contain members such as fields or methods
CS1031: Line 1547: Type expected
CS1026: Line 1547: ) expected
CS1022: Line 1547: Type or namespace definition, or end-of-file expected
CS1022: Line 1548: Type or namespace definition, or end-of-file expected
CS1022: Line 1549: Type or namespace definition, or end-of-file expected
CS0116: Line 1551: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1551: Type or namespace definition, or end-of-file expected
CS0270: Line 1551: Array size cannot be specified in a variable declaration (try initializing with a 'new' expression)
CS8124: Line 1551: Tuple must contain at least two elements.
CS1026: Line 1551: ) expected
CS1022: Line 1551: Type or namespace definition, or end-of-file expected
CS1003: Line 1551: Syntax error, '>' expected
CS1031: Line 1551: Type expected
CS8124: Line 1551: Tuple must contain at least two elements.
CS1026: Line 1551: ) expected
CS1022: Line 1551: Type or namespace definition, or end-of-file expected
CS1022: Line 1552: Type or namespace definition, or end-of-file expected
CS1022: Line 1553: Type or namespace definition, or end-of-file expected
CS0116: Line 1555: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1555: Type or namespace definition, or end-of-file expected
CS0116: Line 1555: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1555: Type or namespace definition, or end-of-file expected
CS0116: Line 1555: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1555: Type or namespace definition, or end-of-file expected
CS0116: Line 1556: A namespace cannot directly contain members such as fields or methods
CS1022: Line 1556: Type or namespace definition, or end-of-file expected
CS1022: Line 1557: Type or namespace definition, or end-of-file expected
CS1022: Line 1641: Type or namespace definition, or end-of-file expected
CS1022: Line 2449: Type or namespace definition, or end-of-file expected
Scripts: One or more scripts failed to compile or no script files were found.
 
Last edited:
Tested and loading without problems.
Here the target file,and discordance file.
Using 57.3
 

Attachments

  • SquireTargets.cs
    69.9 KB · Views: 4
  • Discordance.cs
    16.2 KB · Views: 3
Back