Fallen London Action CP Change calculator
 Share
This version of Google Chrome is no longer supported. Please upgrade to a supported browser.Dismiss

View only
 
 
ABCDEFGHIJKLMNOPQRSTUVWXYZ
1
How to use: Go to "File" and select "Make a Copy". Name it whatever you want and hit OK, now you can make edits to your private copy.
2
The following instructions are for Chrome, other browsers will have slightly different steps:
3
First, make sure you have the developer tools open before the action you want to check.
4
I make it a habit to have them open at all times, but dragged down so they're out of the way.
5
6
The shortcut on Chrome is Ctrl-Shift-I, or you can find it in the menu under "More tools". By default, as long as it's open, all network activity in the tab will be recorded (and shown under "Network".)
7
8
When you do an action on a card or storylet, the result of the action will come back from the server in "choosebranch". For social actions, it's "sendinternalsocialact".
9
Select the request (make sure it's the POST and not the OPTIONS request - sometimes there are two), then select "preview" for pretty-printing the response. (See screenshot below.)
10
11
You want the field messages.standardMessages[n], where n is the index of the quality in the results. In this example, there are 4 things hapenning, so there are 4 elements in standardMessages.
12
We care about Watchful, which was the 2nd (1, with zero-indexing), so n=1.
13
The four named fields are inside, copy them verbatim (in the order listed) to the columns in the Calculator tab.
14
15
In the Calculator tab, there are some hidden columns for internal calculations.
16
The Starting/Ending deviation columns are for error-checking, if these turn red either you copied something wrong, or there is an error in the calculator.
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
Loading...