English Ideas for CS2D - READ THE FIRST POST (OP)!

3,231 replies
Goto Page
To the start Previous 1 2 ... 104 105 106 ... 161 162 Next To the start
13.07.16 06:14:46 pm
Up
sonkii
User
Offline Off
cs2d_player:But,in cs1.6 scout increase players speed.CS series has it too.
Inactive dude
13.07.16 11:14:06 pm
Up
Waldin
User
Offline Off
Ikr, this is a useless idea, but we need cs2d look better right?
This can help a 0.0003% lol. Add more frames to legs.
user Waldin (2014) has written:
can be create 3D option for tiles on 3D
user DC (2014) has written:
@user Waldin: This is a 2D game. there are no 3D tiles.
changelog (2017) has written:
ADDED Experimental 3D rendering mode
14.07.16 12:27:42 am
Up
Mr_Benson
BANNED
Offline Off
- @user P_206: Why not.
INFO do you mean message notifications ?
14.07.16 10:12:53 am
Up
GeoB99
Moderator
Offline Off
@user P_206 / @user Mr_Benson: To be correct, you could create a script which produces this effect with LuaSocket. The socket gives you network abilities such as HTTP access so there wouldn't be a problem to implement this feature by ourselves.
14.07.16 01:50:46 pm
Up
P_206
BANNED
Offline Off
@user GeoB99: Its not a script , its a modification.
Maybe DC can do it
http://usgninterne.comli.com/site/index.html unreal software funny screens | I offer this to ahmad : https://www.youtube.com/watch?v=x35zohgjxeo
15.07.16 09:10:08 am
Up
HPB
User
Offline Off
More options for cs2d entity env_sound, such as fade in, fade out, pitch, e.t.c..
15.07.16 03:26:52 pm
Up
sonkii
User
Offline Off
How about add some cs2d npcs lua hooks.
Inactive dude
15.07.16 10:58:42 pm
Up
Waldin
User
Offline Off
How make lua hooks for CS2D NPCs if it doesn't have NPCs!
Please explain yourself again
Edit: after see my post, omg how wrong im, poor hostages (and also AI).
Edi20x: omg srs waldin? poor soldiers zombies,etc.
edited 4×, last 15.07.16 11:34:02 pm
user Waldin (2014) has written:
can be create 3D option for tiles on 3D
user DC (2014) has written:
@user Waldin: This is a 2D game. there are no 3D tiles.
changelog (2017) has written:
ADDED Experimental 3D rendering mode
15.07.16 11:18:33 pm
Up
TrialAndError
User
Offline Off
@user Waldin: CS2D does have NPCs.
15.07.16 11:25:02 pm
Up
Masea
Super User
Offline Off
user sonkii has written:
How about add some cs2d npcs lua hooks.

Do you mean add some new npcs? Damn dude, just read the first post as mentioned at title already.
Shit your pants: file cs2d Outlast II Mod (30) | Create your UI faster: CS2D UI Framework
15.07.16 11:30:29 pm
Up
TrialAndError
User
Offline Off
@user Masea: He says addhooks to have more control over the NPCs
16.07.16 04:24:41 am
Up
Jedediastwo
User
Offline Off
A executable shortcup to play in one server.
16.07.16 06:10:39 am
Up
Waldin
User
Offline Off
@user Jedediastwo you can use the Command line parameter
-j
or
-join
. And if the server has password use
-pw
or
-password
.
Readme has written:
-j ADDRESS / -join ADDRESS (Join a server)
-pw PW / -password PW (join or host with this password)
user Waldin (2014) has written:
can be create 3D option for tiles on 3D
user DC (2014) has written:
@user Waldin: This is a 2D game. there are no 3D tiles.
changelog (2017) has written:
ADDED Experimental 3D rendering mode
16.07.16 07:26:51 am
Up
Baloon
GAME BANNED
Offline Off
I think this is pretty good idea,
how about disabling cursor when you use sniper without scope?
And I don't know if someone already suggest this idea, and I am not sure LUA can do this.
16.07.16 07:27:33 am
Up
sonkii
User
Offline Off
There's already have default npcs.Also,the hostages ai must like in condition zero AI?Nope.On the other hand,hostages are "not" NPCs.They have their own entities.

PS:I mean add some cs2d lua cmd addhook for NPCs not add new NPCs lol.

P.s.s:CS2d will became CSCZ2D if hostages use CZ AI.

P.S.S.S:My lastest idea is useful for order the npc move to some places,edit their damage or anything.

If my lastest idea was pretty lame,one note,ignore.

Other than related on cs2d NPCs,we need more hooks.
edited 4×, last 16.07.16 12:09:05 pm
Inactive dude
16.07.16 12:17:03 pm
Up
Baloon
GAME BANNED
Offline Off
@user sonkii: what do you mean about addhook? Oh, do you mean like commands?
16.07.16 12:40:02 pm
Up
Masea
Super User
Offline Off
@user sonkii: There is already some hooks about NPCs; cs2d lua hook objectdamage, cs2d lua hook objectkill. I really don't know, what could be more.
Shit your pants: file cs2d Outlast II Mod (30) | Create your UI faster: CS2D UI Framework
16.07.16 03:40:49 pm
Up
sonkii
User
Offline Off
Make the editor show X and Y coordinats of the position at the cursor.The texts must be show at botton right.Useful if you wanna find coordinats for cs2d lua cmd projectile.

P.S:Sorry for bad english.
Inactive dude
16.07.16 03:48:25 pm
Up
Masea
Super User
Offline Off
@user sonkii: Dude seriously, look one more time before suggesting new idea if it is needed or useless. You can see the tilex and tiley in editor, already. So, you can get x and y coordinates by using calculator;
x = tilex*32+16
and
y = tiley*32+16
Shit your pants: file cs2d Outlast II Mod (30) | Create your UI faster: CS2D UI Framework
16.07.16 04:20:13 pm
Up
Baloon
GAME BANNED
Offline Off
@user Masea: I don't have much to say, but maybe this calculation works better than yours...
Code:
1
2
3
4
5
6
tx = player(id,"tilex")
ty = player(id,"tiley")
xx = tx*32+16
yy = ty*32+16
x = math.floor(xx)
y = math.floor(yy)

Use tx an ty for tilex and tiley.
and I haven't test it yet, I use my phone.

Edit: wrong
edited 1×, last 16.07.16 04:27:17 pm
To the start Previous 1 2 ... 104 105 106 ... 161 162 Next To the start