Forum

> > CS2D > Scripts > i need a lua
ForenübersichtCS2D-Übersicht Scripts-ÜbersichtEinloggen, um zu antworten

Englisch i need a lua

2 Antworten
Zum Anfang Vorherige 1 Nächste Zum Anfang

verschoben i need a lua

cELL
User Off Offline

Zitieren
Usgn hello friends I need help with a script-lua..
I want to know if they help me, I need that each 20 rounds will restart automatically. and if can have a Hudtxt that tell them rounds would be best, I need it, thanks to all

Admin/Mod Kommentar

Wrong section, this is related to CS2D - Scripts. Moved. /user GeoB99

alt Re: i need a lua

Cure Pikachu
User Off Offline

Zitieren
1
2
3
4
5
6
7
8
9
10
11
12
rnd = 0
parse('hudtxt 0 "Round '..rnd..'" 320 64 1')

addhook("startround","_startrnd")
function _startrnd()
	rnd = rnd + 1
	parse('hudtxt 0 "Round '..rnd..'" 320 64 1')
	if rnd > 20 then
		parse("restart")
		rnd = 0
	end
end
Something like this, I suppose.
Zum Anfang Vorherige 1 Nächste Zum Anfang
Einloggen, um zu antworten Scripts-ÜbersichtCS2D-ÜbersichtForenübersicht