Forum

> > CS2D > Scripts > Script Money Full Please*
Forums overviewCS2D overview Scripts overviewLog in to reply

English Script Money Full Please*

7 replies
To the start Previous 1 Next To the start

old Script Money Full Please*

flnxL
User Off Offline

Quote
I am Brazilian and I'm sorry for bad english ..

I need that LUA SCRIPT that in all rounds of 16,000 players earn money .... someone pass me the link to download? Thank you.

old Re: Script Money Full Please*

Starkkz
Moderator Off Offline

Quote
1
2
3
4
5
6
addhook("startround","onStart")
function onStart()
	for _, id in pairs(player(0,"tableliving")) do
		parse("setmoney "..id.." 16000")
	end
end
Place it in sys/lua/autorun folder.

old Re: Script Money Full Please*

sheeL
User Off Offline

Quote
1
2
3
4
5
6
7
8
9
addhook("say","OnSay")
function OnSay(id,text)
if string.lower(text) == "!reset" then
	parse("setscore "..id.." 0")
	parse("setdeaths "..id.." 0")
	msg2(id,"©255000255Reseted !")
	return 1 -- dont appears on chat
	end
end

old Re: Script Money Full Please*

Shawni
User Off Offline

Quote
Since you are brazilian, Use this
1
2
3
4
5
6
7
8
addhook("say","reset") 
function reset(id,txt) 
  if(txt=="!reset") then
parse ("setscore "..id.." ..sc")
parse ("setdeaths "..id.." ..sc")
parse ("sv_msg2 "..id.." ©000255000Score Resetado!")
	end 
end
Copied from awp_grey lua or i don't know.
To the start Previous 1 Next To the start
Log in to reply Scripts overviewCS2D overviewForums overview