Jump to content

ElricMelnibone

Member
  • Posts

    28
  • Joined

  • Last visited

Posts posted by ElricMelnibone

  1. Thanks for that I failed to mention I have search via google on the topic of "Server error: Player without identity".  I went through all possible scenarios this might lead to a solution.  Only I don't think this is my problem it's just a product of another problem.

     

    If you ever look at a user connecting to a working server (too early after a restart) they get this same result in the RPT file. 

     

    After waiting a little more time they get in just fine.

     

    Only my new server seems to be stuck in the state of "constructing".

     

    As I said that is my only clue located in the RPT file, as everything else seems fine and in place.

  2. Background:  On our original dedicated box I brought up a 3rd arma 3 server and got it working perfectly.  We decided the 3rd server needed its own working environment so we got a 2nd dedicated box.  I moved over files and brought up the new arma 3 server on the new dedicated box.

     

    Everything seems to be in place but when players join they get kicked.  They never get to download the mission PBO file.  And the default first time splash screen from Altis comes up then a little group icon in the bottom left.  Then kick.

     

    No BEC logs get written too.  The RPT file looks fine accept there is about 10 lines of spam for the user trying to connect:

     

    22:47:34 VoteThreshold must be in 0..1 range. Defaulting to 0.5


    22:47:34 Initializing Steam server - Game Port: 2329, Steam Query Port: 2330
    22:47:35 Connected to Steam servers
    22:47:45 EPE manager release (0|0|0)
    22:47:45 EPE manager release (0|0|0)
    22:47:45 EPE manager release (0|0|0)
    22:47:45 EPE manager release (0|0|0)
    22:47:46 Server error: Player without identity Krazyivan (id 2111428108)
    22:47:46 Server error: Player without identity Krazyivan (id 2111428108)
    22:47:46 Server error: Player without identity Krazyivan (id 2111428108)
    22:47:46 Server error: Player without identity Krazyivan (id 2111428108)
    22:47:46 Server error: Player without identity Krazyivan (id 2111428108)
    22:47:46 Server error: Player without identity Krazyivan (id 2111428108)
    22:47:46 Server error: Player without identity Krazyivan (id 2111428108)
    22:47:46 Server error: Player without identity Krazyivan (id 2111428108)
    22:47:46 Server error: Player without identity Krazyivan (id 2111428108)
    22:47:47 Server error: Player without identity Krazyivan (id 2111428108)
    22:47:47 Server error: Player without identity Krazyivan (id 2111428108)
    22:47:47 Server error: Player without identity Krazyivan (id 2111428108)
    22:47:47 Server error: Player without identity Krazyivan (id 2111428108)
    22:47:47 Server error: Player without identity Krazyivan (id 2111428108)
    22:47:47 Server error: Player without identity Krazyivan (id 2111428108)
    22:47:47 Server error: Player without identity Krazyivan (id 2111428108)
    22:47:47 Server error: Player without identity Krazyivan (id 2111428108)
    22:47:47 Server error: Player without identity Krazyivan (id 2111428108)
    22:47:47 Server error: Player without identity Krazyivan (id 2111428108)
    22:47:47 Server error: Player without identity Krazyivan (id 2111428108)

     

    From what I can see all my settings are correct.  Am at a loss as to why the players cannot connect to it.

  3. I am starting to think something is truly wrong with nearestObjects.  I am using it to detect a plot pole within 50m and strangely the script works awesome.  But kicks out a RPT error every time the code gets ran which results in HUGE RPT files that no one can read with all the spam.

     

    I tried switching the code up to count with nearObjects only to get the same result.

     

    Array conversion errors with:

     

    error: 0 elements provided, 3 expected

  4.  

    example

    	private ["_objects"];
    _objects = [
    
    
        ["ProtectionZone_Invisible_F",[23710.1, 16250.1, 0.01]], 
        ["ProtectionZone_Invisible_F",[23710.1, 16225.1, 0.01]], 	
        ["ProtectionZone_Invisible_F",[23710.1, 16200.1, 0.01]],	
        ["ProtectionZone_Invisible_F",[23685.1, 16250.1, 0.01]],
        ["ProtectionZone_Invisible_F",[23685.1, 16225.1, 0.01]],
        ["ProtectionZone_Invisible_F",[23685.1, 16200.1, 0.01]],	
        ["ProtectionZone_Invisible_F",[23660.1, 16250.1, 0.01]], 
        ["ProtectionZone_Invisible_F",[23660.1, 16225.1, 0.01]], 
        ["ProtectionZone_Invisible_F",[23660.1, 16200.1, 0.01]] 
    	
    ];
    
    {
    	private ["_obj"];
    	_obj = createVehicle [_x select 0, [0,0,0], [], 0, "CAN_COLLIDE"];
    	_obj setvectorup [0,0,1];	
    	_obj setPosATL (_x select 1);
    } foreach _objects;	
    

    I'd like to try a protection zone.  Would you be willing to do a full write up on how to accomplish this?

     

    Init.sqm change?

    Add a script?

    Change the mission.sqm?

  5. can you send me your mission.sqm in a pastebin? That is probably the problem, at least it is going to be the most common... Also are you running this on Altis?

     

    Yeah Altis - will get it going again and test and send you the resulting mission.sqm pretty sure Infistar is blocking this though.

  6. Like brunz said... Antihacks clean up Eventhandlers such as this one on normal players and infistar will clean this up. But one way to test if it loaded up is to login as infistar admin and see if it works... It should work for you, just not a normal player.

     

    So how do you tell Infistar to leave this code alone and let it execute?

  7. I got it working by disabling Infistar commanding menu check.
     
    However when I changed the bike.sqf code to the following it does not work?

     

    titleText ["Checking to see if you have the required items to craft an Ebike.", "PLAIN DOWN"];


    sleep 3;
    if ("ItemCorrugated" in (magazines player)) then[{
    if ("CircuitParts" in (magazines player)) then[{
    if ("ItemScraps" in (magazines player)) then[{
    titleText ["", "PLAIN DOWN"];
    player playActionNow "Medic";
    _spawnPos = player modelToWorld [0,2,0];
    _spawnDir = (getDir player) -90;
    UDBike = [player, _spawnPos, _spawnDir];
    sleep 3;
    publicVariableServer "UDBike";
    sleep 1;
    titleText ["You have crafted an Ebike!", "PLAIN DOWN"];
    player removeMagazine "ItemCorrugated";
    player removeMagazine "CircuitParts";
    player removeMagazine "ItemScraps";
    },{
    titleText ["You need one Scrap Metal to build an Ebike.", "PLAIN DOWN"];
    }];
    },{
    titleText ["You need one Electronic Component to build an Ebike.", "PLAIN DOWN"];
    }];
    },{
    titleText ["You need one Small Salvage Metal to build an Ebike.", "PLAIN DOWN"];
    }];

  8. 18:18:57 "A3EAI Monitor :: Server Uptime: 0:13:14. Server FPS: 48.1928 Active AI Groups: 0."


    18:18:57 "A3EAI Monitor :: Static Spawns: 0. Respawn Queue: 0 groups queued."
    18:18:57 "A3EAI Monitor :: Dynamic Spawns: 0. Random Spawns: 15. Air Patrols: 0. Land Patrols: 0."
    18:20:57 Error in expression 0} &&
    {!((_spawnPos nearObjects ["Construct>
    18:20:57 Error position: <&&
    {!((_spawnPos nearObjects ["Construct>
    18:20:57 Error &&: Type code, expected Bool
    18:20:57 File A3EAI\compile\A3EAI_unit_spawning\A3EAI_spawn_dynamic.sqf, line 48
    18:23:58 "A3EAI Monitor :: Server Uptime: 0:18:15. Server FPS: 50.3145 Active AI Groups: 0."
    18:23:58 "A3EAI Monitor :: Static Spawns: 0. Respawn Queue: 0 groups queued."
    18:23:58 "A3EAI Monitor :: Dynamic Spawns: 0. Random Spawns: 15. Air Patrols: 0. Land Patrols: 0."
    18:28:58 "A3EAI Monitor :: Server Uptime: 0:23:15. Server FPS: 48.048 Active AI Groups: 0."
    18:28:58 "A3EAI Monitor :: Static Spawns: 0. Respawn Queue: 0 groups queued."
    18:28:58 "A3EAI Monitor :: Dynamic Spawns: 0. Random Spawns: 15. Air Patrols: 0. Land Patrols: 0."

    "],1500])>

     

     

    Anyone have this error yet?  Looks like a expected Boolean in the dynamic spawner

  9. @ Vampire

     

    In the towns of Dorida and Zaros the crate still spawns in a building and blows up. Have the latest version running. was testing it out this morning.

    I have no problems with these towns working just fine.  What box are you spawning?  I had switched to the cargo net as recommended in a previous post in this thread.

  10. I've tried to set increased crate loot number, which didn't work -  and the missions didn't notify or in most cases...AI/Missions didn't spawn? So reset to default and it worked...

     

    I've also got this random issue where some players see the Mission start message top right of screen. But some hear it but don't see it...other players see it but don't hear it...?

     

    Also  there is nothing in the RPT to show an error. And also noticing the instead of the 12 AI that used to spawn...it's now anywhere between 3 and 9 AI?

     

    EDIT:

    Just done a mission with a few players - 8 total AI kills. Cannot find anymore and the mission is not completed. Town was Neochori

     

     

    Delete the code that attempts to put a scope on the bandit AI weapons 10% of the time.  This is causing an error and stopping the production of new bandits to the mission.  End result not enough to kill to complete the mission!

×
×
  • Create New...