Alloc Posted August 1, 2017 Author Share Posted August 1, 2017 Thanks for the reply , and as a final question ( i hope ) Has anyone done a key to the map ? ie biome colors , what building they are when you look down from the map ect ? Sorry, not sure what you're asking for here? You mean a legend for the colors and text labels on POIs? Link to comment Share on other sites More sharing options...
AncientLotus Posted August 2, 2017 Share Posted August 2, 2017 so i just done a fresh build on a linux VDS. when i try to use the give command or have the server manager do it we recieve: MissingMethodException: Method not found: 'GameManager.ItemDropServer'. is this a 16.2 allocs thing? or something on my installation. Link to comment Share on other sites More sharing options...
Alloc Posted August 2, 2017 Author Share Posted August 2, 2017 It's a change in the game that needs a recompiled mod. I'm going through my list of tasks today (most likely) and hope to get a new build out, at latest til friday. Link to comment Share on other sites More sharing options...
Guppycur Posted August 2, 2017 Share Posted August 2, 2017 Know what would be cool? If you could put steamid.png files in a folder, and instead of the little icon you get shown the custom icon instead. I say it would be cool because irc Eek did it for me, and it was cool. Unfortunately he hasn't updated it, so I'm back to the regular icons. Link to comment Share on other sites More sharing options...
AdrianVaughan Posted August 2, 2017 Share Posted August 2, 2017 (edited) Sorry, not sure what you're asking for here? You mean a legend for the colors and text labels on POIs? Yes, sorry that is what i ment And is there anyway on your live map to show the wolfs ? as i cant seem to find that. it shows the zombies , but just never shows dog, wolfs ect. Thanks Edited August 2, 2017 by AdrianVaughan (see edit history) Link to comment Share on other sites More sharing options...
AncientLotus Posted August 2, 2017 Share Posted August 2, 2017 It's a change in the game that needs a recompiled mod. I'm going through my list of tasks today (most likely) and hope to get a new build out, at latest til friday. Thanks Alloc. Your a god amongst men! Link to comment Share on other sites More sharing options...
Alloc Posted August 2, 2017 Author Share Posted August 2, 2017 Know what would be cool? If you could put steamid.png files in a folder, and instead of the little icon you get shown the custom icon instead. What little icon? No idea what you're talking about ^^ Yes, sorry that is what i ment Not that I would know of anything like that. Link to comment Share on other sites More sharing options...
Guppycur Posted August 2, 2017 Share Posted August 2, 2017 What little icon? No idea what you're talking about ^^ Instead of little black men to represent people on the map, custom icons based on the steamid, so if there is a steamid.png file it would show the appropriate png. Mine would be 77234324235325324.png or whatever. - - - Updated - - - Trust me, it's cool. =) Link to comment Share on other sites More sharing options...
Alloc Posted August 2, 2017 Author Share Posted August 2, 2017 If it's you who proposed that feature ... how can it be cool? Link to comment Share on other sites More sharing options...
StompyNZ Posted August 2, 2017 Share Posted August 2, 2017 Yes, sorry that is what i ment And is there anyway on your live map to show the wolfs ? as i cant seem to find that. it shows the zombies , but just never shows dog, wolfs ect. Thanks In Hostiles.cs I changed the following: if (entity.entityType == EntityType.Zombie) { EntityEnemy ee = (EntityEnemy)entity; if (ee.IsAlive ()) lst.Add (ee); } to EntityEnemy ee = (EntityEnemy)entity; if (ee != null) { if (ee.IsAlive()) lst.Add(ee); } That way all hostiles show up. You could do any type filtering in the js if you wanted to split the list. Link to comment Share on other sites More sharing options...
Alloc Posted August 2, 2017 Author Share Posted August 2, 2017 EntityEnemy ee = (EntityEnemy)entity; if (ee != null) { if (ee.IsAlive()) lst.Add(ee); } That will give you exceptions all the time, most likely impacting performance (you can't just cast everything to EntityEnemy, that's not how casting works ). Btw, that bug (as well as a bunch of other stuff) is fixed in the latest release. Link to comment Share on other sites More sharing options...
StompyNZ Posted August 2, 2017 Share Posted August 2, 2017 (edited) That will give you exceptions all the time, most likely impacting performance (you can't just cast everything to EntityEnemy, that's not how casting works ). Btw, that bug (as well as a bunch of other stuff) is fixed in the latest release. heh ok fair point. Edit: https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/as according to docs using as should be fine? Misread what I had typed, thought I had used entity as EntityEnemy, my mistake Edited August 2, 2017 by StompyNZ (see edit history) Link to comment Share on other sites More sharing options...
Alloc Posted August 3, 2017 Author Share Posted August 3, 2017 Yeah, "as" is ok (Not applying in this speicifc case) Though if the casted value is not used (e.g. for adding to a list) I'd still recommend using just "is" as I suppose the actual cast will still increase the cost Link to comment Share on other sites More sharing options...
war4head Posted August 3, 2017 Share Posted August 3, 2017 I install new version of mod rev. 307 (13_15_20) (2017-08-02) and have error in my log: [TABLE] [TR=class: Exception] [TD=class: logcol_uptime][/TD] [TD=class: logcol_type]Exception[/TD] [TD=class: logcol_msg]MissingMethodException: Method not found: 'Vector2i.Equals'. AllocsFixes.MapRendering.MapRendering+c__Iterator0.MoveNext ()UnityEngine.SetupCoroutine.InvokeMoveNext (IEnumerator enumerator, IntPtr returnValueAddress) [/TD] [/TR] [/TABLE] All looks ok, but now on map over webbrowser I don't see update of new discovery map, any idea how to fix? Link to comment Share on other sites More sharing options...
Alloc Posted August 3, 2017 Author Share Posted August 3, 2017 Are you running 16.2? Link to comment Share on other sites More sharing options...
war4head Posted August 3, 2017 Share Posted August 3, 2017 (edited) Are you running 16.2? No, I'm on 16.1 - oh I see only compatiblie with 16.2 or new....sry my error. I will rollback to rev. 301. Edited August 3, 2017 by war4head (see edit history) Link to comment Share on other sites More sharing options...
h0tr0d Posted August 3, 2017 Share Posted August 3, 2017 Yah, need the /give omg! Link to comment Share on other sites More sharing options...
wkdboi1 Posted August 4, 2017 Share Posted August 4, 2017 How is it possible to get the map to work with a windows server? All I get is errors, or is their another map that can be used and works with windows 10 Link to comment Share on other sites More sharing options...
Retsof123 Posted August 4, 2017 Share Posted August 4, 2017 Hi Alloc, Just loaded the A16.2 update on my hosted dedicated server along with your server fixes and get the following in the outputlog. Map looks to be ok, just concerned about the errors. 2017-08-05T01:18:35 11.949 INF StartGame done 2017-08-05T01:18:36 13.013 INF [steamworks.NET] GameServer.Init successful 2017-08-05T01:18:38 14.269 INF [steamworks.NET] GameServer.LogOn successful, SteamID=90110342025007112 2017-08-05T01:18:39 15.067 INF Error in Web.HandleRequest(): No handler found for path "/luzhou/shenbao/" 2017-08-05T01:18:42 18.741 INF Error in Web.HandleRequest(): No handler found for path "/dalian/lifan/pabmdcigf" 2017-08-05T01:19:13 49.470 INF Steam certificate error: RemoteCertificateChainErrors 2017-08-05T01:19:14 50.501 INF Steam OpenID login from 110.141.197.71:8257 with ID 76561197995221683, permission level 0 2017-08-05T01:19:15 51.043 INF Web:Static:FileNotFound: "/static/densitymismatch.json" @ "D:\TCAFiles\Users\PeterL\4636\Mods\Allocs_WebAndMapRendering/webserver/densitymismatch.json" 2017-08-05T01:19:48 84.137 INF Error in Web.HandleRequest(): No handler found for path "/shangrao/fudi/soa1t60" Link to comment Share on other sites More sharing options...
Alloc Posted August 4, 2017 Author Share Posted August 4, 2017 How is it possible to get the map to work with a windows server? All I get is errors, or is their another map that can be used and works with windows 10 "It doesn't work" will never get you any help (Windows isn't the problem here though, most 7dtd servers run on Windows) Hi Alloc, Just loaded the A16.2 update on my hosted dedicated server along with your server fixes and get the following in the outputlog. Map looks to be ok, just concerned about the errors. Just someone probing your server for certain paths, nothing special. Reminds me though that I should probably disable that output, doesn't really serve any purpose other than debugging Link to comment Share on other sites More sharing options...
h0tr0d Posted August 4, 2017 Share Posted August 4, 2017 (edited) /give fixed? any word Alloc? Edited August 5, 2017 by h0tr0d (see edit history) Link to comment Share on other sites More sharing options...
mythan Posted August 5, 2017 Share Posted August 5, 2017 Know what would be cool? If you could put steamid.png files in a folder, and instead of the little icon you get shown the custom icon instead. I say it would be cool because irc Eek did it for me, and it was cool. Unfortunately he hasn't updated it, so I'm back to the regular icons. Hah, we tried after we had 3000 players on the server.. whenever someone connected to the map, everything would freeze up as it was downloading thousands of player icons (offline players too). We canned it in the end, couldn't get it to run fast. Link to comment Share on other sites More sharing options...
Guppycur Posted August 5, 2017 Share Posted August 5, 2017 Well, my server pop isn't quite as large as yours. Close, I have 13, 14 unique people per wipe compared to you THREE THOUSAND. Lol. Joking aside, It's a cool feature for uh normal servers. Link to comment Share on other sites More sharing options...
Retsof123 Posted August 5, 2017 Share Posted August 5, 2017 Just someone probing your server for certain paths, nothing special. Reminds me though that I should probably disable that output, doesn't really serve any purpose other than debugging Cool, thanks Alloc. Link to comment Share on other sites More sharing options...
Rumbaar Posted August 5, 2017 Share Posted August 5, 2017 Just someone probing your server for certain paths, nothing special. Reminds me though that I should probably disable that output, doesn't really serve any purpose other than debugging I get the same error when I hit the map, never had this error in the 16.1 version of the code 2017-08-05T22:45:32 46517.646 INF Web:Static:FileNotFound: "/static/densitymismatch.json" @ "C:\program files (x86)\steam\steamapps\common\7 Days To Die Dedicated Server\Mods\Allocs_WebAndMapRendering/webserver/densitymismatch.json" in the map.js file there is this code: $.getJSON("densitymismatch.json") .done(setDensityMarkers) .fail(function(jqxhr, textStatus, error) { console.log("Error fetching density mismatch list"); }); Which there doesn't seem to be in 16.1 and there doesn't seem to be that file in the correct spot on the webserver mod folder structure. I'm not sure what it's meant to be doing, but appears to be missing on this release. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now