@expcluster/legacy 7.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +21 -0
- package/dist/browser/package.json +40 -0
- package/dist/browser/tsconfig.browser.tsbuildinfo +1 -0
- package/dist/browser/web/index.d.ts +1 -0
- package/dist/browser/web/index.d.ts.map +1 -0
- package/dist/browser/web/index.js +2 -0
- package/dist/browser/web/index.js.map +1 -0
- package/dist/node/index.d.ts +3 -0
- package/dist/node/index.d.ts.map +1 -0
- package/dist/node/index.js +10 -0
- package/dist/node/index.js.map +1 -0
- package/dist/node/instance.d.ts +4 -0
- package/dist/node/instance.d.ts.map +1 -0
- package/dist/node/instance.js +8 -0
- package/dist/node/instance.js.map +1 -0
- package/dist/node/tsconfig.node.tsbuildinfo +1 -0
- package/dist/web/manifest.json +7 -0
- package/dist/web/static/exp_legacy.9b6538559ed5e689539c.js +355 -0
- package/dist/web/static/index_ts.8f9d451c8d3f7f293da6.js +22 -0
- package/dist/web/static/main.94e1b48804112ca8bdfc.js +118 -0
- package/dist/web/static/package_json.a83729efdb0697b12396.js +22 -0
- package/dist/web/static/web_index_tsx.e5a01ac0e4b0a6f6517f.js +21 -0
- package/index.ts +8 -0
- package/instance.ts +7 -0
- package/module/config/_file_loader.lua +29 -0
- package/module/config/advanced_start.lua +112 -0
- package/module/config/afk_kick.lua +14 -0
- package/module/config/bonus.lua +105 -0
- package/module/config/chat_reply.lua +136 -0
- package/module/config/compilatron.lua +25 -0
- package/module/config/death_logger.lua +15 -0
- package/module/config/deconlog.lua +11 -0
- package/module/config/discord_alerts.lua +25 -0
- package/module/config/expcore/permission_groups.lua +143 -0
- package/module/config/graftorio.lua +7 -0
- package/module/config/gui/autofill.lua +129 -0
- package/module/config/gui/player_list_actions.lua +201 -0
- package/module/config/gui/rockets.lua +47 -0
- package/module/config/gui/science.lua +21 -0
- package/module/config/gui/tasks.lua +13 -0
- package/module/config/gui/warps.lua +52 -0
- package/module/config/inventory_clear.lua +9 -0
- package/module/config/join_messages.lua +8 -0
- package/module/config/lawnmower.lua +6 -0
- package/module/config/logging.lua +30 -0
- package/module/config/miner.lua +8 -0
- package/module/config/module.lua +86 -0
- package/module/config/nukeprotect.lua +30 -0
- package/module/config/pollution_grading.lua +9 -0
- package/module/config/popup_messages.lua +10 -0
- package/module/config/preset_player_colours.lua +33 -0
- package/module/config/preset_player_quickbar.lua +6 -0
- package/module/config/protection.lua +17 -0
- package/module/config/repair.lua +8 -0
- package/module/config/research.lua +179 -0
- package/module/config/scorched_earth.lua +116 -0
- package/module/config/spawn_area.lua +255 -0
- package/module/config/station_auto_name.lua +11 -0
- package/module/config/statistics.lua +46 -0
- package/module/config/vlayer.lua +180 -0
- package/module/config/warnings.lua +38 -0
- package/module/control.lua +46 -0
- package/module/expcore/datastore.lua +884 -0
- package/module/expcore/external.lua +146 -0
- package/module/expcore/permission_groups.lua +355 -0
- package/module/expcore/player_data.lua +152 -0
- package/module/locale/en/addons.cfg +31 -0
- package/module/locale/en/data.cfg +114 -0
- package/module/locale/en/expcore.cfg +16 -0
- package/module/locale/en/gui.cfg +114 -0
- package/module/locale/zh-CN/addons.cfg +31 -0
- package/module/locale/zh-CN/data.cfg +114 -0
- package/module/locale/zh-CN/expcore.cfg +16 -0
- package/module/locale/zh-CN/gui.cfg +122 -0
- package/module/locale/zh-TW/addons.cfg +31 -0
- package/module/locale/zh-TW/data.cfg +114 -0
- package/module/locale/zh-TW/expcore.cfg +16 -0
- package/module/locale/zh-TW/gui.cfg +122 -0
- package/module/module.json +14 -0
- package/module/module_exports.lua +3 -0
- package/module/modules/control/jail.lua +119 -0
- package/module/modules/control/protection.lua +204 -0
- package/module/modules/control/reports.lua +225 -0
- package/module/modules/control/spectate.lua +173 -0
- package/module/modules/control/vlayer.lua +807 -0
- package/module/modules/control/warnings.lua +331 -0
- package/module/modules/control/warps.lua +488 -0
- package/module/modules/data/alt-view.lua +26 -0
- package/module/modules/data/greetings.lua +45 -0
- package/module/modules/data/language.lua +21 -0
- package/module/modules/data/player-colours.lua +63 -0
- package/module/modules/data/quickbar.lua +72 -0
- package/module/modules/data/statistics.lua +181 -0
- package/module/modules/data/tag.lua +82 -0
- package/module/modules/data/toolbar.lua +31 -0
- package/module/modules/graftorio/forcestats.lua +196 -0
- package/module/modules/graftorio/general.lua +63 -0
- package/module/modules/graftorio/require.lua +28 -0
- package/module/modules/graftorio/statics.lua +36 -0
- package/module/modules/gui/vlayer.lua +547 -0
- package/module/modules/gui/warp-list.lua +909 -0
- package/module/utils/event.lua +86 -0
- package/package.json +38 -0
- package/tsconfig.browser.json +4 -0
- package/tsconfig.json +7 -0
- package/tsconfig.node.json +5 -0
- package/web/index.tsx +0 -0
- package/webpack.config.js +29 -0
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
[join-message]
|
|
2
|
+
description-add=Sets / Gets your custom join message.
|
|
3
|
+
description-remove=Removes you custom join message.
|
|
4
|
+
arg-message=Your custom join message.
|
|
5
|
+
greet=[color=0,1,0] Welcome to explosive gaming community server! If you like the server join our discord: __1__ [/color]
|
|
6
|
+
message-set=Your join message has been updated.
|
|
7
|
+
message-get=Your join message is: __1__
|
|
8
|
+
message-cleared=Your join message has been cleared.
|
|
9
|
+
|
|
10
|
+
[quickbar]
|
|
11
|
+
saved=Your quickbar filters have been saved.
|
|
12
|
+
|
|
13
|
+
[exp-required]
|
|
14
|
+
Warnings=Warnings
|
|
15
|
+
Warnings-tooltip=The total number of warnings you have received from staff
|
|
16
|
+
Warnings-value-tooltip=The total number of warnings you have received from staff
|
|
17
|
+
|
|
18
|
+
[exp-settings]
|
|
19
|
+
Colour=Colour
|
|
20
|
+
Colour-tooltip=Your player colour
|
|
21
|
+
Colour-value-tooltip=Change by using /color
|
|
22
|
+
JoinMessage=Join Message
|
|
23
|
+
JoinMessage-tooltip=The message displayed when you join
|
|
24
|
+
JoinMessage-value-tooltip=Change by using /join-message
|
|
25
|
+
QuickbarFilters=Quickbar Filters
|
|
26
|
+
QuickbarFilters-tooltip=The filters on your quickbar
|
|
27
|
+
QuickbarFilters-value-tooltip=Change by using /save-quickbar
|
|
28
|
+
UsesAlt=Alt View
|
|
29
|
+
UsesAlt-tooltip=Whether you use alt view when you play
|
|
30
|
+
UsesAlt-value-tooltip=Change by pressing __CONTROL__show-info__
|
|
31
|
+
UsesServerUps=Server UPS
|
|
32
|
+
UsesServerUps-tooltip=Whether the current server UPS is shown
|
|
33
|
+
UsesServerUps-value-tooltip=Change by using /server-ups
|
|
34
|
+
Tag=Player Tag
|
|
35
|
+
Tag-tooltip=The tag shown after your name
|
|
36
|
+
Tag-value-tooltip=Change by using /tag
|
|
37
|
+
TagColor=Player Tag color
|
|
38
|
+
TagColor-tooltip=The color of the tag shown after your name
|
|
39
|
+
TagColor-value-tooltip=Change by using /tag-color
|
|
40
|
+
Bonus=Player Bonus
|
|
41
|
+
Bonus-tooltip=The bonus given to your character
|
|
42
|
+
Bonus-value-tooltip=Change by using /bonus
|
|
43
|
+
HasEnabledDecon=Quick Tree Decon
|
|
44
|
+
ToolbarState=Toolbox
|
|
45
|
+
ToolbarState-tooltip=The order and favourites in your toolbox
|
|
46
|
+
ToolbarState-value-tooltip=This value is calculated automatically when you leave the game
|
|
47
|
+
|
|
48
|
+
[exp-statistics]
|
|
49
|
+
MapsPlayed=Maps Played
|
|
50
|
+
MapsPlayed-tooltip=The number of unique maps you have played on
|
|
51
|
+
JoinCount=Join Count
|
|
52
|
+
JoinCount-tooltip=The number of times you have joined our servers
|
|
53
|
+
Playtime=Playtime
|
|
54
|
+
Playtime-tooltip=The amount of time you have spent on our servers
|
|
55
|
+
AfkTime=AFK Time
|
|
56
|
+
AfkTime-tooltip=The amount of time you have been AFK on our servers
|
|
57
|
+
ChatMessages=Messages
|
|
58
|
+
ChatMessages-tooltip=The number of messages you have sent in chat
|
|
59
|
+
CommandsUsed=Commands
|
|
60
|
+
CommandsUsed-tooltip=The number of commands you have used
|
|
61
|
+
RocketsLaunched=Rockets Launched
|
|
62
|
+
RocketsLaunched-tooltip=The number of rockets launched while you were online
|
|
63
|
+
ResearchCompleted=Research Completed
|
|
64
|
+
ResearchCompleted-tooltip=The number of research projects completed while you were online
|
|
65
|
+
MachinesBuilt=Machines Built
|
|
66
|
+
MachinesBuilt-tooltip=The number of machines you have built
|
|
67
|
+
MachinesRemoved=Machines Removed
|
|
68
|
+
MachinesRemoved-tooltip=The number of machines you have removed
|
|
69
|
+
TilesBuilt=Tiles Placed
|
|
70
|
+
TilesBuilt-tooltip=The number of tiles you have placed
|
|
71
|
+
TilesRemoved=Tiles Removed
|
|
72
|
+
TilesRemoved-tooltip=The number of tiles you have removed
|
|
73
|
+
TreesDestroyed=Trees Destroyed
|
|
74
|
+
TreesDestroyed-tooltip=The number of trees you have destroyed
|
|
75
|
+
OreMined=Ore Mined
|
|
76
|
+
OreMined-tooltip=The amount of ore you have mined
|
|
77
|
+
ItemsCrafted=Items Crafted
|
|
78
|
+
ItemsCrafted-tooltip=The number of items you have crafted
|
|
79
|
+
ItemsPickedUp=Items Picked Up
|
|
80
|
+
ItemsPickedUp-tooltip=The number of items you have picked up
|
|
81
|
+
Kills=Kills
|
|
82
|
+
Kills-tooltip=The number of biters and biter bases you have squished
|
|
83
|
+
Deaths=Deaths
|
|
84
|
+
Deaths-tooltip=The number of times you have died
|
|
85
|
+
DamageDealt=Damage Dealt
|
|
86
|
+
DamageDealt-tooltip=The amount of damage you have dealt to other forces
|
|
87
|
+
DistanceTravelled=Distance Travelled
|
|
88
|
+
DistanceTravelled-tooltip=The total distance in tiles that you have travelled
|
|
89
|
+
CapsulesUsed=Capsules Used
|
|
90
|
+
CapsulesUsed-tooltip=The number of capsules you have used
|
|
91
|
+
EntityRepaired=Machines Repaired
|
|
92
|
+
EntityRepaired-tooltip=The number of machines which you have repaired
|
|
93
|
+
DeconstructionPlannerUsed=Decon Planner Used
|
|
94
|
+
DeconstructionPlannerUsed-tooltip=The number of times you have used the deconstruction planner
|
|
95
|
+
MapTagsMade=Map Tags Created
|
|
96
|
+
MapTagsMade-tooltip=The number of map tags you have created
|
|
97
|
+
DamageDeathRatio=Damage Death Ratio
|
|
98
|
+
DamageDeathRatio-tooltip=Damage over Death
|
|
99
|
+
KillDeathRatio=Kill Death Ratio
|
|
100
|
+
KillDeathRatio-tooltip=Kill over Death
|
|
101
|
+
SessionTime=Session Time
|
|
102
|
+
SessionTime-tooltip=Session Time
|
|
103
|
+
BuildRatio=Build Ratio
|
|
104
|
+
BuildRatio-tooltip=Build over Remove
|
|
105
|
+
RocketPerHour=Rocket Per Hour
|
|
106
|
+
RocketPerHour-tooltip=Rocket Launched Over Play Time in Hour
|
|
107
|
+
TreeKillPerMinute=Tree Kill Per Minute
|
|
108
|
+
TreeKillPerMinute-tooltip=Tree Destroyed Per Minute
|
|
109
|
+
NetPlayTime=Net Play Time
|
|
110
|
+
NetPlayTime-tooltip=Net Play Time
|
|
111
|
+
AFKTimeRatio=AFK Time Ratio
|
|
112
|
+
AFKTimeRatio-tooltip=AFK Time over Play Time
|
|
113
|
+
Locale=Locale
|
|
114
|
+
Locale-tooltip=The language of player interface
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
[expcore-data]
|
|
2
|
+
description-preference=Allows you to set/get your data saving preference.
|
|
3
|
+
description-data=Writes all your player data to a file on your computer.
|
|
4
|
+
arg-option=One of "All", "Statistics", "Settings", "Required"
|
|
5
|
+
set-preference=You data saving preference has been set to __1__. Existing data will not be effected until you rejoin.
|
|
6
|
+
get-preference=You data saving preference is __1__. Use /set-preference to change this. Use /save-data to get a local copy of your data.
|
|
7
|
+
get-data=Your player data has been writen to file, location: factorio/script_output/expgaming_player_data.json
|
|
8
|
+
data-failed=Your player data has failed to load. Any changes to your data will not be saved.
|
|
9
|
+
data-restore=Your player data has been restored and changes will now save when you leave.
|
|
10
|
+
preference=Saving Preference
|
|
11
|
+
preference-tooltip=Which categories will be saved when you leave the game
|
|
12
|
+
preference-value-tooltip=Change by using /set-preference
|
|
13
|
+
preference-All=All data will be saved
|
|
14
|
+
preference-Statistics=Only statistics, settings, and required data will be saved
|
|
15
|
+
preference-Settings=Only settings and required data will be saved
|
|
16
|
+
preference-Required=Only required data will be saved
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
[player-list]
|
|
2
|
+
main-tooltip=Player List
|
|
3
|
+
open-action-bar=Options
|
|
4
|
+
close-action-bar=Close Options
|
|
5
|
+
reason-confirm=Confirm Reason
|
|
6
|
+
reason-entry=Enter Reason
|
|
7
|
+
goto-player=Goto player
|
|
8
|
+
bring-player=Bring player
|
|
9
|
+
report-player=Report player
|
|
10
|
+
warn-player=Warn player
|
|
11
|
+
jail-player=Jail player
|
|
12
|
+
kick-player=Kick player
|
|
13
|
+
ban-player=Ban player
|
|
14
|
+
afk-time=__1__% of total map time\nLast moved __2__ ago
|
|
15
|
+
open-map=__1__ __2__\n__3__\nClick to open map
|
|
16
|
+
|
|
17
|
+
[warp-list]
|
|
18
|
+
main-caption=Warp List [img=info]
|
|
19
|
+
main-tooltip=Warp List
|
|
20
|
+
sub-tooltip=Warps can only be used every __1__ seconds and when within __2__ tiles\n__3__\n__4__\n__5__\n__6__\n__7__\n__8__
|
|
21
|
+
sub-tooltip-current= - __1__ This is your current warp point;
|
|
22
|
+
sub-tooltip-connected= - __1__ You can travel to this warp point;
|
|
23
|
+
sub-tooltip-different= - __1__ This warp is on a different network;
|
|
24
|
+
sub-tooltip-cooldown= - __1__ You are currently on cooldown;
|
|
25
|
+
sub-tooltip-not_available= - __1__ You are not in range of a warp point;
|
|
26
|
+
sub-tooltip-bypass= - __1__ Your role allows you to travel here;
|
|
27
|
+
too-close=Cannot create warp; too close to existing warp point: __1__
|
|
28
|
+
too-close-to-water=Cannot create warp; too close to water, please move __1__ tiles away from the water body or landfill it
|
|
29
|
+
too-close-to-entities=Cannot create warp; too close to other entities, please move __1__ tiles away from the entities or remove them
|
|
30
|
+
last-edit=Last edited by __1__ at __2__\nClick to view on map
|
|
31
|
+
add-tooltip=Add new warp
|
|
32
|
+
confirm-tooltip=Save changes
|
|
33
|
+
cancel-tooltip=Discard changes
|
|
34
|
+
edit-tooltip=Currently being edited by: __1__
|
|
35
|
+
edit-tooltip-none=Currently being edited by: Nobody
|
|
36
|
+
remove-tooltip=Remove warp
|
|
37
|
+
timer-tooltip=Please wait __1__ seconds before you can warp
|
|
38
|
+
timer-tooltip-zero=After each warp you will need to wait __1__ seconds before you can warp again
|
|
39
|
+
goto-tooltip=Go to x __1__ y __2__
|
|
40
|
+
goto-bypass=Go to x __1__ y __2__, bypass mode
|
|
41
|
+
goto-bypass-different-network=Go to x __1__ y __2__, bypass mode different network
|
|
42
|
+
goto-same-warp=You are already on this warp
|
|
43
|
+
goto-different-network=This warp is on a different network, use power poles to connect it
|
|
44
|
+
goto-cooldown=You are on cooldown, wait for your cooldown to recharge
|
|
45
|
+
goto-disabled=You are not on a warp point, walk to a warp point
|
|
46
|
+
goto-edit=Edit warp icon
|
|
47
|
+
|
|
48
|
+
[bonus]
|
|
49
|
+
description=Get / Set the amount of bonus you receive.
|
|
50
|
+
arg-amount=Amount to set your bonus to, 0 will disable bonus.
|
|
51
|
+
set=Your bonus has been set to __1__.
|
|
52
|
+
get=Your bonus is __1__.
|
|
53
|
+
perm=You dont have enough permission to set more than __1__.
|
|
54
|
+
display-fmms=Mining
|
|
55
|
+
display-fmms-tooltip=Force manual mining speed
|
|
56
|
+
display-frs=Running
|
|
57
|
+
display-frs-tooltip=Force running speed
|
|
58
|
+
display-fcs=Crafting
|
|
59
|
+
display-fcs-tooltip=Force crafting speed
|
|
60
|
+
display-fisb=Inventory
|
|
61
|
+
display-fisb-tooltip=Force inventory slots bonus
|
|
62
|
+
display-fhb=Health
|
|
63
|
+
display-fhb-tooltip=Force health bonus
|
|
64
|
+
display-frdb=Reach
|
|
65
|
+
display-frdb-tooltip=Force reach distance bonus
|
|
66
|
+
display-fwrsm=Robot Speed
|
|
67
|
+
display-fwrsm-tooltip=Force worker robots speed modifier
|
|
68
|
+
display-fwrbm=Robot Battery
|
|
69
|
+
display-fwrbm-tooltip=Force worker robots battery modifier
|
|
70
|
+
display-fwrsb=Robot Storage
|
|
71
|
+
display-fwrsb-tooltip=Force worker robots storage bonus
|
|
72
|
+
display-ffrlm=Robot Lifetime
|
|
73
|
+
display-ffrlm-tooltip=Force following robots lifetime modifier
|
|
74
|
+
|
|
75
|
+
[vlayer]
|
|
76
|
+
main-tooltip=Vlayer GUI
|
|
77
|
+
description-pbr=Recharge Player Battery upto a portion with vlayer
|
|
78
|
+
description-vi=Vlayer Info
|
|
79
|
+
pbr-not-running=vlayer need to be running
|
|
80
|
+
display-item-solar=[img=entity/solar-panel] Solar Panel
|
|
81
|
+
display-item-accumulator=[img=entity/accumulator] Accumulator
|
|
82
|
+
display-current-production=[virtual-signal=signal-P] Current Production
|
|
83
|
+
display-sustained-production=[virtual-signal=signal-S] Sustained Production
|
|
84
|
+
display-max-capacity=[virtual-signal=signal-C] Battery Capacity
|
|
85
|
+
display-current-capacity=[virtual-signal=signal-E] Battery Charge
|
|
86
|
+
display-remaining-surface-area=[virtual-signal=signal-R] Remaining Surface
|
|
87
|
+
display-item-solar-tooltip=The amount of Solar Panel
|
|
88
|
+
display-item-accumulator-tooltip=The amount of Accumulator
|
|
89
|
+
display-current-production-tooltip=Current Power Production
|
|
90
|
+
display-sustained-production-tooltip=Sustained Power Production
|
|
91
|
+
display-max-capacity-tooltip=Battery Max Capacity
|
|
92
|
+
display-current-capacity-tooltip=Battery Current Charge
|
|
93
|
+
display-remaining-surface-area-tooltip=Remaining Surface. Insert Landfill to increase
|
|
94
|
+
steel-chest-detect=No steel chest detected
|
|
95
|
+
steel-chest-empty=Chest is not emptied
|
|
96
|
+
control-refresh=Refresh List
|
|
97
|
+
control-see=See Interface
|
|
98
|
+
control-build=Build Interface
|
|
99
|
+
control-remove=Remove Interface
|
|
100
|
+
result-build=built
|
|
101
|
+
result-remove=removed
|
|
102
|
+
result-interface-location=__1__ interface was located at __2__
|
|
103
|
+
interface-result=__1__ __2__ __4__ interface at __3__
|
|
104
|
+
result-unable=Unable to build __1__ interface, because of __2__
|
|
105
|
+
result-multiple=Multiple steel chest detected
|
|
106
|
+
result-limit=Max limit exceeded
|
|
107
|
+
result-space=Not enough space
|
|
108
|
+
control-type-energy=Energy
|
|
109
|
+
control-type-circuit=Circuit
|
|
110
|
+
control-type-storage-input=Storage Input
|
|
111
|
+
control-type-storage-output=Storage Output
|
|
112
|
+
power-on-space-research=You need to research [technology=__1__] at __2__ level for the space platform vlayer feature.
|
|
113
|
+
enter=Entered vlayer selection mode.
|
|
114
|
+
exit=Exited vlayer selection mode.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
[links]
|
|
2
|
+
discord=https://discord.explosivegaming.nl
|
|
3
|
+
website=https://www.explosivegaming.nl
|
|
4
|
+
status=https://status.explosivegaming.nl
|
|
5
|
+
github=https://github.com/explosivegaming/ExpCluster
|
|
6
|
+
patreon=https://www.patreon.com/ExpGaming
|
|
7
|
+
|
|
8
|
+
[info]
|
|
9
|
+
players-online=現在有 __1__ 人在線
|
|
10
|
+
total-map-time=地圖時間為 __1__
|
|
11
|
+
discord=加入社群: https://discord.explosivegaming.nl
|
|
12
|
+
website=訪問網站: https://www.explosivegaming.nl
|
|
13
|
+
status=伺服器狀態: https://status.explosivegaming.nl
|
|
14
|
+
github=增加功能或回報錯誤: https://github.com/explosivegaming/ExpCluster
|
|
15
|
+
patreon=支持我們: https://www.patreon.com/ExpGaming
|
|
16
|
+
custom-commands=這裹使用了自制指令,如 /tag 和 /me。可使用 /chelp 查看更多。
|
|
17
|
+
read-readme=確保你已閱讀相關資訊。按左上 i 圖標可再次查看。
|
|
18
|
+
softmod=這裹用了自設情境,是一種軟裝模組。
|
|
19
|
+
redmew=
|
|
20
|
+
lhd=列車必須是左則通行。這是本服務器長久以來的規則。
|
|
21
|
+
|
|
22
|
+
[warnings]
|
|
23
|
+
received=你已被 __1__ 警告了,現在共有 __2__ 個警告。 __3__
|
|
24
|
+
pre-kick=這是在被踢離之前的最後警告。
|
|
25
|
+
kick=你已因為被警告太多次而被請離,不過你之後還是可以回來的。
|
|
26
|
+
pre-pre-ban=按照你的行為,你有可能會被封禁。
|
|
27
|
+
pre-ban=這是在被封禁之前的最後警告。
|
|
28
|
+
ban=你已因為被警告太多次而被封禁; 可以到 __1__ 申訴.
|
|
29
|
+
script-warning=這是系統發出的自動警告 (__1__/__2__)
|
|
30
|
+
script-warning-removed=系統發出的自動警告已失效 (__1__/__2__)
|
|
31
|
+
script-warning-limit=__1__ 已被系統發出了一則自動警告。
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
[join-message]
|
|
2
|
+
description-add=設定 / 取得你的加入信息。
|
|
3
|
+
description-remove=移除你的加入信息。
|
|
4
|
+
arg-message=你的加入信息。
|
|
5
|
+
greet=[color=0,1,0] 歡迎來到 EXP 的服務器! 若果你喜歡本服務器可加入 DISCORD: __1__ [/color]
|
|
6
|
+
message-set=你的加入信息已更新。
|
|
7
|
+
message-get=你的加入信息為: __1__
|
|
8
|
+
message-cleared=你的加入信息已清除。
|
|
9
|
+
|
|
10
|
+
[quickbar]
|
|
11
|
+
saved=你的工具列已儲存。
|
|
12
|
+
|
|
13
|
+
[exp-required]
|
|
14
|
+
Warnings=警告
|
|
15
|
+
Warnings-tooltip=你所有收到的警告
|
|
16
|
+
Warnings-value-tooltip=你所有收到的警告
|
|
17
|
+
|
|
18
|
+
[exp-settings]
|
|
19
|
+
Colour=顏色
|
|
20
|
+
Colour-tooltip=你的人物顏色
|
|
21
|
+
Colour-value-tooltip=使用 /color 來更換你的人物顏色
|
|
22
|
+
JoinMessage=加入信息
|
|
23
|
+
JoinMessage-tooltip=你加入時所顯示的信息
|
|
24
|
+
JoinMessage-value-tooltip=使用 /join-message 來更換加入信息
|
|
25
|
+
QuickbarFilters=快捷欄
|
|
26
|
+
QuickbarFilters-tooltip=快捷欄的選項
|
|
27
|
+
QuickbarFilters-value-tooltip=使用 /save-quickbar 來更換快捷欄的選項
|
|
28
|
+
UsesAlt=細節模式
|
|
29
|
+
UsesAlt-tooltip=你加入時是否使用細節模式
|
|
30
|
+
UsesAlt-value-tooltip=按下 __CONTROL__show-info__ 來更改
|
|
31
|
+
UsesServerUps=服務器更新數 (SUPS)
|
|
32
|
+
UsesServerUps-tooltip=現在是否顯示服務器更新數 (SUPS)
|
|
33
|
+
UsesServerUps-value-tooltip=使用 /server-ups 來更換顯示
|
|
34
|
+
Tag=你的人物標籤
|
|
35
|
+
Tag-tooltip=你的人物標籤
|
|
36
|
+
Tag-value-tooltip=使用 /tag 來更換你的人物標籤
|
|
37
|
+
TagColor=人物標籤顏色
|
|
38
|
+
TagColor-tooltip=你的人物標籤顏色
|
|
39
|
+
TagColor-value-tooltip=使用 /tag-color 來更換你的人物標籤顏色
|
|
40
|
+
Bonus=人物附加屬性
|
|
41
|
+
Bonus-tooltip=你的人物附加屬性
|
|
42
|
+
Bonus-value-tooltip=使用 /bonus 來更改
|
|
43
|
+
HasEnabledDecon=快速拆除樹木
|
|
44
|
+
ToolbarState=工具箱
|
|
45
|
+
ToolbarState-tooltip=次序和喜愛項目
|
|
46
|
+
ToolbarState-value-tooltip=此值在離開時自動計算
|
|
47
|
+
|
|
48
|
+
[exp-statistics]
|
|
49
|
+
MapsPlayed=地圖遊玩次數
|
|
50
|
+
MapsPlayed-tooltip=你在本服務器遊玩過的地圖數
|
|
51
|
+
JoinCount=登入次數
|
|
52
|
+
JoinCount-tooltip=你在本服務器遊玩的次數
|
|
53
|
+
Playtime=遊玩時間
|
|
54
|
+
Playtime-tooltip=你在本服務器遊玩的時間
|
|
55
|
+
AfkTime=掛機時間
|
|
56
|
+
AfkTime-tooltip=你在本服務器掛機的時間
|
|
57
|
+
ChatMessages=傳送信息次數
|
|
58
|
+
ChatMessages-tooltip=你在本服務器發送信息的次數
|
|
59
|
+
CommandsUsed=使用指令次數
|
|
60
|
+
CommandsUsed-tooltip=你在本服務器使用指令的次數
|
|
61
|
+
RocketsLaunched=火箭發射次數
|
|
62
|
+
RocketsLaunched-tooltip=你在本服務器在線時所發射過火箭的次數
|
|
63
|
+
ResearchCompleted=研究次數
|
|
64
|
+
ResearchCompleted-tooltip=你在本服務器在線時完成研究的次數
|
|
65
|
+
MachinesBuilt=機器建造次數
|
|
66
|
+
MachinesBuilt-tooltip=你在本服務器建造過機器的次數
|
|
67
|
+
MachinesRemoved=機器拆除次數
|
|
68
|
+
MachinesRemoved-tooltip=你在本服務器拆除過機器的次數
|
|
69
|
+
TilesBuilt=地磚建造次數
|
|
70
|
+
TilesBuilt-tooltip=你在本服務器建造過地磚的次數
|
|
71
|
+
TilesRemoved=地磚拆除次數
|
|
72
|
+
TilesRemoved-tooltip=你在本服務器拆除過地磚的次數
|
|
73
|
+
TreesDestroyed=樹木拆除次數
|
|
74
|
+
TreesDestroyed-tooltip=你在本服務器拆除過樹木的次數
|
|
75
|
+
OreMined=挖礦次數
|
|
76
|
+
OreMined-tooltip=你在本服務器挖掘礦的次數
|
|
77
|
+
ItemsCrafted=物品合成數
|
|
78
|
+
ItemsCrafted-tooltip=你在本服務器合成過物品的次數
|
|
79
|
+
ItemsPickedUp=物品拾起數
|
|
80
|
+
ItemsPickedUp-tooltip=你在本服務器起過物品的次數
|
|
81
|
+
Kills=撃殺數
|
|
82
|
+
Kills-tooltip=你在本服務器殺過的敵人數量
|
|
83
|
+
Deaths=死亡次數
|
|
84
|
+
Deaths-tooltip=你在本服務器死過的數量
|
|
85
|
+
DamageDealt=傷害量
|
|
86
|
+
DamageDealt-tooltip=你在本伺服器對敵人所造成的傷害量
|
|
87
|
+
DistanceTravelled=移動距離
|
|
88
|
+
DistanceTravelled-tooltip=你在本服務器的總移動距離
|
|
89
|
+
CapsulesUsed=膠囊使用次數
|
|
90
|
+
CapsulesUsed-tooltip=你在本服務器使用過膠囊的次數
|
|
91
|
+
EntityRepaired=機器維修次數
|
|
92
|
+
EntityRepaired-tooltip=你在本服務器維修過機器的次數
|
|
93
|
+
DeconstructionPlannerUsed=拆除規劃器使用次數
|
|
94
|
+
DeconstructionPlannerUsed-tooltip=你在本服務器使用過拆除規劃器的次數
|
|
95
|
+
MapTagsMade=地圖標籤數量
|
|
96
|
+
MapTagsMade-tooltip=你在本服務器放過的地圖標籤數量
|
|
97
|
+
DamageDeathRatio=傷害死亡比
|
|
98
|
+
DamageDeathRatio-tooltip=傷害除以死亡
|
|
99
|
+
KillDeathRatio=撃殺死亡比
|
|
100
|
+
KillDeathRatio-tooltip=撃殺除以死亡
|
|
101
|
+
SessionTime=平均遊玩時間
|
|
102
|
+
SessionTime-tooltip=平均遊玩時間
|
|
103
|
+
BuildRatio=建築比
|
|
104
|
+
BuildRatio-tooltip=建築次數除以拆除次數
|
|
105
|
+
RocketPerHour=每小時火箭發射次數
|
|
106
|
+
RocketPerHour-tooltip=火箭發射次數除以遊玩時間
|
|
107
|
+
TreeKillPerMinute=每分鐘樹木拆除數
|
|
108
|
+
TreeKillPerMinute-tooltip=樹木拆除數除以遊玩時間
|
|
109
|
+
NetPlayTime=淨遊玩時間
|
|
110
|
+
NetPlayTime-tooltip=遊玩時間減掛機時間
|
|
111
|
+
AFKTimeRatio=掛機時間比
|
|
112
|
+
AFKTimeRatio-tooltip=掛機時間除以遊玩時間
|
|
113
|
+
Locale=語言
|
|
114
|
+
Locale-tooltip=用戶介面語言
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
[expcore-data]
|
|
2
|
+
description-preference=允許寫入資料。
|
|
3
|
+
description-data=把用戶資料寫入電腦
|
|
4
|
+
arg-option="All", "Statistics", "Settings", "Required" 之中
|
|
5
|
+
set-preference=你的喜好已設定為 __1__ 。在你重新加入前將不會有任何改動。
|
|
6
|
+
get-preference=你的喜好為 __1__ 。使用 /set-preference 來更改,使用 /save-data 來獲得一份資料副本。
|
|
7
|
+
get-data=你的個人資料已寫入: factorio/script_output/expgaming_player_data.json
|
|
8
|
+
data-failed=無法載入你的個人資料,任何改動將不會保存。
|
|
9
|
+
data-restore=已載入你的個人資料,所有改動將會被保存。
|
|
10
|
+
preference=儲存喜好
|
|
11
|
+
preference-tooltip=那種資料將在退出時保存
|
|
12
|
+
preference-value-tooltip=使用 /set-preference 來更換儲存喜好
|
|
13
|
+
preference-All=所有資料都會被儲存
|
|
14
|
+
preference-Statistics=只有數據, 設定和資料會被儲存
|
|
15
|
+
preference-Settings=只有設定和資料會被儲存
|
|
16
|
+
preference-Required=只有需要的資料會被儲存
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
[player-list]
|
|
2
|
+
main-tooltip=用戶名單
|
|
3
|
+
open-action-bar=選項
|
|
4
|
+
close-action-bar=關閉選項
|
|
5
|
+
reason-confirm=確認原因
|
|
6
|
+
reason-entry=輸入原因
|
|
7
|
+
goto-player=傳送到用戶
|
|
8
|
+
bring-player=傳送用戶到自己
|
|
9
|
+
report-player=舉報用戶
|
|
10
|
+
warn-player=警告用戶
|
|
11
|
+
jail-player=監禁用戶
|
|
12
|
+
kick-player=踢除用戶
|
|
13
|
+
ban-player=封禁用戶
|
|
14
|
+
afk-time=__1__% 地圖時間\n上次移動: __2__
|
|
15
|
+
open-map=__1__ __2__\n__3__\n按下打開地圖
|
|
16
|
+
|
|
17
|
+
[warp-list]
|
|
18
|
+
main-caption=傳送陣清單 [img=info]
|
|
19
|
+
main-tooltip=傳送陣清單
|
|
20
|
+
sub-tooltip=傳送陣在 __1__ 秒內只能使用一次。 亦需在 __2__ 格之內使用\n__3__\n__4__\n__5__\n__6__\n__7__\n__8__
|
|
21
|
+
sub-tooltip-current= - __1__ 你目前的傳送陣;
|
|
22
|
+
sub-tooltip-connected= - __1__ 你可以到本傳送陣;
|
|
23
|
+
sub-tooltip-different= - __1__ 該傳送陣未連接;
|
|
24
|
+
sub-tooltip-cooldown= - __1__ 傳送冷卻中;
|
|
25
|
+
sub-tooltip-not_available= - __1__ 你不在傳送陣範圍;
|
|
26
|
+
sub-tooltip-bypass= - __1__ 你可以傳送到這裏;
|
|
27
|
+
too-close=無法新建傳送陣; 太接近 __1__ 了
|
|
28
|
+
too-close-to-water=無法新建傳送陣; 太接近水源了, 請移動 __1__ 格又或者填平該地方
|
|
29
|
+
too-close-to-entities=無法新建傳送陣; 太接近其他東西, 請移動 __1__ 格又或者拆除該東西
|
|
30
|
+
last-edit=最後由 __1__ 在 __2__ 更改\n按這在地圖上看
|
|
31
|
+
add-tooltip=新建傳送陣
|
|
32
|
+
confirm-tooltip=儲存更改
|
|
33
|
+
cancel-tooltip=放棄更改
|
|
34
|
+
edit-tooltip=現被 __1__ 修改中
|
|
35
|
+
edit-tooltip-none=現沒有被人修改
|
|
36
|
+
remove-tooltip=拆除傳送陣
|
|
37
|
+
timer-tooltip=請等 __1__ 秒才再次傳送
|
|
38
|
+
timer-tooltip-zero=你要等 __1__ 秒才可以再次傳送
|
|
39
|
+
goto-tooltip=到 X __1__ Y __2__
|
|
40
|
+
goto-bypass=到 X __1__ Y __2__, 繞行模式
|
|
41
|
+
goto-bypass-different-network=到 X __1__ Y __2__, 繞行模式 (不同網絡)
|
|
42
|
+
goto-same-warp=你已在該傳送陣
|
|
43
|
+
goto-different-network=該傳送陣未連接, 你可使用電纜連接
|
|
44
|
+
goto-cooldown=傳送冷卻中, 請等候冷卻
|
|
45
|
+
goto-disabled=你不在傳送陣, 請移至任意傳送陣
|
|
46
|
+
goto-edit=修改傳送陣圖案
|
|
47
|
+
|
|
48
|
+
[bonus]
|
|
49
|
+
description=取得 / 設定 Bonus 量。
|
|
50
|
+
arg-amount=Bonus 數量, 0 來停用。
|
|
51
|
+
set=你的 Bonus 已設為 __1__。
|
|
52
|
+
get=你的 Bonus 為 __1__。
|
|
53
|
+
perm=你沒有足夠權限設多過 __1__。
|
|
54
|
+
display-fmms=挖掘速度
|
|
55
|
+
display-fmms-tooltip=勢力挖掘速度
|
|
56
|
+
display-frs=跑步速度
|
|
57
|
+
display-frs-tooltip=勢力跑步速度
|
|
58
|
+
display-fcs=合成速度
|
|
59
|
+
display-fcs-tooltip=勢力合成速度
|
|
60
|
+
display-fisb=儲存位
|
|
61
|
+
display-fisb-tooltip=勢力儲存位
|
|
62
|
+
display-fhb=生命
|
|
63
|
+
display-fhb-tooltip=勢力生命
|
|
64
|
+
display-frdb=到達距離
|
|
65
|
+
display-frdb-tooltip=勢力到達距離
|
|
66
|
+
display-fwrsm=機械人速度
|
|
67
|
+
display-fwrsm-tooltip=勢力機械人速度
|
|
68
|
+
display-fwrbm=機械人電力
|
|
69
|
+
display-fwrbm-tooltip=勢力機械人電力
|
|
70
|
+
display-fwrsb=械人儲存
|
|
71
|
+
display-fwrsb-tooltip=勢力機械人儲存
|
|
72
|
+
display-ffrlm=機械人生命
|
|
73
|
+
display-ffrlm-tooltip=勢力戰鬥機械人生命時間
|
|
74
|
+
|
|
75
|
+
[vlayer]
|
|
76
|
+
main-tooltip=Vlayer 介面
|
|
77
|
+
description-pbr=使用 Vlayer 為玩家電池充電
|
|
78
|
+
description-vi=Vlayer 資訊
|
|
79
|
+
pbr-not-running=vlayer 沒有運行
|
|
80
|
+
display-item-solar=[img=entity/solar-panel] 太陽能板
|
|
81
|
+
display-item-accumulator=[img=entity/accumulator] 蓄電池
|
|
82
|
+
display-current-production=[virtual-signal=signal-P] 現時產能
|
|
83
|
+
display-sustained-production=[virtual-signal=signal-S] 持續產能
|
|
84
|
+
display-max-capacity=[virtual-signal=signal-C] 電池容量
|
|
85
|
+
display-current-capacity=[virtual-signal=signal-E] 電池電量
|
|
86
|
+
display-remaining-surface-area=[virtual-signal=signal-R] 餘下土地
|
|
87
|
+
display-item-solar-tooltip=太陽能板數量
|
|
88
|
+
display-item-accumulator-tooltip=蓄電池數量
|
|
89
|
+
display-current-production-tooltip=現時電力產能
|
|
90
|
+
display-sustained-production-tooltip=持續電力產能
|
|
91
|
+
display-max-capacity-tooltip=電池最大容量
|
|
92
|
+
display-current-capacity-tooltip=現時電池電量
|
|
93
|
+
display-remaining-surface-area-tooltip=餘下土地。 放入堆填來增加
|
|
94
|
+
steel-chest-detect=沒檢測到鋼箱
|
|
95
|
+
steel-chest-empty=鋼箱不是空的
|
|
96
|
+
control-refresh=刷新列表
|
|
97
|
+
control-see=查看介面
|
|
98
|
+
control-build=建造介面
|
|
99
|
+
control-remove=拆除介面
|
|
100
|
+
result-build=建造了
|
|
101
|
+
result-remove=拆除了
|
|
102
|
+
result-interface-location=__1__ 介面在 __2__
|
|
103
|
+
interface-result=__1__ 在 __2__ __3__ __4__ 介面
|
|
104
|
+
result-unable=無法建造 __1__ 介面,因 __2__
|
|
105
|
+
result-multiple=檢測到多個鋼箱
|
|
106
|
+
result-limit=超出最大限制
|
|
107
|
+
result-space=空間不足
|
|
108
|
+
control-type-energy=電力
|
|
109
|
+
control-type-circuit=回路
|
|
110
|
+
control-type-storage-input=放入箱
|
|
111
|
+
control-type-storage-output=提取箱
|
|
112
|
+
power-on-space-research=你要研究 [technology=__1__] 在 __2__ 級 才可使用太空平台 vlayer 功能。
|
|
113
|
+
enter=現在進入 vlayer 區域選擇
|
|
114
|
+
exit=已進入 vlayer 區域選擇
|
|
115
|
+
|
|
116
|
+
[toolbar]
|
|
117
|
+
main-caption=工具箱
|
|
118
|
+
main-tooltip=工具箱設定\n選上來設定喜好
|
|
119
|
+
reset=重設
|
|
120
|
+
toggle=啟用喜好
|
|
121
|
+
move-up=向上
|
|
122
|
+
move-down=向下
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
[links]
|
|
2
|
+
discord=https://discord.explosivegaming.nl
|
|
3
|
+
website=https://www.explosivegaming.nl
|
|
4
|
+
status=https://status.explosivegaming.nl
|
|
5
|
+
github=https://github.com/explosivegaming/ExpCluster
|
|
6
|
+
patreon=https://www.patreon.com/ExpGaming
|
|
7
|
+
|
|
8
|
+
[info]
|
|
9
|
+
players-online=現在有 __1__ 人在線
|
|
10
|
+
total-map-time=地圖時間為 __1__
|
|
11
|
+
discord=加入社群: https://discord.explosivegaming.nl
|
|
12
|
+
website=訪問網站: https://www.explosivegaming.nl
|
|
13
|
+
status=伺服器狀態: https://status.explosivegaming.nl
|
|
14
|
+
github=增加功能或回報錯誤: https://github.com/explosivegaming/ExpCluster
|
|
15
|
+
patreon=支持我們: https://www.patreon.com/ExpGaming
|
|
16
|
+
custom-commands=這裹使用了自制指令,如 /tag 和 /me。可使用 /chelp 查看更多。
|
|
17
|
+
read-readme=確保你已閱讀相關資訊。按左上 i 圖標可再次查看。
|
|
18
|
+
softmod=這裹用了自設情境,是一種軟裝模組。
|
|
19
|
+
redmew=
|
|
20
|
+
lhd=列車必須是左則通行。這是本服務器長久以來的規則。
|
|
21
|
+
|
|
22
|
+
[warnings]
|
|
23
|
+
received=你已被 __1__ 警告了,現在共有 __2__ 個警告。 __3__
|
|
24
|
+
pre-kick=這是在被踢離之前的最後警告。
|
|
25
|
+
kick=你已因為被警告太多次而被請離,不過你之後還是可以回來的。
|
|
26
|
+
pre-pre-ban=按照你的行為,你有可能會被封禁。
|
|
27
|
+
pre-ban=這是在被封禁之前的最後警告。
|
|
28
|
+
ban=你已因為被警告太多次而被封禁; 可以到 __1__ 申訴.
|
|
29
|
+
script-warning=這是系統發出的自動警告 (__1__/__2__)
|
|
30
|
+
script-warning-removed=系統發出的自動警告已失效 (__1__/__2__)
|
|
31
|
+
script-warning-limit=__1__ 已被系統發出了一則自動警告。
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
[join-message]
|
|
2
|
+
description-add=設定 / 取得你的加入信息。
|
|
3
|
+
description-remove=移除你的加入信息。
|
|
4
|
+
arg-message=你的加入信息。
|
|
5
|
+
greet=[color=0,1,0] 歡迎來到 EXP 的服務器! 若果你喜歡本服務器可加入 DISCORD: __1__ [/color]
|
|
6
|
+
message-set=你的加入信息已更新。
|
|
7
|
+
message-get=你的加入信息為: __1__
|
|
8
|
+
message-cleared=你的加入信息已清除。
|
|
9
|
+
|
|
10
|
+
[quickbar]
|
|
11
|
+
saved=你的工具列已儲存。
|
|
12
|
+
|
|
13
|
+
[exp-required]
|
|
14
|
+
Warnings=警告
|
|
15
|
+
Warnings-tooltip=你所有收到的警告
|
|
16
|
+
Warnings-value-tooltip=你所有收到的警告
|
|
17
|
+
|
|
18
|
+
[exp-settings]
|
|
19
|
+
Colour=顏色
|
|
20
|
+
Colour-tooltip=你的人物顏色
|
|
21
|
+
Colour-value-tooltip=使用 /color 來更換你的人物顏色
|
|
22
|
+
JoinMessage=加入信息
|
|
23
|
+
JoinMessage-tooltip=你加入時所顯示的信息
|
|
24
|
+
JoinMessage-value-tooltip=使用 /join-message 來更換加入信息
|
|
25
|
+
QuickbarFilters=快捷欄
|
|
26
|
+
QuickbarFilters-tooltip=快捷欄的選項
|
|
27
|
+
QuickbarFilters-value-tooltip=使用 /save-quickbar 來更換快捷欄的選項
|
|
28
|
+
UsesAlt=細節模式
|
|
29
|
+
UsesAlt-tooltip=你加入時是否使用細節模式
|
|
30
|
+
UsesAlt-value-tooltip=按下 __CONTROL__show-info__ 來更改
|
|
31
|
+
UsesServerUps=服務器更新數 (SUPS)
|
|
32
|
+
UsesServerUps-tooltip=現在是否顯示服務器更新數 (SUPS)
|
|
33
|
+
UsesServerUps-value-tooltip=使用 /server-ups 來更換顯示
|
|
34
|
+
Tag=你的人物標籤
|
|
35
|
+
Tag-tooltip=你的人物標籤
|
|
36
|
+
Tag-value-tooltip=使用 /tag 來更換你的人物標籤
|
|
37
|
+
TagColor=人物標籤顏色
|
|
38
|
+
TagColor-tooltip=你的人物標籤顏色
|
|
39
|
+
TagColor-value-tooltip=使用 /tag-color 來更換你的人物標籤顏色
|
|
40
|
+
Bonus=人物附加屬性
|
|
41
|
+
Bonus-tooltip=你的人物附加屬性
|
|
42
|
+
Bonus-value-tooltip=使用 /bonus 來更改
|
|
43
|
+
HasEnabledDecon=快速拆除樹木
|
|
44
|
+
ToolbarState=工具箱
|
|
45
|
+
ToolbarState-tooltip=次序和喜愛項目
|
|
46
|
+
ToolbarState-value-tooltip=此值在離開時自動計算
|
|
47
|
+
|
|
48
|
+
[exp-statistics]
|
|
49
|
+
MapsPlayed=地圖遊玩次數
|
|
50
|
+
MapsPlayed-tooltip=你在本服務器遊玩過的地圖數
|
|
51
|
+
JoinCount=登入次數
|
|
52
|
+
JoinCount-tooltip=你在本服務器遊玩的次數
|
|
53
|
+
Playtime=遊玩時間
|
|
54
|
+
Playtime-tooltip=你在本服務器遊玩的時間
|
|
55
|
+
AfkTime=掛機時間
|
|
56
|
+
AfkTime-tooltip=你在本服務器掛機的時間
|
|
57
|
+
ChatMessages=傳送信息次數
|
|
58
|
+
ChatMessages-tooltip=你在本服務器發送信息的次數
|
|
59
|
+
CommandsUsed=使用指令次數
|
|
60
|
+
CommandsUsed-tooltip=你在本服務器使用指令的次數
|
|
61
|
+
RocketsLaunched=火箭發射次數
|
|
62
|
+
RocketsLaunched-tooltip=你在本服務器在線時所發射過火箭的次數
|
|
63
|
+
ResearchCompleted=研究次數
|
|
64
|
+
ResearchCompleted-tooltip=你在本服務器在線時完成研究的次數
|
|
65
|
+
MachinesBuilt=機器建造次數
|
|
66
|
+
MachinesBuilt-tooltip=你在本服務器建造過機器的次數
|
|
67
|
+
MachinesRemoved=機器拆除次數
|
|
68
|
+
MachinesRemoved-tooltip=你在本服務器拆除過機器的次數
|
|
69
|
+
TilesBuilt=地磚建造次數
|
|
70
|
+
TilesBuilt-tooltip=你在本服務器建造過地磚的次數
|
|
71
|
+
TilesRemoved=地磚拆除次數
|
|
72
|
+
TilesRemoved-tooltip=你在本服務器拆除過地磚的次數
|
|
73
|
+
TreesDestroyed=樹木拆除次數
|
|
74
|
+
TreesDestroyed-tooltip=你在本服務器拆除過樹木的次數
|
|
75
|
+
OreMined=挖礦次數
|
|
76
|
+
OreMined-tooltip=你在本服務器挖掘礦的次數
|
|
77
|
+
ItemsCrafted=物品合成數
|
|
78
|
+
ItemsCrafted-tooltip=你在本服務器合成過物品的次數
|
|
79
|
+
ItemsPickedUp=物品拾起數
|
|
80
|
+
ItemsPickedUp-tooltip=你在本服務器起過物品的次數
|
|
81
|
+
Kills=撃殺數
|
|
82
|
+
Kills-tooltip=你在本服務器殺過的敵人數量
|
|
83
|
+
Deaths=死亡次數
|
|
84
|
+
Deaths-tooltip=你在本服務器死過的數量
|
|
85
|
+
DamageDealt=傷害量
|
|
86
|
+
DamageDealt-tooltip=你在本伺服器對敵人所造成的傷害量
|
|
87
|
+
DistanceTravelled=移動距離
|
|
88
|
+
DistanceTravelled-tooltip=你在本服務器的總移動距離
|
|
89
|
+
CapsulesUsed=膠囊使用次數
|
|
90
|
+
CapsulesUsed-tooltip=你在本服務器使用過膠囊的次數
|
|
91
|
+
EntityRepaired=機器維修次數
|
|
92
|
+
EntityRepaired-tooltip=你在本服務器維修過機器的次數
|
|
93
|
+
DeconstructionPlannerUsed=拆除規劃器使用次數
|
|
94
|
+
DeconstructionPlannerUsed-tooltip=你在本服務器使用過拆除規劃器的次數
|
|
95
|
+
MapTagsMade=地圖標籤數量
|
|
96
|
+
MapTagsMade-tooltip=你在本服務器放過的地圖標籤數量
|
|
97
|
+
DamageDeathRatio=傷害死亡比
|
|
98
|
+
DamageDeathRatio-tooltip=傷害除以死亡
|
|
99
|
+
KillDeathRatio=撃殺死亡比
|
|
100
|
+
KillDeathRatio-tooltip=撃殺除以死亡
|
|
101
|
+
SessionTime=平均遊玩時間
|
|
102
|
+
SessionTime-tooltip=平均遊玩時間
|
|
103
|
+
BuildRatio=建築比
|
|
104
|
+
BuildRatio-tooltip=建築次數除以拆除次數
|
|
105
|
+
RocketPerHour=每小時火箭發射次數
|
|
106
|
+
RocketPerHour-tooltip=火箭發射次數除以遊玩時間
|
|
107
|
+
TreeKillPerMinute=每分鐘樹木拆除數
|
|
108
|
+
TreeKillPerMinute-tooltip=樹木拆除數除以遊玩時間
|
|
109
|
+
NetPlayTime=淨遊玩時間
|
|
110
|
+
NetPlayTime-tooltip=遊玩時間減掛機時間
|
|
111
|
+
AFKTimeRatio=掛機時間比
|
|
112
|
+
AFKTimeRatio-tooltip=掛機時間除以遊玩時間
|
|
113
|
+
Locale=語言
|
|
114
|
+
Locale-tooltip=用戶介面語言
|