Raised This Month: $51 Target: $400
 12% 

[Solved] Problem : load/unload csdm module


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Arkshine
AMX Mod X Plugin Approver
Join Date: Oct 2005
Old 01-16-2007 , 02:00   [Solved] Problem : load/unload csdm module
Reply With Quote #1

Hello,

I've tested this :
  • CSDM 2.1f
  • Dedicated server on my PC (windows), but I've tested on linux dedicated serveur too.
  • Csdm is disabled by default in csdm.cfg.


de_dust2

Quote:
de_dust2.cfg :

meta unload CSDM2
Quote:
plugins-de_dust2.ini :

nothing

---------


cs_assault

Quote:
cs_assault.cfg :

nothing
Quote:
plugins-cs_assault.ini :

csdm_main.amxx

---------

Server starts by default on de_dust2 map :
  1. de_dust2 : no CSDM module [ok]
  2. changelevel to cs_assault : CSDM module loaded [ok]
  3. changelevel to de_dust2 : CSDM module unloded [ok]
  4. changelevel to cs_assault : no CSDM module [bad]


So, why ?


---------


Another question :


Also I've tried to load csdm with 'meta load addons/amxmodx/modules/csdm_amxx' but :
  • In HLSW, it works nice. CSDM2 is loaded.
  • In cs_assault.cfg, I get : Couldn't resolve given path into a file: csdm_amxx (I've tried several path and nothing works)

Again, why ?


---------


Thanks in advance !
__________________

Last edited by Arkshine; 01-17-2007 at 05:50.
Arkshine is offline
BAILOPAN
Join Date: Jan 2004
Old 01-17-2007 , 02:06   Re: Problem : load/unload csdm module
Reply With Quote #2

Do not unload AMX Mod X modules through Metamod. (I will make a mental note to disable this in the SDK.)
__________________
egg
BAILOPAN is offline
KWo
AMX Mod X Beta Tester
Join Date: Jul 2004
Location: Poland
Old 01-17-2007 , 02:12   Re: Problem : load/unload csdm module
Reply With Quote #3

If You don't wish CSDM plugins working on some particular maps You can try to use plugin pause/unpause commands in map specyfic configuration. I believe it will work.
__________________
The Fullpack of podbot mm V3B22 - 24 apr 2012!!! is available here.
The All-In-One 3.2a package - 02 jun 2013 (AMX X 1.8.2 [with ATAC 3.0.1b , CSDM2.1.3c beta, CM OE 0.6.5, podbot mm V3B22c and mm 1.20) is available here.
The newest Beta V3B23a (rel. 28 august 2018!!!) is available here.
KWo is offline
Arkshine
AMX Mod X Plugin Approver
Join Date: Oct 2005
Old 01-17-2007 , 05:50   Re: Problem : load/unload csdm module
Reply With Quote #4

ok, thanks.
__________________
Arkshine is offline
KWo
AMX Mod X Beta Tester
Join Date: Jul 2004
Location: Poland
Old 01-17-2007 , 13:23   Re: [Solved] Problem : load/unload csdm module
Reply With Quote #5

Post here how exactly You did it (if it really works now) to let see Your solution by other people they may have the same problem.
Read what I was elaborating here about map specyfic configurations.
__________________
The Fullpack of podbot mm V3B22 - 24 apr 2012!!! is available here.
The All-In-One 3.2a package - 02 jun 2013 (AMX X 1.8.2 [with ATAC 3.0.1b , CSDM2.1.3c beta, CM OE 0.6.5, podbot mm V3B22c and mm 1.20) is available here.
The newest Beta V3B23a (rel. 28 august 2018!!!) is available here.
KWo is offline
Arkshine
AMX Mod X Plugin Approver
Join Date: Oct 2005
Old 01-17-2007 , 14:12   Re: [Solved] Problem : load/unload csdm module
Reply With Quote #6

I've tried to pause CSDM without success. It's not allowed by plugin.

-------

Quote:
Read what I was elaborating here about map specyfic configurations.
I know.

All my config is elabored like this.


Ie :
By default, all is disabled in csdm.cfg file.

plugins.ini

Code:
csdm_main.amxx

cs_italy.cfg

Code:
csdm_reload csdm/extraconfigs/cs_italy.cfg
mp_timelimit 30

plugins-cs_italy.ini

Code:
; // ----[ PLUGINS UTILES POUR LE MODE DM ]----

	; // Active les spawns via les fichiers présent dans /csdm
	csdm_spawn_preset.amxx

	; // Différentes options comme le rechargement auto ou le retrait des objectifs
	csdm_misc.amxx

	; // Protection des joueurs lorsqu'ils ressucitent
	csdm_protection.amxx
	
	; // Mode chacun pour soi. 
	csdm_ffa.amxx
	
	; // ffa pour les bots
	csdm_bot_ffa.amxx

	; // Mode items. Des objets, armes, munitions etc se trouvent un peu partout dans la map
	csdm_itemmode.amxx debug


; // ----[ DESACTIVATION DE CERTAINS PLUGINS INUTILES POUR CE MOD ]----
	
	; // Equilibrage automatique des équipes. (cette version fonctionne map avec csdm)
	Team_Balancer.amxx             disabled
	
	;// Anti-campeur avec moultes options
	Bad_Camper.amxx                disabled
	
	; // Permet d'enterrer des grenades afin qu'elle s'active quand un ennemi approche. (même principe que les mines)
	Grenade_Trap.amxx              disabled
	
	; // Permet d'acheter et d'utiliser des grenades paralysantes
	Frost_Nades.amxx               disabled
	
	; // Sac jaune qui apparait sur un mort contenant armes, argent etc..
	Looting_the_Death.amxx         disabled
	
	; // Permet de lancer des couteaux
	Throwing_Knives.amxx           disabled
	
	; // Modification de la vitesse de déplacement avec le couteau, awp, bombe, grenades en main
	Various_Weapon_Speeds.amxx     disabled
	
	; // Ant-afk avec moultes options
	Play_or_Be_Kicked.amx          disabled

csdm/extraconfigs/cs_italy.cfg

Code:
[settings]

;Sets whether CSDM is enabled or not.
enabled = 1

;Sets the spawn mode.
; "none" - users spawn at normal map spawn points
; "preset" - csdm_spawn_preset.amxx required, uses predefined spawns in config files
; -- others may be supplied by 3rd party plugins
spawnmode = preset

;Sets the spawn waiting time
spawn_wait_time = 3

[ffa]
;Set whether free for all mode is enabled by default
enabled = 1

;Set whether the radar is scrambled (0) or hidden at all (1)
radar_disable = 1

[items]

;Is item mode enabled?
enabled = 1

In fact, I've tried to unload CSDM to prevent problems with GunGame plugin. (Actually there is a respawn bug on my server sometimes.)

All that I wanted to know. So It seems that it's impossible.
__________________

Last edited by Arkshine; 01-17-2007 at 14:17.
Arkshine is offline
KWo
AMX Mod X Beta Tester
Join Date: Jul 2004
Location: Poland
Old 01-18-2007 , 02:10   Re: [Solved] Problem : load/unload csdm module
Reply With Quote #7

Are You sure there is no plugins-csdm.ini file in Your amxmodx/configs folder? I was thinking about pause csdm plugins - not pausing the module...
__________________
The Fullpack of podbot mm V3B22 - 24 apr 2012!!! is available here.
The All-In-One 3.2a package - 02 jun 2013 (AMX X 1.8.2 [with ATAC 3.0.1b , CSDM2.1.3c beta, CM OE 0.6.5, podbot mm V3B22c and mm 1.20) is available here.
The newest Beta V3B23a (rel. 28 august 2018!!!) is available here.
KWo is offline
Arkshine
AMX Mod X Plugin Approver
Join Date: Oct 2005
Old 01-18-2007 , 03:12   Re: [Solved] Problem : load/unload csdm module
Reply With Quote #8

I don't understand.

Why do you speak about pausing csdm plugins ?

On my server, this plugins are loaded with a plugin-map.ini file only. By default all plugins are disabled and unloaded except csdm_main.amxx in plugins.ini file.

I was speaking about csdm module.


Ie : de_aztec, with Gungame plugin.

By default, there are just csdm_main plugin (plugins.ini) and csdm module loaded.
And I was thinking that csdm module could cause some trouble with Gungame. (respawn bug sometimes). That's why I wanted to unload csdm module.

But It seems there is no way.

Sorry if I don't understand what you say exactly. -_-"
__________________
Arkshine is offline
KWo
AMX Mod X Beta Tester
Join Date: Jul 2004
Location: Poland
Old 01-19-2007 , 02:55   Re: [Solved] Problem : load/unload csdm module
Reply With Quote #9

What I'm trying to say is this - if the plugins aren't working, You shouldn't have the problem with GunGame plugin. The game should work like without these plugins...
__________________
The Fullpack of podbot mm V3B22 - 24 apr 2012!!! is available here.
The All-In-One 3.2a package - 02 jun 2013 (AMX X 1.8.2 [with ATAC 3.0.1b , CSDM2.1.3c beta, CM OE 0.6.5, podbot mm V3B22c and mm 1.20) is available here.
The newest Beta V3B23a (rel. 28 august 2018!!!) is available here.
KWo is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 22:47.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode