1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13
addhook("spawn","_spawn") function _spawn(id) local team=player(id,"team") if team==1 then p=image("gfx/4V/'T'..math.random(1, 3)..'.bmp',1,0,200+id,0) parse("speedmod "..id.." 10") elseif team==2 then parse("speedmod "..id.." -10") p=image("gfx/4V/'CT'..math.random(1, 3)..'.bmp',1,0,200+id,0) end end
