public AskStartGameBattleScriptServer(PVPRoomInformations Owner, BattleMapClientGroup CreatedGroup, GameServer OnlineServer)
     : base(ScriptName)
 {
     this.Owner        = Owner;
     this.CreatedGroup = CreatedGroup;
     this.OnlineServer = OnlineServer;
 }
Beispiel #2
0
        public static Dictionary <string, OnlineScript> GetBattleMapScriptsServer(BattleMapClientGroup ActiveGroup, BattleMapPlayer ActivePlayer)
        {
            Dictionary <string, OnlineScript> DicNewScript = new Dictionary <string, OnlineScript>();

            DicNewScript.Add(MoveCursorScriptServer.ScriptName, new MoveCursorScriptServer(ActiveGroup));
            DicNewScript.Add(OpenMenuScriptServer.ScriptName, new OpenMenuScriptServer(ActiveGroup, ActiveGroup.BattleMapGame.GetOnlineActionPanel()));
            DicNewScript.Add(AskTripleThunderGameDataScriptServer.ScriptName, new AskTripleThunderGameDataScriptServer(ActiveGroup));

            return(DicNewScript);
        }
 public MoveCursorScriptServer(BattleMapClientGroup ActiveGroup)
     : base(ScriptName)
 {
     this.ActiveGroup = ActiveGroup;
 }
Beispiel #4
0
 public OpenMenuScriptServer(BattleMapClientGroup ActiveGroup, Dictionary <string, ActionPanel> DicActionPanel)
     : base(ScriptName)
 {
     this.ActiveGroup    = ActiveGroup;
     this.DicActionPanel = DicActionPanel;
 }
 public void InitOnlineServer(GameServer OnlineServer, BattleMapClientGroup GameGroup)
 {
     this.OnlineServer = OnlineServer;
     this.GameGroup    = GameGroup;
 }