-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathhaxballbot.js
154 lines (131 loc) · 4.45 KB
/
haxballbot.js
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
//İbrahim Ercan
var room = HBInit({ roomName: "3v3,YS,istatistikli", maxPlayers: 8 , playerName: "Host", public: true});
room.setDefaultStadium("Big");
room.setScoreLimit(3);
room.setTimeLimit(3);
room.setTeamsLock(true);
var admin_nick = "ibotheperfect"
var players = [];
var blue_team_players = [];
var red_team_players = [];
var spec_team_players = [];
var stats = {};
var last_toucher;
var second_toucher;
function compare(a,b) {
if (stats[a.id].rate < stats[b.id].rate)
return 1;
if (stats[a.id].rate > stats[b.id].rate)
return -1;
if (stats[a.id].rate == stats[b.id].rate){
if (stats[a.id].win < stats[b.id].win)
return 1;
if (stats[a.id].win > stats[b.id].win)
return -1;
}
return 0;
}
function compare_goal(a,b) {
if (stats[a.id].score < stats[b.id].score)
return 1;
if (stats[a.id].score > stats[b.id].score)
return -1;
if (stats[a.id].score == stats[b.id].score){
if (stats[a.id].assist < stats[b.id].assist)
return 1;
if (stats[a.id].assist > stats[b.id].assist)
return -1;
}
return 0;
}
function printPlayerStat(player){
room.sendChat(player.name + " Win: "+ stats[player['id']].win + ", Loss: " + stats[player['id']].lose + ", %: " + parseInt(stats[player['id']].rate) + ", Goal: " + stats[player['id']].score + ", Assist: " + stats[player['id']].assist);
}
function printHelp(){
room.sendChat("Komutlar: !best, !all, !top3, !me, !goalking, !help");
}
room.onPlayerJoin = function(player) {
//set admin
players = room.getPlayerList().filter((player) => player.id != 0 );
if (player.name == admin_nick && players.find((player) => player.admin) == null ){
room.setPlayerAdmin(player.id, true);
}
//initialize score
stats[player.id] = {}
stats[player.id].win = 0;
stats[player.id].lose = 0;
stats[player.id].score = 0;
stats[player.id].rate = 0;
stats[player.id].assist = 0;
room.sendChat("Hoşgeldin "+ player.name);
printHelp();
}
room.onTeamVictory = function(scores) {
players = room.getPlayerList().filter((player) => player.id != 0 );
spec_team_players = room.getPlayerList().filter((player) => player.team == 0 );
blue_team_players = room.getPlayerList().filter((player) => player.team == 2 );
red_team_players = room.getPlayerList().filter((player) => player.team == 1 );
var i;
if (scores.red > scores.blue){ //red win
var winner_team = red_team_players;
var loser_team = blue_team_players;
}
else{ //blue win
var winner_team = blue_team_players;
var loser_team = red_team_players;
}
for (i = 0; i < loser_team.length; i++) {
stats[loser_team[i]['id']].lose += 1;
stats[loser_team[i]['id']].rate = 100 * stats[loser_team[i]['id']].win / (stats[loser_team[i]['id']].win + stats[loser_team[i]['id']].lose)
}
for (i = 0; i < winner_team.length; i++) {
stats[winner_team[i]['id']].win += 1;
stats[winner_team[i]['id']].rate = 100 * stats[winner_team[i]['id']].win / (stats[winner_team[i]['id']].win + stats[winner_team[i]['id']].lose)
printPlayerStat(winner_team[i]);
}
}
room.onPlayerChat = function(player, message) {
players = room.getPlayerList().filter((player) => player.id != 0 );
var i;
if (message == "!all"){
for (i = 0; i < players.length; i++) {
printPlayerStat(players[i]);
}
}
else if (message == "!best"){
players.sort(compare);
printPlayerStat(players[0]);
}
else if (message == "!top3"){
players.sort(compare);
for (i = 0; i < 3; i++) {
if (players[i]) printPlayerStat(players[i]);
}
}
else if (message == "!me"){
printPlayerStat(player);
}
else if (message == "!goalking"){
players.sort(compare_goal);
printPlayerStat(players[0]);
}
else if (message == "!help"){
printHelp();
}
}
room.onPlayerBallKick = function(player) {
second_toucher = last_toucher;
last_toucher = player;
}
room.onTeamGoal = function(team){
var str = "";
if (team == last_toucher.team){
stats[last_toucher.id].score += 1;
str = "GOOOOL!!! " + last_toucher.name + " attı. ";
if (second_toucher && team == second_toucher.team && second_toucher.id != last_toucher.id ){
stats[second_toucher.id].assist += 1;
str += "Asist " + second_toucher.name;
}
room.sendChat(str);
}
}