1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
addhook("clientdata", "checkfile") function checkfile(id, mode, data1, data2) if (mode == 4) then if (checksumfile("sfx/player/hit1.wav") ~= data2) then parse('kick '..id..' "Você está usando um arquivo modificado!"') elseif (checksumfile("sfx/player/hit2.wav") ~= data2) then parse('kick '..id..' "Você está usando um arquivo modificado!"') elseif (checksumfile("sfx/player/hit3.wav") ~= data2) then parse('kick '..id..' "Você está usando um arquivo modificado!"') end end end addhook("join", "reqcheck") function reqcheck(id) reqcld(id, 4, "sfx/player/hit1.wav") reqcld(id, 4, "sfx/player/hit2.wav") reqcld(id, 4, "sfx/player/hit3.wav") end