Forum

> > CS2D > Scripts > Ideas for new Lua scripts?
Forums overviewCS2D overview Scripts overviewLog in to reply

English Ideas for new Lua scripts?

23 replies
Page
To the start Previous 1 2 Next To the start

old Re: Ideas for new Lua scripts?

Rainoth
Moderator Off Offline

Quote
Original and easy. Nope, you won't get any ideas for such as people would make it themselves if they had such ideas.

old Re: Ideas for new Lua scripts?

Marcell
Super User Off Offline

Quote
Please...
For every newcomers!
Do not make such a needless thread.. Be creative try to figure out something new and custom..
Everybody hate those users who create a thread like this..

old Re: Ideas for new Lua scripts?

Pagyra
User Off Offline

Quote
Real snipe - if the player is in sniper mode - move it scope by sinusoidal circle
Real radio - if you are near the player of the other team then you hear the other team's radio
Real explosion - player pushes away from the blast site if it is nearby.

Try to do all the simple and optimized, commenting in detail

old Re: Ideas for new Lua scripts?

Pagyra
User Off Offline

Quote
there is many ideas - it just takes a little imagination exercise
Such as he grenade, as i say earlier:
- player pushes away from the blast site if it is nearby.
- you can create multiple (3-4) images(or fire effect) of shrapnel that will fly in a random direction with a short distance
- add stun sounds and echo sound to other player which are enough far
- add some effects for all type grenades as is in this video

old Re: Ideas for new Lua scripts?

Yates
Reviewer Off Offline

Quote
user Marcell has written
Everybody hate those users who create a thread like this..

To be honest no one cares. By the way, let me imply that "Everyone hates those users that change their name to Salad Fingers."

@user AlcatrazZ: Not the best place to post this, go to the Minecraft script and see if any one in the comments says that they will be using it. They can help. Or create a thread with specific errors, but never to just "ask for help."

old Re: Ideas for new Lua scripts?

Kirito2K
User Off Offline

Quote
RandomTroller has written
Cool messaging system (like in emails)


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
Admins = {120840}
tagMode = {}



addhook("say","adminsay")
function adminsay(id,txt)
for _, usgn in ipairs(Admins) do
if player(id,'usgn') == usgn and tagMode[id]==1 then
msg("©2 015 532"..player(id,"name").." [Adm] "..txt)
return 1
else
for _, usgn in ipairs(Admins) do
if player(id,'usgn') == usgn and tagMode[id]==0 then
msg("©2 015 532"..player(id,"name").." "..txt)
return 1
end
end
end
end
end

addhook("join","_join")
function _join(id)
for _, usgn in ipairs(Admins) do
if player(id,'usgn') == usgn then
tagMode[id]=0
	end
end

addhook("serveraction","adminaction")
function adminaction(id,b)
if b==1 and tagMode[id]==0 then
msg2(id,"©255210102Tag is on")
tagMode[id]=1
elseif b==1 and tagMode[id]==1 then
msg2(id,"©255210102Tag is off")
tagMode[id]=0
return 1
end
end
end

Done + Tag on and off
To the start Previous 1 2 Next To the start
Log in to reply Scripts overviewCS2D overviewForums overview