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
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
------------------- *Made by: FN_Linkin Park *Date: 7/2/11 *Dont copy/Steal or edit this script ------------------- addhook("say","air") function air(id,text) if (text=="I need help")then if player(id,"score") == 10 msg2(id,"You recieved an airstrike") msg2(id,"press f2 to mark your objective") msg2(id,"Say objective ready to destroy your objective") end end addhook("serveraction","boom") function boom(id,action) if action == 1 then freeimage(id)id1=image("gfx/weapons/bomb.bmp",player(id,"x"),player(id,"y"),0) imagescale(id1,1,1) imageblend(id1,0) imagealpha(id1,1.0) end end addhook("say","ready") function ready(id,text) if(text=="objective ready") then <-- i dont know what else O_o
edited 1×, last 08.02.11 03:36:14 pm