实例介绍
TS-SE-Tool:Truck Simulator Save Editor Tool源码下载
如果你是《欧洲卡车模拟器2》(Euro Truck Simulator 2)或《美国卡车模拟器》(American Truck Simulator)的玩家,并希望对游戏存档进行深度自定义和编辑,那么LIPtoH的存档编辑工具将是你的理想选择。该工具支持Windows x64操作系统,并需要.NET Framework 4.7.2环境。
使用TS-SE-Tool工具,你可以轻松实现以下功能:
• 自定义存档文件路径。 • 编辑本地和Steam平台的游戏存档。 • 修改玩家等级和技能。 • 编辑和分享用于卡车和挂车的用户颜色。 • 修改账户上的金钱数量。 • 访问城市并从已发现的城市中获取货物。 • 购买和/或升级车库。 • 修理和/或加油你的卡车。 • 分享卡车涂装。 • 修理挂车。 • 为货运市场创建自定义工作。 • 对货物市场进行基本编辑。 • 分享卡车位置。 • 分享GPS路径。 • 将多个卡车位置作为一个车队控制包共享。短期目标包括完成卡车零件分享功能的开发,以及增加编辑和分享挂车功能。长期目标旨在为货物市场添加创建工作的能力,并从游戏或游戏生成的文件中获取地图数据,以及扫描模组数据(卡车、货物等)。
【实例截图】
【核心代码】
文件清单
└── TS-SE-Tool-d97025f6a0a31b5952e5b524b50e0e0def630928
├── LICENSE
├── README.md
├── TS SE Tool
│ ├── App.config
│ ├── CustomClasses
│ │ ├── ExternalData
│ │ │ ├── CountryDictionary.cs
│ │ │ ├── ExtCargo.cs
│ │ │ ├── ExtCompany.cs
│ │ │ ├── LevelNames.cs
│ │ │ ├── Routes.cs
│ │ │ └── ScsFont.cs
│ │ ├── Global
│ │ │ ├── EnumerableExt.cs
│ │ │ └── FloatList.cs
│ │ ├── JobAdded.cs
│ │ ├── Program
│ │ │ └── ProgSettings.cs
│ │ ├── Save
│ │ │ ├── DataFormat
│ │ │ │ ├── SCS_Color.cs
│ │ │ │ ├── SCS_Float.cs
│ │ │ │ ├── SCS_string.cs
│ │ │ │ ├── Vector_2f.cs
│ │ │ │ ├── Vector_3f_4f.cs
│ │ │ │ ├── Vector_3f.cs
│ │ │ │ ├── Vector_3i.cs
│ │ │ │ └── Vector_4f.cs
│ │ │ ├── Info
│ │ │ │ └── Dependencies.cs
│ │ │ ├── Items
│ │ │ │ ├── Bank.cs
│ │ │ │ ├── Bank_Loan.cs
│ │ │ │ ├── Bus_job_Log.cs
│ │ │ │ ├── Bus_stop.cs
│ │ │ │ ├── Company.cs
│ │ │ │ ├── Delivery_log.cs
│ │ │ │ ├── Delivery_log_Entry.cs
│ │ │ │ ├── Driver_AI.cs
│ │ │ │ ├── Driver_Player.cs
│ │ │ │ ├── Economy.cs
│ │ │ │ ├── Economy_event.cs
│ │ │ │ ├── Economy_event_Queue.cs
│ │ │ │ ├── Ferry_log.cs
│ │ │ │ ├── Ferry_log_Entry.cs
│ │ │ │ ├── Game_Progress.cs
│ │ │ │ ├── Garage.cs
│ │ │ │ ├── GPS_waypoint_Storage.cs
│ │ │ │ ├── Job_Info.cs
│ │ │ │ ├── Job_offer_Data.cs
│ │ │ │ ├── Mail_Ctrl.cs
│ │ │ │ ├── Mail_Def.cs
│ │ │ │ ├── Map_action.cs
│ │ │ │ ├── Oversize_Block_rule_Save.cs
│ │ │ │ ├── Oversize_Job_save.cs
│ │ │ │ ├── Oversize_Offer.cs
│ │ │ │ ├── Oversize_offer_Ctrl.cs
│ │ │ │ ├── Oversize_Route_offers.cs
│ │ │ │ ├── Player.cs
│ │ │ │ ├── Player_Job.cs
│ │ │ │ ├── Police_Ctrl.cs
│ │ │ │ ├── Profit_log.cs
│ │ │ │ ├── Profit_log_Entry.cs
│ │ │ │ ├── Registry.cs
│ │ │ │ ├── SiiNBlockCore.cs
│ │ │ │ ├── SiiNunit.cs
│ │ │ │ ├── Trailer.cs
│ │ │ │ ├── Trailer_Def.cs
│ │ │ │ ├── Trailer_Utilization_log.cs
│ │ │ │ ├── Trailer_Utilization_log_Entry.cs
│ │ │ │ ├── Trajectory_orders_Save.cs
│ │ │ │ ├── Transport_Data.cs
│ │ │ │ ├── Unidentified.cs
│ │ │ │ ├── Vehicle_Accessory.cs
│ │ │ │ ├── Vehicle_Addon_Accessory.cs
│ │ │ │ ├── Vehicle_Cargo_Accessory.cs
│ │ │ │ ├── Vehicle.cs
│ │ │ │ ├── Vehicle_Drv_plate_Accessory.cs
│ │ │ │ ├── Vehicle_Paint_job_Accessory.cs
│ │ │ │ ├── Vehicle_Sound_Accessory.cs
│ │ │ │ └── Vehicle_Wheel_Accessory.cs
│ │ │ ├── ItemsExtra
│ │ │ │ ├── Cargo.cs
│ │ │ │ ├── City.cs
│ │ │ │ ├── Company.cs
│ │ │ │ ├── CompanyTruck.cs
│ │ │ │ ├── Country.cs
│ │ │ │ ├── Garages.cs
│ │ │ │ ├── PlayerJob.cs
│ │ │ │ ├── TrailerDefinition.cs
│ │ │ │ ├── UserCompanyDriverData.cs
│ │ │ │ ├── UserCompanyTrailerData.cs
│ │ │ │ ├── UserCompanyTruckData.cs
│ │ │ │ ├── UserCompanyTruckDataPart.cs
│ │ │ │ └── VisitedCity.cs
│ │ │ ├── SaveFileInfoData.cs
│ │ │ └── SaveFileProfileData.cs
│ │ ├── SCSFontLetter.cs
│ │ ├── SCSLicensePlate.cs
│ │ ├── Utilities
│ │ │ ├── AssemblyData.cs
│ │ │ ├── DateTimeUtilities.cs
│ │ │ ├── dotNetCheck.cs
│ │ │ ├── Graphics.cs
│ │ │ ├── IO_Utilities.cs
│ │ │ ├── NumericUtilities.cs
│ │ │ ├── TextUtilities.cs
│ │ │ ├── Web_Utilities.cs
│ │ │ └── ZipDataUtilitiescs.cs
│ │ └── UtilitiesExternal
│ │ ├── DDSImageParser.cs
│ │ ├── FlexibleMessageBox.cs
│ │ └── TGASharpLib.cs
│ ├── DataManipulation.cs
│ ├── FormMain.cs
│ ├── FormMain.Designer.cs
│ ├── FormMain.resx
│ ├── FormMethods.cs
│ ├── Forms
│ │ ├── FormAboutBox.cs
│ │ ├── FormAboutBox.Designer.cs
│ │ ├── FormAboutBox.resx
│ │ ├── FormAddCustomFolder.cs
│ │ ├── FormAddCustomFolder.Designer.cs
│ │ ├── FormAddCustomFolder.resx
│ │ ├── FormCheckUpdates.cs
│ │ ├── FormCheckUpdates.Designer.cs
│ │ ├── FormCheckUpdates.resx
│ │ ├── FormColorPicker.cs
│ │ ├── FormColorPicker.resx
│ │ ├── FormConvoyControlPositions.cs
│ │ ├── FormConvoyControlPositions.Designer.cs
│ │ ├── FormConvoyControlPositions.resx
│ │ ├── FormGaragesSoldContent.cs
│ │ ├── FormGaragesSoldContent.Designer.cs
│ │ ├── FormGaragesSoldContent.resx
│ │ ├── FormMainControlsMethods.cs
│ │ ├── FormProgramSettings.cs
│ │ ├── FormProgramSettings.Designer.cs
│ │ ├── FormProgramSettings.resx
│ │ ├── FormSettings.cs
│ │ ├── FormSettings.designer.cs
│ │ ├── FormSettings.resx
│ │ ├── FormShareUserColors.cs
│ │ ├── FormShareUserColors.Designer.cs
│ │ ├── FormShareUserColors.resx
│ │ ├── FormSplash.cs
│ │ ├── FormSplash.Designer.cs
│ │ ├── FormSplash.resx
│ │ ├── MainTabs
│ │ │ ├── FormMethodsCargoMarkerTab.cs.cs
│ │ │ ├── FormMethodsCompanyTab.cs
│ │ │ ├── FormMethodsConvoyToolsTab.cs.cs
│ │ │ ├── FormMethodsFreightMarketTab.cs.cs
│ │ │ ├── FormMethodsProfileTab.cs
│ │ │ ├── FormMethodsTrailerTab.cs.cs
│ │ │ └── FormMethodsTruckTab.cs
│ │ └── ProfileEditor
│ │ ├── FormProfileEditor.cs
│ │ ├── FormProfileEditor.Designer.cs
│ │ ├── FormProfileEditorRenameClone.cs
│ │ ├── FormProfileEditorRenameClone.Designer.cs
│ │ ├── FormProfileEditorRenameClone.resx
│ │ ├── FormProfileEditor.resx
│ │ ├── FormProfileEditorSettingsImportExport.cs
│ │ ├── FormProfileEditorSettingsImportExport.Designer.cs
│ │ └── FormProfileEditorSettingsImportExport.resx
│ ├── MethodsDecodeSave.cs
│ ├── MethodsReadWrite.cs
│ ├── OpenPainter.ColorPicker.dll
│ ├── packages.config
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── README.md
│ ├── Resources
│ │ └── MainIco.ico
│ ├── RMcode
│ │ ├── PlainTXTResourceManager.cs
│ │ ├── PlainTXTResourceReader.cs
│ │ └── PlainTXTResourceSet.cs
│ ├── SII_Decrypt.dll
│ ├── TS_SE.ico
│ ├── TS SE Tool.csproj
│ └── TS SE Tool.licenseheader
├── TS SE Tool.sln
└── TS SET Updater
├── App.config
├── ClassZipProgress.cs
├── extWinPos.cs
├── FormMain.cs
├── FormMain.Designer.cs
├── FormMain.resx
├── Program.cs
├── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
└── TS SET Updater.csproj
21 directories, 185 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论