Forum
Scripts
Lua Scripts/Questions/Help@brk753951: that's very simple
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
minutecounter=0
addhook("startround","start")
function start()
	minutecounter=0
end
addhook("minute","minute")
function minute()
	minutecounter=minutecounter+1
	if (minutecounter>=30) then
		parse("restart")
	end
end
DC has written
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
minutecounter=0
addhook("minute","minute")
function minute()
	minutecounter=minutecounter+1
	if (minutecounter>=30) then
		minutecounter = 0 -- <------------------
		parse("restart")
	end
end
So would be a little shorter.
I need a script when you press like a button called hm1
then a menu shows up
and a script when you walk over X 1000 and Y 1000 you die
and i need Payday Script 500money per minute
http://unrealsoftware.de/files_show.php?file=1748
menu
-----
1-medikit(give 100healt. price is 100dollar)
2-.... (i write other here. ineed only see how to make this :D)
3-.....
4-......
5-.......
7-.....
8-....
9-nextpage
2.page
----
i need admin panel and make this usgn)(only admin and other usgn)
1-teleport ..x....y....(i write x and y
2-max healt 250
3-give laser and super armor
4-.....
5.....
ineed this pls
and thanks admin and other because all help
but i must have this
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
addhook("team","name_team")
function name_team(id)
pname = player(id,"name")
if (player(id,"team") == 2) then
parse("setname "..id.." [CT]"..pname)
elseif (player(id,"team") == 1) then
parse("setname "..id.." [TT]"..pname)
elseif (player(id,"team") == 0) then
parse("setname "..id.." [SPEC]"..pname)
end
end
But this has some bugs when you join TT your name will be [TT][SPEC]NAME
and so on imma work on it
1
2
3
4
5
6
2
3
4
5
6
t = ""
for word in string.gmatch("[TT] some name", "%s.+") do
	t = t..word
end
t = t:sub(2, t:len())
print(t)
Use that to help you get there name. Just put a space between [TT]/[CT]/[SPEC] and the players name.
and more than 16000$ money
1
2
3
4
2
3
4
money_array = {}
for i = 1, 32 do
	money_array[i] = player(i, "money") or 0
end
Weiwen maked a lua but it not realistic...

Red line weiwens script...
i want Green line.. Like real car...
A man maked it but i dont remember hid name.
Are you make it?
I need a script when you press like a button called hm1
then a menu shows up
and a script when you walk over X 1000 and Y 1000 you die
Lua Scripts/Questions/Help


Offline