Jump to content

Noldy

Member
  • Posts

    16
  • Joined

  • Last visited

Posts posted by Noldy

  1. Hello Epoch community,

     

    I have the debug box is disabled, and have added my own Spawn dialogue.

    Let's take as an example Kamenka.
    I have put 5 markers to Kamenka.

     

    gVPZHv2.png

    Kamenka_spawn_1
    Kamenka_spawn_2
    Kamenka_spawn_3
    Kamenka_spawn_4
    Kamenka_spawn_5

     

    LeCucpD.jpg

    So if you click on the dialog Kamenka, should be random spawn 1-5

     

    So has a script someone and would share with me?

     

    Thank you

     

    sry for my bad english

     

    Greez

    Noldy

     

    EDIT:

     

    I tried that, but does not work with my system

  2. QrlBKBA.png
     
    text:

    'use strict';



    /**
    * @ngdoc function
    * @name zepochRedisApp.controller:MainCtrl
    * @description
    * # MainCtrl
    * Controller of the zepochRedisApp
    */
    ERDBM
    .controller('MainCtrl', function ($scope,$rootScope,$location,$http) {
    $(".nav li").removeClass("active");

    $("#dashboard").addClass("active");

    var MC = $scope;
    var RS = $rootScope;

    MC.loadingData = true;

    MC.onlinePlayers = 0;
    MC.vehicles = 0;
    MC.buildings = 0;
    MC.players = 0;
    MC.traders = 0;
    MC.storages = 0;


    $http.post(RS.selectedServer['serverUrl'] + 'getDashboardData.php?date=+ new Date().getTime(),{"secret": String(CryptoJS.MD5(RS.selectedServer['rpw])) , "instance": RS.selectedServer['ri'], "db" : RS.selectedServer['dbi'] }).
    success(function(data, status, headers, config) {
    MC.unEpochorize(data);

    MC.loadingData = false;
    }).error(function(error){
    MC.loadingData = false;
    alert("Can't get dashboard data.");
    });

    MC.unEpochorize = unEpochorize;

    function unEpochorize(data){
    MC.onlinePlayers = data[2];
    MC.players = data[1];
    MC.vehicles = data[3];
    MC.storages = data[4];
    MC.traders = data[5];
    MC.buildings = data[6];
    }

    MC.changeLoc = changeLoc;

    function changeLoc(where){
    $location.path(where);
    }


    });

  3. Hello,

    I work with Oliver Together

     

    Here is F12 entry:

     

    "Error: data is undefined


    unEpochorize/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/buildings.js:69:1
    forEach@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:322:11
    unEpochorize@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/buildings.js:64:13
    getData/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/buildings.js:32:21
    $http/promise.success/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9280:11
    processQueue@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13075:27
    scheduleProcessQueue/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13091:27
    $RootScopeProvider/this.$get$RootScopeProvider/this.$get$RootScopeProvider/this.$getdone@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9569:36
    completeRequest@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9756:7
    requestLoaded@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9697:1
    " angular.js:11500

    "Error: data is undefined
    unEpochorize/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/storages.js:64:1
    forEach@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:322:11
    unEpochorize@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/storages.js:59:13
    getData/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/storages.js:31:17
    $http/promise.success/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9280:11
    processQueue@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13075:27
    scheduleProcessQueue/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13091:27
    $RootScopeProvider/this.$get$RootScopeProvider/this.$get$RootScopeProvider/this.$getdone@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9569:36
    completeRequest@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9756:7
    requestLoaded@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9697:1
    " angular.js:11500

    "Error: data is undefined
    unEpochorize/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/vehicles.js:70:1
    forEach@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:322:11
    unEpochorize@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/vehicles.js:65:13
    getData/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/vehicles.js:33:17
    $http/promise.success/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9280:11
    processQueue@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13075:27
    scheduleProcessQueue/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13091:27
    $RootScopeProvider/this.$get$RootScopeProvider/this.$get$RootScopeProvider/this.$getdone@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9569:36
    completeRequest@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9756:7
    requestLoaded@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9697:1
    " angular.js:11500

    "Error: data is undefined
    unEpochorize/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/storages.js:64:1
    forEach@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:322:11
    unEpochorize@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/storages.js:59:13
    getData/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/storages.js:31:17
    $http/promise.success/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9280:11
    processQueue@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13075:27
    scheduleProcessQueue/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13091:27
    $RootScopeProvider/this.$get$RootScopeProvider/this.$get$RootScopeProvider/this.$getdone@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9569:36
    completeRequest@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9756:7
    requestLoaded@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9697:1
    " angular.js:11500

    "Error: data is undefined
    unEpochorize/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/buildings.js:69:1
    forEach@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:322:11
    unEpochorize@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/buildings.js:64:13
    getData/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/buildings.js:32:21
    $http/promise.success/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9280:11
    processQueue@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13075:27
    scheduleProcessQueue/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13091:27
    $RootScopeProvider/this.$get$RootScopeProvider/this.$get$RootScopeProvider/this.$getdone@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9569:36
    completeRequest@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9756:7
    requestLoaded@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9697:1
    " angular.js:11500

    "Error: data is undefined
    unEpochorize/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/vehicles.js:70:1
    forEach@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:322:11
    unEpochorize@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/vehicles.js:65:13
    getData/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/vehicles.js:33:17
    $http/promise.success/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9280:11
    processQueue@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13075:27
    scheduleProcessQueue/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13091:27
    $RootScopeProvider/this.$get$RootScopeProvider/this.$get$RootScopeProvider/this.$getdone@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9569:36
    completeRequest@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9756:7
    requestLoaded@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9697:1
    " angular.js:11500

    "Error: data is undefined
    unEpochorize/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/storages.js:64:1
    forEach@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:322:11
    unEpochorize@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/storages.js:59:13
    getData/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/storages.js:31:17
    $http/promise.success/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9280:11
    processQueue@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13075:27
    scheduleProcessQueue/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13091:27
    $RootScopeProvider/this.$get$RootScopeProvider/this.$get$RootScopeProvider/this.$getdone@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9569:36
    completeRequest@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9756:7
    requestLoaded@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9697:1
    " angular.js:11500

    "Error: data is undefined
    unEpochorize/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/buildings.js:69:1
    forEach@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:322:11
    unEpochorize@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/buildings.js:64:13
    getData/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/buildings.js:32:21
    $http/promise.success/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9280:11
    processQueue@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13075:27
    scheduleProcessQueue/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13091:27
    $RootScopeProvider/this.$get$RootScopeProvider/this.$get$RootScopeProvider/this.$getdone@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9569:36
    completeRequest@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9756:7
    requestLoaded@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9697:1
    " angular.js:11500

    "Error: data is undefined
    unEpochorize/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/vehicles.js:70:1
    forEach@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:322:11
    unEpochorize@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/vehicles.js:65:13
    getData/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/vehicles.js:33:17
    $http/promise.success/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9280:11
    processQueue@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13075:27
    scheduleProcessQueue/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13091:27
    $RootScopeProvider/this.$get$RootScopeProvider/this.$get$RootScopeProvider/this.$getdone@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9569:36
    completeRequest@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9756:7
    requestLoaded@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9697:1
    " angular.js:11500

    "Error: data is undefined
    unEpochorize/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/buildings.js:69:1
    forEach@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:322:11
    unEpochorize@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/buildings.js:64:13
    getData/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/buildings.js:32:21
    $http/promise.success/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9280:11
    processQueue@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13075:27
    scheduleProcessQueue/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13091:27
    $RootScopeProvider/this.$get$RootScopeProvider/this.$get$RootScopeProvider/this.$getdone@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9569:36
    completeRequest@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9756:7
    requestLoaded@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9697:1
    " angular.js:11500

    "Error: data is undefined
    unEpochorize/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/storages.js:64:1
    forEach@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:322:11
    unEpochorize@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/storages.js:59:13
    getData/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/storages.js:31:17
    $http/promise.success/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9280:11
    processQueue@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13075:27
    scheduleProcessQueue/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13091:27
    $RootScopeProvider/this.$get$RootScopeProvider/this.$get$RootScopeProvider/this.$getdone@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9569:36
    completeRequest@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9756:7
    requestLoaded@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9697:1
    " angular.js:11500

    "Error: data is undefined
    unEpochorize/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/vehicles.js:70:1
    forEach@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:322:11
    unEpochorize@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/vehicles.js:65:13
    getData/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/vehicles.js:33:17
    $http/promise.success/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9280:11
    processQueue@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13075:27
    scheduleProcessQueue/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13091:27
    $RootScopeProvider/this.$get$RootScopeProvider/this.$get$RootScopeProvider/this.$getdone@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9569:36
    completeRequest@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9756:7
    requestLoaded@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9697:1
    " angular.js:11500

    "Error: data is undefined
    unEpochorize/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/buildings.js:69:1
    forEach@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:322:11
    unEpochorize@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/buildings.js:64:13
    getData/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/buildings.js:32:21
    $http/promise.success/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9280:11
    processQueue@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13075:27
    scheduleProcessQueue/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13091:27
    $RootScopeProvider/this.$get$RootScopeProvider/this.$get$RootScopeProvider/this.$getdone@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9569:36
    completeRequest@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9756:7
    requestLoaded@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9697:1
    " angular.js:11500

    "Error: data is undefined
    unEpochorize/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/storages.js:64:1
    forEach@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:322:11
    unEpochorize@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/storages.js:59:13
    getData/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/storages.js:31:17
    $http/promise.success/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9280:11
    processQueue@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13075:27
    scheduleProcessQueue/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13091:27
    $RootScopeProvider/this.$get$RootScopeProvider/this.$get$RootScopeProvider/this.$getdone@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9569:36
    completeRequest@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9756:7
    requestLoaded@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9697:1
    " angular.js:11500

    "Error: data is undefined
    unEpochorize/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/vehicles.js:70:1
    forEach@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:322:11
    unEpochorize@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/vehicles.js:65:13
    getData/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/vehicles.js:33:17
    $http/promise.success/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9280:11
    processQueue@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13075:27
    scheduleProcessQueue/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13091:27
    $RootScopeProvider/this.$get$RootScopeProvider/this.$get$RootScopeProvider/this.$getdone@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9569:36
    completeRequest@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9756:7
    requestLoaded@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9697:1
    " angular.js:11500

    "Error: data is undefined
    unEpochorize/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/buildings.js:69:1
    forEach@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:322:11
    unEpochorize@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/buildings.js:64:13
    getData/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/buildings.js:32:21
    $http/promise.success/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9280:11
    processQueue@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13075:27
    scheduleProcessQueue/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13091:27
    $RootScopeProvider/this.$get$RootScopeProvider/this.$get$RootScopeProvider/this.$getdone@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9569:36
    completeRequest@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9756:7
    requestLoaded@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9697:1
    " angular.js:11500

    "Error: data is undefined
    unEpochorize/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/storages.js:64:1
    forEach@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:322:11
    unEpochorize@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/storages.js:59:13
    getData/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/storages.js:31:17
    $http/promise.success/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9280:11
    processQueue@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13075:27
    scheduleProcessQueue/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13091:27
    $RootScopeProvider/this.$get$RootScopeProvider/this.$get$RootScopeProvider/this.$getdone@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9569:36
    completeRequest@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9756:7
    requestLoaded@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9697:1
    " angular.js:11500

    "Error: data is undefined
    unEpochorize/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/vehicles.js:70:1
    forEach@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:322:11
    unEpochorize@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/vehicles.js:65:13
    getData/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/vehicles.js:33:17
    $http/promise.success/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9280:11
    processQueue@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13075:27
    scheduleProcessQueue/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13091:27
    $RootScopeProvider/this.$get$RootScopeProvider/this.$get$RootScopeProvider/this.$getdone@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9569:36
    completeRequest@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9756:7
    requestLoaded@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9697:1
    " angular.js:11500

    "Error: data is undefined
    unEpochorize/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/storages.js:64:1
    forEach@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:322:11
    unEpochorize@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/storages.js:59:13
    getData/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/storages.js:31:17
    $http/promise.success/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9280:11
    processQueue@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13075:27
    scheduleProcessQueue/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13091:27
    $RootScopeProvider/this.$get$RootScopeProvider/this.$get$RootScopeProvider/this.$getdone@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9569:36
    completeRequest@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9756:7
    requestLoaded@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9697:1
    " angular.js:11500

    "Error: data is undefined
    unEpochorize/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/buildings.js:69:1
    forEach@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:322:11
    unEpochorize@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/buildings.js:64:13
    getData/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/buildings.js:32:21
    $http/promise.success/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9280:11
    processQueue@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13075:27
    scheduleProcessQueue/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13091:27
    $RootScopeProvider/this.$get$RootScopeProvider/this.$get$RootScopeProvider/this.$getdone@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9569:36
    completeRequest@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9756:7
    requestLoaded@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9697:1
    " angular.js:11500

    "Error: data is undefined
    unEpochorize/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/storages.js:64:1
    forEach@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:322:11
    unEpochorize@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/storages.js:59:13
    getData/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/storages.js:31:17
    $http/promise.success/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9280:11
    processQueue@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13075:27
    scheduleProcessQueue/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13091:27
    $RootScopeProvider/this.$get$RootScopeProvider/this.$get$RootScopeProvider/this.$getdone@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9569:36
    completeRequest@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9756:7
    requestLoaded@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9697:1
    " angular.js:11500

    "Error: data is undefined
    unEpochorize/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/buildings.js:69:1
    forEach@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:322:11
    unEpochorize@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/buildings.js:64:13
    getData/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/buildings.js:32:21
    $http/promise.success/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9280:11
    processQueue@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13075:27
    scheduleProcessQueue/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13091:27
    $RootScopeProvider/this.$get$RootScopeProvider/this.$get$RootScopeProvider/this.$getdone@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9569:36
    completeRequest@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9756:7
    requestLoaded@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9697:1
    " angular.js:11500

    "Error: data is undefined
    unEpochorize/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/storages.js:64:1
    forEach@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:322:11
    unEpochorize@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/storages.js:59:13
    getData/<@http://ni398281_1.vweb14.nitrado.net/scripts/controllers/storages.js:31:17
    $http/promise.success/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9280:11
    processQueue@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13075:27
    scheduleProcessQueue/<@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:13091:27
    $RootScopeProvider/this.$get$RootScopeProvider/this.$get$RootScopeProvider/this.$getdone@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9569:36
    completeRequest@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9756:7
    requestLoaded@http://ni398281_1.vweb14.nitrado.net/bower_components/angular/angular.js:9697:1
    "

  4. Hello guys,

     

    sry for my bad english, but I'm from Germany. I created a "Spawn Dialog" where you can choose your own spawn location, but after 1 minute the server port you to the Debug Box.

    I think it's a cheat protection.

    How I can turn it off?

     

    I hope you can help me.

     

    Greez

    Noldy

  5. scripts.log:

     

    deleteMarker "Marker1";

    sleep 10;
    execVM "\mission\call_missions.sqf"
    28.12.2014 14:31:50: Noldy (46.223.174.49:2304) GUID - #40 "round waising time. Maybe you'll catch em next time."];

     

    scripts.txt:

     

    7 exec !="<execute expression=" !"RscDebugConsole_execute" !"execFSM" !"_executeStackedEventHandler" !"fn_execVM" !"fn_moduleExecute" !"fn_execRemote" !"fn_MPexec" !"bis_fnc_moduleExecute_activate" !"fn_tridentExecute" !"randomize_civ1" !"executed from" !"EPOCH_DebugGUI_exec" !"_handle = [_display] execVM _script;" !"execVM \"\A3\Structures_F\scripts" !="execVM \"\A3\Structures_F_EPC\Civ\PlayGround\scripts\Carousel_spin.sqf\"" !="execVM "scripts\welcome.sqf"" !="execVM "\mission\call_missions.sqf"" !="execVM "mission\call_missions.sqf"";"

     

    sry, then just please move

     

    thx 4 help.

  6. hello

    I wanted to test out Chernarus.

    Easy to config.cfg following changes:

    // MISSIONS CYCLE (see below) epoch.Altis epoch.Stratis epoch_noZ.Altis
    class Missions
    {
    class Epoch {
    template = epoch.Chernarus; // DO NOT CHANGE THIS, IT WILL BREAK YOUR SERVER
    difficulty = "veteran"; // Difficulty settings: NORMAL veteran ==, == mercenary HARDCORE
    };
    };

    If I do so, I get messages like infinite
    12:36:52 Mission Epoch Mod read frombank.
    12:36:53 Mission Epoch Mod read frombank.
    12:36:53 Mission Epoch Mod read frombank.
    12:36:53 Mission Epoch Mod read frombank.
    12:36:53 Mission Epoch Mod read frombank.
    12:36:53 Mission Epoch Mod read frombank.
    12:36:53 Mission Epoch Mod read frombank.
    12:36:53 Mission Epoch Mod read frombank.
    12:36:53 Mission Epoch Mod read frombank.
    12:36:53 Mission Epoch Mod read frombank.
    12:36:53 Mission Epoch Mod read frombank.
    ...
    ...
    ...
    ...

    However, if I Altis Create, epoch works without problems.

    How do I get out, I can call the Chernarus pbo?

     

    Thx 4 help.

  7. Where and how do I enter this port?

    here is my redis.conf

    bind 146.0.42.44
    MaxMemory 4gb
    save 900 1
    save 300 10
    save 60 1000
    requirepass mypassword

     

    bind 146.0.42.44:2303
    or
    Port = 2303

    If I write purely in the redis.conf, redis will not boot.

    Can someone help me?

     

    thx

    greetings Noldy

  8. hello
    I just wanted to arma 3 Epoch on a root install.
    If I arma3server up out of the server is on.
    If I joine on the server, I choose a civilian space and click ok.
    Then suddenly closes arma3server.exe.

    Does anyone know how I problem-solving that the arma3server.exe no longer closes?

    Sry my english is not the best

    Greetings

    Noldy

×
×
  • Create New...