Changeset 256 for binary-improvements
- Timestamp:
- Feb 7, 2016, 12:47:06 PM (9 years ago)
- Location:
- binary-improvements
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/MapRendering/ModInfo.xml
r254 r256 5 5 <Description value="Render the game map to image map tiles as it is uncovered" /> 6 6 <Author value="Christian 'Alloc' Illy" /> 7 <Version value="1 1" />7 <Version value="12" /> 8 8 <Website value="http://7dtd.illy.bz" /> 9 9 </ModInfo> -
binary-improvements/MapRendering/Web/API/GetPlayersLocation.cs
r253 r256 39 39 JSONObject pJson = new JSONObject (); 40 40 pJson.Add("steamid", new JSONString (sid)); 41 pJson.Add("entityid", new JSONNumber (p.EntityID)); 41 42 pJson.Add("ip", new JSONString (p.IP)); 42 43 pJson.Add("name", new JSONString (p.Name)); -
binary-improvements/MapRendering/Web/API/GetPlayersOnline.cs
r244 r256 25 25 JSONObject p = new JSONObject(); 26 26 p.Add ("steamid", new JSONString (ci.playerId)); 27 p.Add ("entityid", new JSONNumber (ci.entityId)); 27 28 p.Add ("ip", new JSONString (ci != null ? ci.ip : string.Empty)); 28 29 p.Add ("name", new JSONString (current.Value.EntityName)); -
binary-improvements/server-fixes.userprefs
r254 r256 1 1 <Properties> 2 2 <MonoDevelop.Ide.Workspace ActiveConfiguration="Release_Version" /> 3 <MonoDevelop.Ide.Workbench ActiveDocument=" AllocsCommands/Commands/TeleportPlayer.cs">3 <MonoDevelop.Ide.Workbench ActiveDocument="MapRendering/ModInfo.xml"> 4 4 <Files> 5 5 <File FileName="7dtd-server-fixes/ModInfo.xml" Line="1" Column="1" /> 6 6 <File FileName="AllocsCommands/ModInfo.xml" Line="1" Column="1" /> 7 <File FileName="MapRendering/ModInfo.xml" Line=" 1" Column="1" />7 <File FileName="MapRendering/ModInfo.xml" Line="21" Column="21" /> 8 8 <File FileName="MapRendering/Web/Web.cs" Line="1" Column="1" /> 9 9 <File FileName="MapRendering/Web/API/ExecuteConsoleCommand.cs" Line="1" Column="1" /> … … 12 12 <File FileName="MapRendering/Web/API/GetWebUIUpdates.cs" Line="1" Column="1" /> 13 13 <File FileName="MapRendering/Web/Handlers/ApiHandler.cs" Line="1" Column="1" /> 14 <File FileName="MapRendering/Commands/WebTokens.cs" Line=" 67" Column="67" />14 <File FileName="MapRendering/Commands/WebTokens.cs" Line="1" Column="1" /> 15 15 <File FileName="AllocsCommands/Commands/TeleportPlayer.cs" Line="63" Column="63" /> 16 <File FileName="MapRendering/Web/Handlers/ItemIconHandler.cs" Line="42" Column="42" /> 16 17 </Files> 17 18 </MonoDevelop.Ide.Workbench> -
binary-improvements/webserver/index.html
r251 r256 108 108 <div id="playerInventoryDialog" title="Player inventory"> 109 109 Player: <span id="invPlayerName"></span><br/> 110 SteamID: <span id="invSteamId"></span><br/> 110 111 <br/> 111 112 <table> -
binary-improvements/webserver/js/inventory_dialog.js
r253 r256 39 39 } 40 40 } 41 41 42 // function linkId(steamid) { 43 // var value = "https://steamid.io/lookup/"+steamid; 44 // } 45 42 46 $.getJSON( "../api/getplayerinventory", { steamid: steamid }) 43 47 .done(function(data) { 44 48 $("#invPlayerName").text(data.playername); 49 $("#invSteamId").text(steamid); 45 50 46 51 for (var y = 0; y < BAG_ROWS; y++) { -
binary-improvements/webserver/js/leaflet.layer.landclaims.js
r245 r256 40 40 var r = L.rectangle(bounds, {color: color, weight: 1, opacity: 0.8, fillOpacity: 0.15}); 41 41 var m = L.marker(pos, { clickable: false, keyboard: false, zIndexOffset:-1000, iconSize: [0,0], icon: L.divIcon({className: 'invisIcon', iconSize:[0,0]}) }); 42 r.bindPopup("Owner: " + name + " ("+steamid+")<br/>Position: " + val.x + " / " + val.y + " /" + val.z);42 r.bindPopup("Owner: " + name + " ("+steamid+")<br/>Position: " + val.x + " " + val.y + " " + val.z); 43 43 landClaimsRectGroup.addLayer(r); 44 44 landClaimsClusterGroup.addLayer(m);
Note:
See TracChangeset
for help on using the changeset viewer.