Jump to content
Message added by Khan,

This plugin has been retired. Unfortunately, Codefling does not currently provide a way to disable downloads for free resources.

Please stop attempting to use this plugin, as it is no longer supported.

Fixing Rust team issues properly would require creating a full custom team management system, which would be incompatible with existing CLANS plugins. This is not a practical solution.

For that reason, maintenance of this plugin was discontinued in 2022.

1 Screenshot

  • 81.5k
  • 2.3k
  • 16.54 kB

This area is for discussion and questions. Please use the support area for reporting issues or getting help.

Recommended Comments



HarryBo

Posted

Unfortunately, the plugin no longer works after the last wipe. Could you please fix it🙂

Namsaknoi

Posted

Last update broke the plugin, please release when you have time.

Flint Monkey

Posted

On 7/6/2024 at 11:35 AM, Namsaknoi said:

Last update broke the plugin, please release when you have time.

Getting the following error in console: 

Quote

TeamFix - Failed to compile: 'BasePlayer' does not contain a definition for 'ClientRPCPlayerAndSpectators' and no accessible extension method 'ClientRPCPlayerAndSpectators' accepting a first argument of type 'BasePlayer' could be found (are you missing a using directive or an assembly reference?) | Line: 211, Pos: 28

 

Choco1986

Posted (edited)

After last update i have this error Thank you.

Error while compiling TeamFix: Cannot convert type 'BasePlayer.EncryptedValue<ulong>' to 'long' | Line: 465, Pos: 25

Edited by Choco1986
botjason

Posted

needs an update

 

Kk

Posted

Error while compiling TeamFix: 'BasePlayer' does not contain a definition for 'ClientRPCPlayerAndSpectators' and no accessible extension method 'ClientRPCPlayerAndSpectators' accepting a first argument of type 'BasePlayer' could be found (are you missing a using directive or an assembly reference?) | Line: 211, Pos: 28

TheFarrier

Posted

Hi is there a way you can update this please?

ER41

Posted

These are the necessary fixes for TeamFix.
I hope this helps.

Line 211:

player.ClientRPCPlayerAndSpectators( null, player, "CLIENT_ClearTeam");

Should be changed to:

player.ClientRPCPlayer( null, player, "CLIENT_ClearTeam");


Line 459:

private static BasePlayer FindByID(ulong userID)
{
    using (TimeWarning.New("BasePlayer.FindByID"))
    {
        foreach (BasePlayer activePlayer in BasePlayer.activePlayerList)
        {
            if ((long) activePlayer.userID == (long) userID)
                return activePlayer;
        }
        foreach (BasePlayer sleepingPlayer in BasePlayer.sleepingPlayerList)
        {
            if ((long) sleepingPlayer.userID == (long) userID)
                return sleepingPlayer;
        }
        return null;
    }
}

Should be changed to:

private static BasePlayer FindByID(ulong userID)
{
    using (TimeWarning.New("BasePlayer.FindByID"))
    {
        foreach (BasePlayer activePlayer in BasePlayer.activePlayerList)
        {
            if (activePlayer.userID.Get() == userID)
                return activePlayer;
        }
        foreach (BasePlayer sleepingPlayer in BasePlayer.sleepingPlayerList)
        {
            if (sleepingPlayer.userID.Get() == userID)
                return sleepingPlayer;
        }
        return null;
    }
}


Lastly, big thanks to the dev for making this awesome plugin — really appreciate your work!

Paul H.

Posted

Error while compiling TeamFix: 'RelationshipManager' does not contain a definition for 'lastTeamIndex' and no accessible extension method 'lastTeamIndex' accepting a first argument of type 'RelationshipManager' could be found (are you missing a using directive or an assembly reference?) | Line: 232, Pos: 48

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Like 3
  • Love 5

Khan's Collection

User Feedback

2.1m

Downloads

Total number of downloads.

9.8k

Customers

Total customers served.

143.2k

Files Sold

Total number of files sold.

3m

Payments Processed

Total payments processed.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.