Forum
CS2D Scripts Skin luaaSkin luaa
10 replies 1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
2
3
4
5
6
7
8
9
10
11
12
13
14
hatimg={} addhook('join','_join') function _join(id) hatimg[id]=0 end addhook('spawn','_spawn') function _spawn(id) if player(id,"team")==2 then freeimage(hatimg[id]) hatimg[id] = image('gfx/police.bmp', 1, 1, 200 + id) end end
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
hat = {} addhook("spawn","_spawn") function _spawn(id) if player(id,"team") == 2 then hat[id] = image("gfx/police.bmp",2,1,200+ id) end end addhook("die","_die") function _die(vic,id) if hat[vic] ~= nil then freeimage(hat[vic]) hat[vic] = nil end end
DefuseKIT has written
@ KingShadow: doesnt work :// can anyone try to give me other code?
DefuseKIT I do not see any error in that code, you should check if you have the name of hat equal to the text... maybe it does not have the image in the folder "gfx / police.bmp" or maybe the image is .png
BTW I tried with terrorists same, gfx/inmate.bmp.
if player(id,"team") == 1 and "gfx/inmate.bmp",2,1,200+ id
and also _spawn to _spawn2 but it doesnt work
1