ACR_ServerCommunicator.ACR_ServerCommunicator.SetLastTellToPlayerId C# (CSharp) Method

SetLastTellToPlayerId() public method

Set the last send tell to player id for a player.
public SetLastTellToPlayerId ( uint PlayerObject, int PlayerId ) : void
PlayerObject uint Supplies the player that sent the /// tell.
PlayerId int Supplies the player id that the player last /// sent a tell to.
return void
        public void SetLastTellToPlayerId(uint PlayerObject, int PlayerId)
        {
            SetLocalInt(PlayerObject, "ACR_MOD_LAST_TELL_TO", PlayerId);
        }
ACR_ServerCommunicator