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
function initArray(size,value)
local t = {}
for i=1, size do
t[i] = value
end
return t
end
tempnum = initArray(32,0)
addhook("spawn","wingwing")
function wingwing(id)
tempnum[id] = math.random(1,8)
if tempnum[id]==1 then
freeimage(id)
id1=image("gfx/Wings Mods By Nahuelpet ( W4R )/dragon.png",1,1,200+id)
elseif tempnum[id]==2 then
freeimage(id)
id1=image("gfx/Wings Mods By Nahuelpet ( W4R )/evil.png",1,1,200+id)
elseif tempnum[id]==3 then
freeimage(id)
id1=image("gfx/Wings Mods By Nahuelpet ( W4R )/Angel.bmp",1,1,200+id)
elseif tempnum[id]==4 then
freeimage(id)
id1=image("gfx/Wings Mods By Nahuelpet ( W4R )/Cyborg.png",1,1,200+id)
elseif tempnum[id]==5 then
freeimage(id)
id1=image("gfx/Wings Mods By Nahuelpet ( W4R )/void_angel.png",1,1,200+id)
elseif tempnum[id]==6 then
freeimage(id)
id1=image("gfx/Wings Mods By Nahuelpet ( W4R )/Gold.png",1,1,200+id)
elseif tempnum[id]==7 then
freeimage(id)
id1=image("gfx/Wings Mods By Nahuelpet ( W4R )/capa.png",1,1,200+id)
elseif tempnum[id]==8 then
freeimage(id)
id1=image("gfx/Wings Mods By Nahuelpet ( W4R )/Phoenix_set.png",1,1,200+id)
elseif tempnum[id]==9 then
freeimage(id)
end
end