PDA

View Full Version : SDK it is released


dmk
11-05-2004, 18:13
the SDK has been released finally YEAH!!!!

devicenull
11-05-2004, 18:30
Part of it anyway :)

DS
11-05-2004, 19:14
Indeed it is. :-D Looks like there's a tidbit of SDK code in the documentation that's already available. Not a lot, but still interesting nonetheless.

http://www.valve-erc.com/srcsdk/console/developer_console.html

(The code blocks look bad in Firefox, for now have to use IE too see them properly :-()

Edit: The page has since been updated and the code blocks look better in FF now.

Sveach
11-10-2004, 00:01
I am greatly looking forward to this, I can imagine it will be better with you devs having amxmodx and many, many plugins under your belt. As a server admin, this should be a GREAT utility. Keep us updated on this project, and let me know if you need help with beta testing, etc. I'm also a member of srcds.com, and all of us over there have great hopes for this project.

Downtown1
11-16-2004, 21:13
Cool, I must've missed this page.. well since HL2 is still preloading, I have nothing better to do but look at it!


if ( my_variable.GetInt() == 42 ) DoSomething();
if ( my_variable.GetFloat() == 42.0f ) DoSomething();
if ( strcmp(my_variable.GetString(), "42")==0 ) DoSomething();


Makes you wonder why they didn't just overload the == operator to use with ints, doubles, and chars :shock:

BAILOPAN
11-17-2004, 07:55
overloading operators is probably a bad idea for that because it would obscure the actual value types, and people might be writing more C-style code.