Re: [hlcoders] Server Plugins refusing to load

2005-02-23 Thread Ronny Schedel
inker if I wasn't including it? - Original Message - From: "Ronny Schedel" <[EMAIL PROTECTED]> To: Sent: Wednesday, February 23, 2005 5:23 AM Subject: Re: [hlcoders] Server Plugins refusing to load Its every time the same, you have to include header files and have to compi

Re: [hlcoders] Server Plugins refusing to load

2005-02-23 Thread Daniel Jennings
: Sent: Wednesday, February 23, 2005 5:23 AM Subject: Re: [hlcoders] Server Plugins refusing to load > Its every time the same, you have to include header files and > have to compile and link the classes you are using. In this > case: CTraceFilterSimple. > > Greets > Ronny > &

Re: [hlcoders] Server Plugins refusing to load

2005-02-23 Thread Ronny Schedel
L PROTECTED]> To: Sent: Tuesday, February 22, 2005 7:34 PM Subject: Re: [hlcoders] Server Plugins refusing to load It seems that UTIL_ functions cause the server plugin not to load; I haven't found a working UTIL_ function that didn't prevent the plugin from loading, tho

Re: [hlcoders] Server Plugins refusing to load

2005-02-22 Thread Daniel Jennings
w I'm treading in undocumented waters, but have you any ideas? - Original Message - From: "Daniel Jennings" <[EMAIL PROTECTED]> To: Sent: Tuesday, February 22, 2005 7:34 PM Subject: Re: [hlcoders] Server Plugins refusing to load > It seems that UTIL_ functions cause

Re: [hlcoders] Server Plugins refusing to load

2005-02-22 Thread Daniel Jennings
It seems that UTIL_ functions cause the server plugin not to load; I haven't found a working UTIL_ function that didn't prevent the plugin from loading, though I'll mess around with them later. ___ To unsubscribe, edit your list preferences, or view the

Re: [hlcoders] Server Plugins refusing to load

2005-02-22 Thread Daniel Jennings
quot;Ronny Schedel" <[EMAIL PROTECTED]> To: Sent: Tuesday, February 22, 2005 11:57 AM Subject: Re: [hlcoders] Server Plugins refusing to load > You cant use it, because you dont have the cs:source header files > for this class. And you will never get these header files. When they >

Re: [hlcoders] Server Plugins refusing to load

2005-02-22 Thread Ronny Schedel
allows me to use CBaseEntity and such, let me know and I'll post it. Daniel Jennings - Original Message - From: "Ronny Schedel" <[EMAIL PROTECTED]> To: Sent: Tuesday, February 22, 2005 10:44 AM Subject: Re: [hlcoders] Server Plugins refusing to load You cant use CB

Re: [hlcoders] Server Plugins refusing to load

2005-02-22 Thread Daniel Jennings
10:49 AM Subject: Re: [hlcoders] Server Plugins refusing to load > > You cant use CBaseEntity in a server plugin. There are > > unresolved symbols, so it cant be loaded by srcds. > Uhm - yes you can. > > Try changing > CBaseCombatWeapon* pWeapon = > pBase->

Re: [hlcoders] Server Plugins refusing to load

2005-02-22 Thread Daniel Jennings
piles/builds fine it just won't load. I'm using the > > Counter-Strike: Source most recent dedicated server DLL. > > > > Thank you, > > Daniel Jennings > > > > > > - Original Message - > > From: "Alfred Reynolds" <[EMAIL

Re: [hlcoders] Server Plugins refusing to load

2005-02-22 Thread Lance Vorgin
> You cant use CBaseEntity in a server plugin. There are > unresolved symbols, so it cant be loaded by srcds. Uhm - yes you can. Try changing CBaseCombatWeapon* pWeapon = pBase->MyCombatCharacterPointer()->GetActiveWeapon(); to CBaseCombatWeapon* pWeapon = static_cast(pBase)->GetActiveWeapon(); _

Re: [hlcoders] Server Plugins refusing to load

2005-02-22 Thread Ronny Schedel
ce most recent dedicated server DLL. Thank you, Daniel Jennings - Original Message - From: "Alfred Reynolds" <[EMAIL PROTECTED]> To: Sent: Monday, February 21, 2005 10:06 PM Subject: RE: [hlcoders] Server Plugins refusing to load I will have a look at the code and see why

Re: [hlcoders] Server Plugins refusing to load

2005-02-22 Thread Daniel Jennings
quot;Alfred Reynolds" <[EMAIL PROTECTED]> To: Sent: Monday, February 21, 2005 10:06 PM Subject: RE: [hlcoders] Server Plugins refusing to load > I will have a look at the code and see why it isn't doing this already. > > - Alfred > > -Original Message- > Fro

RE: [hlcoders] Server Plugins refusing to load

2005-02-21 Thread Alfred Reynolds
erver Plugins refusing to load On linux, you can try to use something like strace (you may have to log the output) to catch where calls are messing up. But in the end, it would be very helpful if Valve included some sort of dlerror()/FormatMessage() output when a plugin fails to load. -

Re: [hlcoders] Server Plugins refusing to load

2005-02-21 Thread David Anderson
On linux, you can try to use something like strace (you may have to log the output) to catch where calls are messing up. But in the end, it would be very helpful if Valve included some sort of dlerror()/FormatMessage() output when a plugin fails to load. -David "BAILOPAN" Anderson ht