Forum
CS2D Scripts Ideas for new Lua scripts?Ideas for new Lua scripts?
23 repliesFor 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..
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
There are many ideas you just have to think about them
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
Admin/mod comment
§4.5 - Stick to the point! No off-topic posts! 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."
@ 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."
Any another ideas ?
New radio bots [Real mod]
Counter Strike Players 3D [Real mod]
Armors, Items , Guns 3D [Real mod]
You clearly don't understand the definition of 2d.
edited 2×, last 11.05.14 10:08:30 am
BotFM the latest musics from the bot's world
Kirito2K has written
it's cs2d , not cs2d -_-.
Genius ikr.
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
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