Ideas for CS2D - READ THE FIRST POST (OP)!
3,153 replies @
lenovo/
Accurator: Map change with timer is even a feature of CS2D. It's a simple setting. Just set it to the value you want (in minutes). You don't have to script anything or to use entities:
mp_timelimit (of course it's another story if you want to force a map change just for a single map but that works as well as
Accurator just showed)




@
MikuAuahDark: Ok, ok. How about arm deals? Not like skin.

Rising XD: Say Hello to my little friend! (M249) & [bot]Adon-is-gay AWP Rising
& [bot]Adon-is-gay: Nope.



itemtype(id, "weight"), it could be use to make a anti-speedhack with the actual weapons weights instead of a unofficial list of weights in Lua.
Agree with Starkkz' suggestion, and also
Minimaps should be updated when DynWalls are triggered or breakable walls are removed.
Minimaps should be updated when DynWalls are triggered or breakable walls are removed.
Worst player ever
@
Starkkz:
Won't help you creating an anti speedhack. But I do agree that this option will be useful.

Won't help you creating an anti speedhack. But I do agree that this option will be useful.
A thousand may fall at your side, ten thousand at your right hand, but it will not come near you. You will only look with your eyes and see the recompense of the wicked. - Psalm 91:7-8 ESV

@
Starkkz:
Won't help you creating an anti speedhack.

Won't help you creating an anti speedhack.
This.

But I do agree that this option will be useful.
No.
All an anti-speedhack needs is some dedicated configuration and testing.

@
Starkkz:
Won't help you creating an anti speedhack. But I do agree that this option will be useful.

Won't help you creating an anti speedhack. But I do agree that this option will be useful.
Actually it will, the pixels per second of movement is calculated with the weight of the weapons. Here is the link to see how it works. So far I've managed to get some accurate values with the average of 10 movements within a certain time, it works for me.
Edit: With the weight I meant to say the weapon's speed modifier.
A thousand may fall at your side, ten thousand at your right hand, but it will not come near you. You will only look with your eyes and see the recompense of the wicked. - Psalm 91:7-8 ESV
@
Infinite Rain: I'm telling you that I have already solved this, my system uses a delay configuration where the divisor for the distance will be the delay between the last movement and the actual movement divided by twenty.

Code:
1
Distance = Distance / (Delay / 20)
Please stay on topic and do NOT discuss this in this thread.
This thread is for ideas only! No discussions! Thank you!
This thread is for ideas only! No discussions! Thank you!
Code:
1
menu(id,"Title@m,a,b,c,d,e,f,g,h,i,j,k,l",rows,columns)
This will create a menu with multiple buttons. Kind of like a keyboard. The width of menu buttons is decided by calculating the total amount of buttons in that menu. It would look kind of like a keyboard. The rows and column are pretty self-explanatory - they lay out the menu buttons...
@
Rainoth: A set of Lua functions to create custom menus with free button positions and additional GUI elements is planned for future releases. (not 100% sure if it will really be implemented though)

@
DC:
Dude, I would marry you then.

Dude, I would marry you then.
A thousand may fall at your side, ten thousand at your right hand, but it will not come near you. You will only look with your eyes and see the recompense of the wicked. - Psalm 91:7-8 ESV
Here are two interesting ideas:
If you go over a weapon lying on the ground and you have the same weapon, the ammunition will be added, the excess remains in the ground;
Ability to view server list and connect to some when it is inside a gameplay.


Proxy detection system? Just in case for multiple DDoS'ers in a server?

Not a professional Destiny 2 Esports player.
@
Infinite Rain: Haha.. don't say that...
@
Rafaellemos: The ammo stuff is not intended because it doesn't work that way in CS 1.6! You could script something like that with Lua though. The server list thing has been suggested already.
@
Rattle189: It's not possible to detect that automatically.

@

@

@
DC: Oh, don't be all shy now.

A thousand may fall at your side, ten thousand at your right hand, but it will not come near you. You will only look with your eyes and see the recompense of the wicked. - Psalm 91:7-8 ESV
Admin/mod comment:

@
DC: Hey the speed hack detector can't detect the hackers! Repair this!!


Adding a single parameter "weapon" would be great.
----
Another one;
There's no easy way to set object health. This can only be done with custom functions like;
Code:
1
2
3
4
5
2
3
4
5
function setObjectHealth(dynid, newhealth, id)
local curhealth = object(dynid, 'health')
local deltahealth = curhealth - newhealth
parse('damageobject '..dynid..' '..deltahealth..' '..(id ~= nil and id or 0))
end
local curhealth = object(dynid, 'health')
local deltahealth = curhealth - newhealth
parse('damageobject '..dynid..' '..deltahealth..' '..(id ~= nil and id or 0))
end
Which will trigger the objectdamage function, which, again, has no way to check if that damage came from a weapon or not.
edited 2×, last 29.04.14 12:44:35 pm