-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtweets.php
115 lines (113 loc) · 2.33 KB
/
tweets.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<?php
return [
[
'text' => 'Yes',
'probability' => 0,
'type' => 'yes',
],
[
'text' => 'No',
'probability' => 50,
'type' => 'no',
],
[
'text' => 'I don’t know! I’m just a bot! What do you want from me? ',
'probability' => 5,
'type' => 'no',
],
[
'text' => 'Who cares',
'probability' => 5,
'type' => 'no',
],
[
'text' => 'Oh come on',
'probability' => 5,
'type' => 'no',
],
[
'text' => 'If you think about it: we’re all dying.',
'probability' => 5,
'type' => 'no',
],
[
'text' => 'You wish!',
'probability' => 10,
'type' => 'no',
],
[
'text' => 'Dunno',
'probability' => 2,
'type' => 'no',
],
[
'text' => 'Try again later.',
'probability' => 2,
'type' => 'no',
],
[
'text' => 'rand(0, 1) ? \'Yes\' : \'No\'',
'probability' => 5,
'type' => 'no',
],
[
'text' => 'Don’t count on it.',
'probability' => 5,
'type' => 'no',
],
[
'text' => 'Whatever',
'probability' => 5,
'type' => 'no',
],
[
'text' => 'You can’t be dying if you’re already dead. I’m talking to you Ruby.',
'probability' => 1,
'type' => 'no',
],
[
'text' => 'Better not tell you now.',
'probability' => 2,
'type' => 'no',
],
[
'text' => 'Very doubtful.',
'probability' => 2,
'type' => 'no',
],
[
'text' => 'My reply is no.',
'probability' => 2,
'type' => 'no',
],
[
'text' => 'My sources say no.',
'probability' => 2,
'type' => 'no',
],
[
'text' => 'Without a doubt.',
'probability' => 0,
'type' => 'no',
],
[
'text' => 'It is certain.',
'probability' => 0,
'type' => 'no',
],
[
'text' => 'As I see it, yes.',
'probability' => 0,
'type' => 'no',
],
[
'text' => 'Reply hazy, try again.',
'probability' => 5,
'type' => 'no',
],
[
'text' => 'Cannot predict now.',
'probability' => 5,
'type' => 'no',
],
];