Re: [hlcoders] OB Linux compiling pb with achievements_hlx and npc_talker

2008-08-13 Thread Janek
Hi all, Just to let you informed that I finally succeeded to compile OB under linux. I have to face many problems especially with npc_xxx files. This problem were related to #include having bad case and also to function call. I fixed this problem by creating temporary variables. The good news is

[hlcoders] Get/dump console output to file

2008-08-13 Thread Tiago Conceição
Now can i get the console output from srcds using a plugin Anyway without redirecting stdout?? or dup stdout to a file?? thanks _ Receba GRÁTIS as mensagens do Messenger no seu celular quando você estiver offline. Conheça o MSN

Re: [hlcoders] Get/dump console output to file

2008-08-13 Thread Jake Breen
You could use the condump command. Unless you're talking about something else.. Tiago Conceição wrote: Now can i get the console output from srcds using a plugin Anyway without redirecting stdout?? or dup stdout to a file?? thanks

Re: [hlcoders] Get/dump console output to file

2008-08-13 Thread Keeper
I think he's wanting to hook all console output for some reason. This would include Msg, Warning, DevMsg, LogPrint... Don't know what this would be useful for tho...any chance you can tell us sn4k3? Maybe there's another way to get what you want. Keeper -Original Message- From: Jake

Re: [hlcoders] Get/dump console output to file

2008-08-13 Thread Tiago Conceição
heres condump command? not exist under srcds commands or c++ funcs I only want write console output to a file, reason: Very people not have acess to server console, i just want write a private thing for know whats happen in console, writing the content to a file whats happen if i Hook

[hlcoders] Player rmodels not updating pose to correspond with aim.

2008-08-13 Thread Jed
I've got a problem where a players playermodel isn't updating it's aim to correspond with where the player is looking. I noticed it today while testing on-line and against some bots and its really annoying as you can't tell where they're aiming their weapons. If I create a bot and set it to mimic

Re: [hlcoders] Get/dump console output to file

2008-08-13 Thread Chris Deegan
Not sure if this is useful, but as I used to run all of my srcds instances in 'screen' on Linux - very handy when you are running headlesss remote servers. Doing it this way you can simply spawn the screen with the -L switch. This will pump all text into a file called screenlog.0. It gets

Re: [hlcoders] Get/dump console output to file

2008-08-13 Thread 1nsane
If this is on srcds, add -condebug to your launch options. This will create a file called console.log which will log everything. If you are running this in developer X mode you will get all the console output logged. However... it will log evereything to that one file, so you can get 1gb text

Re: [hlcoders] Get/dump console output to file

2008-08-13 Thread Jay Stelly
Depending on which version of the engine you're using you will have access to some or all of these: -condebug command line parameter will do this (mentioned below) con_logfile will dump to a specific file (and can be turned on off). If you're writing a mod or plugin you can write/set your own

Re: [hlcoders] Get/dump console output to file

2008-08-13 Thread Tiago Conceição
like i say no acess to SSH or computer no acess to console command line i just want a way to doit inside a plugin, there are no funcs to dup stdout to a file? thanks Date: Wed, 13 Aug 2008 16:34:28 -0700 From: [EMAIL PROTECTED] To: hlcoders@list.valvesoftware.com Subject: Re: [hlcoders]