Re: [hlcoders] Server Plugins refusing to load

2005-02-23 Thread Ronny Schedel
@list.valvesoftware.com 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, though I'll mess around with them

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 I've traced my problem

Re: [hlcoders] Server Plugins refusing to load

2005-02-23 Thread Ronny Schedel
it? - Original Message - From: Ronny Schedel [EMAIL PROTECTED] To: hlcoders@list.valvesoftware.com 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

Re: [hlcoders] Server Plugins refusing to load

2005-02-22 Thread Daniel Jennings
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- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David Anderson Sent

Re: [hlcoders] Server Plugins refusing to load

2005-02-22 Thread Ronny Schedel
- Original Message - From: Alfred Reynolds [EMAIL PROTECTED] To: hlcoders@list.valvesoftware.com 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

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 =

Re: [hlcoders] Server Plugins refusing to load

2005-02-22 Thread Daniel Jennings
:44 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. Greets Ronny Thanks. Here's my suspicious code: if ( FStrEq( pcmd, !giveammo

Re: [hlcoders] Server Plugins refusing to load

2005-02-22 Thread Daniel Jennings
: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-MyCombatCharacterPointer()-GetActiveWeapon

Re: [hlcoders] Server Plugins refusing to load

2005-02-22 Thread Ronny Schedel
that 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: hlcoders@list.valvesoftware.com Sent: Tuesday, February 22, 2005 10:44 AM Subject: Re: [hlcoders] Server Plugins refusing to load You cant use

Re: [hlcoders] Server Plugins refusing to load

2005-02-22 Thread Daniel Jennings
Schedel [EMAIL PROTECTED] To: hlcoders@list.valvesoftware.com 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

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

Re: [hlcoders] Server Plugins refusing to load

2005-02-22 Thread Daniel Jennings
treading in undocumented waters, but have you any ideas? - Original Message - From: Daniel Jennings [EMAIL PROTECTED] To: hlcoders@list.valvesoftware.com Sent: Tuesday, February 22, 2005 7:34 PM Subject: Re: [hlcoders] Server Plugins refusing to load It seems that UTIL_ functions cause

[hlcoders] Server Plugins refusing to load

2005-02-21 Thread Daniel Jennings
Is there any way to tell why my Server Plugins (on Linux dedicated server) are refusing to load? They compile and link correctly but I cannot tell why they wont load. Thank you, Daniel Jennings ___ To unsubscribe, edit your list preferences, or view

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

RE: [hlcoders] Server Plugins refusing to load

2005-02-21 Thread Alfred Reynolds
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. -David