Forum

> > CS2D > Scripts > HUD Img error.
ForenübersichtCS2D-Übersicht Scripts-ÜbersichtEinloggen, um zu antworten

Englisch HUD Img error.

4 Antworten
Zum Anfang Vorherige 1 Nächste Zum Anfang

verschoben HUD Img error.

4Vendetta
User Off Offline

Zitieren
Hi, someone can tell me how I make this works in Standart?
It only works in DM and TDM..
1
2
3
4
5
6
local id=image("gfx/4V/newradar.png",0,0,2)
imagecolor(id,255,0,0)
imageblend(id,1)
imagealpha(id,0.5)
imagescale(id,2,3)
imagepos(id,30,30,45)

alt Re: HUD Img error.

Yamaxanadu
User Off Offline

Zitieren
If it already works in DM and TDM, it also works in standard, you just done something wrong in the making of the server

That, or Standard is hardcoded, it is, right?

alt Re: HUD Img error.

Apache uwu
User Off Offline

Zitieren
Make sure that this is under a startround hook. All images are removed on round start.

1
2
3
4
5
6
7
8
9
10
addhook("startround","_startround")

function _startround()
	local id=image("gfx/4V/newradar.png",0,0,2)
	imagecolor(id,255,0,0)
	imageblend(id,1)
	imagealpha(id,0.5)
	imagescale(id,2,3)
	imagepos(id,30,30,45)
end
Zum Anfang Vorherige 1 Nächste Zum Anfang
Einloggen, um zu antworten Scripts-ÜbersichtCS2D-ÜbersichtForenübersicht