Ignore:
Timestamp:
Jun 12, 2023, 3:21:34 PM (17 months ago)
Author:
alloc
Message:

24_27_41

Location:
binary-improvements/AllocsCommands
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/AllocsCommands/Commands/ListKnownPlayers.cs

    r420 r446  
    4545
    4646                        if (userIdFilter != null) {
    47                                 Player p = PersistentContainer.Instance.Players [userIdFilter, false];
     47                                Player p = PersistentContainer.Instance.Players.GetByInternalId (userIdFilter);
    4848
    4949                                if (p != null) {
  • binary-improvements/AllocsCommands/Commands/ListLandProtection.cs

    r420 r446  
    105105                                        "Player \"{0} ({1})\" owns {4} keystones (protected: {2}, current hardness multiplier: {3})",
    106106                                        kvp.Key.Name,
    107                                         kvp.Key.PlatformId,
     107                                        kvp.Key.InternalId,
    108108                                        kvp.Key.LandProtectionActive,
    109109                                        kvp.Key.LandProtectionMultiplier,
     
    112112                                        foreach (Vector3i v in kvp.Value) {
    113113                                                if (parseableOutput) {
    114                                                         SdtdConsole.Instance.Output ("LandProtectionOf: id=" + kvp.Key.PlatformId +
     114                                                        SdtdConsole.Instance.Output ("LandProtectionOf: id=" + kvp.Key.InternalId +
    115115                                                                                     ", playerName=" + kvp.Key.Name + ", location=" + v);
    116116                                                } else {
  • binary-improvements/AllocsCommands/Commands/ShowInventory.cs

    r420 r446  
    1 using System;
    21using System.Collections.Generic;
    32using AllocsFixes.PersistentData;
     
    3029                        }
    3130
    32                         PlatformUserIdentifierAbs steamid = PersistentContainer.Instance.Players.GetSteamID (_params [0], true);
    33                         if (steamid == null) {
     31                        Player p = PersistentContainer.Instance.Players.GetByString (_params [0], true);
     32                        if (p == null) {
    3433                                SdtdConsole.Instance.Output (
    3534                                        "Playername or entity/steamid id not found or no inventory saved (first saved after a player has been online for 30s).");
     
    4241                        }
    4342
    44                         Player p = PersistentContainer.Instance.Players [steamid, false];
    4543                        PersistentData.Inventory inv = p.Inventory;
    4644
     
    164162                                                        }
    165163
    166                                                         DoParts (_parts [i].parts, _indent + 1, _currentMessage);
     164                                                        DoParts (_parts [i].parts, _indent + 1, null);
    167165                                                } else {
    168166                                                        // currentMessage given -> parseable output
  • binary-improvements/AllocsCommands/ModInfo.xml

    r442 r446  
    55                <Description value="Additional commands for server operation" />
    66                <Author value="Christian 'Alloc' Illy" />
    7                 <Version value="23" />
     7                <Version value="24" />
    88                <Website value="http://7dtd.illy.bz" />
    99        </ModInfo>
Note: See TracChangeset for help on using the changeset viewer.