nouseforname.de

#game

Umsetzung einer zweiseitigen KI mit MiniMax


using System;
using System.Collections.Generic;

namespace TicTacTo
{
/// <summary>
/// TicTacToe game methods
/// </summary>
public class TicTacToe
{
private const int MaxGridSpaces = 9;
private int _turnCounter = 0;

public List<GridSpace> ListGridSpaces { set; get; } = new…

Weiterlesen

Minecraft MCServer plugin

Plugin für MCServer:
GitHub Download

#game#minecraft#mcserver#plugin | | #4

Backup Script für Minecraft Server unter Linux

Ein kleines Bash script zum automatische sichern eines Minecraft Servers auf ein lokales und zwei externe Verzeichnisse. Wobei die externen einmal über Samba und einmal per ssh erreicht werden.


#!/bin/bash
# Don't forget to make the script executable
# - cron
# if running the script hourly, daily or weekly
# just copy it…

Weiterlesen

1 / 1