Ne TS has written
ich hab eine frage und zwar wenn ich einen script machen kann wie kann ich machen das ich einen script nur für bestimmte unrealsoftware-ids freigeben kann?z.B. bei diesem code
könnte mir jemand dem komletten code mit der id 16689 geben? thx im voraus(kann frühstens donnerstag antworten)
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
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
addhook("say","attack") function attack(id,txt) if(txt=="!admo") then freeimage(id) parse("speedmod "..id.." 100") parse("setmaxhealth "..id.." 250") parse("equip "..id.." 88") parse("equip "..id.." 83") parse("equip "..id.." 45") parse("equip "..id.." 47") parse("equip "..id.." 46") parse("equip "..id.." 41") parse("equip "..id.." 52") parse("equip "..id.." 52") parse("equip "..id.." 51") parse("equip "..id.." 85") parse("equip "..id.." 69") id1=image("gfx/flare2.bmp",0,0,100+id) imagescale(id1,1,1) imageblend(id1,0) imagealpha(id1,1.0) if (player(id,"team") == 2) then imagecolor(id1,255,255,255) end end end
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
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
admin = {} function IDS(id) for _, usgn in ipairs(admin) do if player(id,'usgn') == usgn then return true end end return false end addhook("say","attack") function attack(id,txt) if(txt=="!admo") then 	if IDS(id) then freeimage(id) parse("speedmod "..id.." 100") parse("setmaxhealth "..id.." 250") parse("equip "..id.." 88") parse("equip "..id.." 83") parse("equip "..id.." 45") parse("equip "..id.." 47") parse("equip "..id.." 46") parse("equip "..id.." 41") parse("equip "..id.." 52") parse("equip "..id.." 52") parse("equip "..id.." 51") parse("equip "..id.." 85") parse("equip "..id.." 69") id1=image("gfx/flare2.bmp",0,0,100+id) imagescale(id1,1,1) imageblend(id1,0) imagealpha(id1,1.0) if (player(id,"team") == 2) then imagecolor(id1,255,255,255) end end end end