-
Notifications
You must be signed in to change notification settings - Fork 11
Sample launchSettings.json
soul4soul edited this page Jan 17, 2023
·
2 revisions
This is a sample of launchSettings.json
which developers might find useful for working with the software and debugging issues.
{
"profiles": {
"otmc TW-TFSRevScriptSys ServId": {
// TibiaWiki to TFS RevScriptSys convert to server ids
"commandName": "Project",
"commandLineArgs": "--inputFormat=TibiaWiki --outputFormat=\"TFS RevScriptSys\" -o=\"C:\\Tibia\\Wiki_RevScriptSys_Server\" --itemIdFormat=UseServerIds --otbPath=\"C:\\Tibia\\Downloads\\items.otb\""
},
"otmc TW-TFSXML": {
// TibiaWiki to TFS XML
"commandName": "Project",
"commandLineArgs": "--inputFormat=TibiaWiki --outputFormat=\"TFS XML\" -o=\"C:\\Tibia\\Wiki_XML\""
},
"otmc TW-TFSXML ServId": {
// TibiaWiki to TFS XML convert to server ids
"commandName": "Project",
"commandLineArgs": "--inputFormat=TibiaWiki --outputFormat=\"TFS XML\" -o=\"C:\\Tibia\\Wiki_XML_Server\" --itemIdFormat=UseServerIds --otbPath=\"C:\\Tibia\\Downloads\\items.otb\""
},
"otmc TFSXML-TW ClientId": {
// TFS XML to TibiaWiki convert to client ids
"commandName": "Project",
"commandLineArgs": "--inputFormat=\"TFS XML\" -i=\"C:\\Tibia\\git\\forgottenserver\\data\\monster\\monsters\" --outputFormat=TibiaWiki -o=\"C:\\Tibia\\XML_Wiki_client\" --itemIdFormat=UseClientIds --otbPath=\"C:\\Tibia\\Downloads\\items.otb\""
},
"otmc TFSXML-TFSRevScriptSys": {
// TFS XML to TFS revscriptsys
"commandName": "Project",
"commandLineArgs": "--inputFormat=\"TFS XML\" -i=\"C:\\Tibia\\git\\forgottenserver\\data\\monster\\monsters\" --outputFormat=\"TFS RevScriptSys\" -o=\"C:\\Tibia\\XML_RevScriptSys\" --itemIdFormat=KeepSourceIds --otbPath=\"C:\\Tibia\\Downloads\\items.otb\""
},
"otmc CipMon-TFSXML": {
// Cip Mon to TFS XML
"commandName": "Project",
"commandLineArgs": "--inputFormat=\"Cip Mon\" -i=\"C:\\Tibia\\mon\" --outputFormat=\"TFS XML\" -o=\"C:\\Tibia\\mon_XML\""
},
"otmc CipMon-TFSXML ServId": {
// Cip Mon to TFS XML convert to server ids
"commandName": "Project",
"commandLineArgs": "--inputFormat=\"Cip Mon\" -i=\"C:\\Tibia\\mon\" --outputFormat=\"TFS XML\" -o=\"C:\\Tibia\\mon_XML_server\" --itemIdFormat=UseServerIds --otbPath=\"C:\\Tibia\\Downloads\\items.otb\""
},
"otmc CipMon-TFSRevScriptSys ServId": {
// Cip Mon to TFS RevScriptSys convert to server ids
"commandName": "Project",
"commandLineArgs": "--inputFormat=\"Cip Mon\" -i=\"C:\\Tibia\\mon\" --outputFormat=\"TFS RevScriptSys\" -o=\"C:\\Tibia\\mon_LUA_server\" --itemIdFormat=UseServerIds --otbPath=\"C:\\Tibia\\Downloads\\items.otb\""
},
"otmc CipMon-TW": {
// Cip Mon to Wiki
"commandName": "Project",
"commandLineArgs": "--inputFormat=\"Cip Mon\" -i=\"C:\\Tibia\\mon\" --outputFormat=\"TibiaWiki\" -o=\"C:\\Tibia\\mon_Wiki\""
}
}
}