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

How to disable CSDM for certain maps


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
6pack
BANNED
Join Date: Mar 2006
Location: Cedarhurst, Long Island
Old 02-22-2007 , 04:42   How to disable CSDM for certain maps
Reply With Quote #1

I have csdm disabled on certain maps(maps/mapname.cfg). On these maps there are supposed to be weapons on the ground but they are not there anymore. How do I get them back or stop CSDM from removing them?
In the mapname.cfg file I have "csdm_disabled"

Thanks

Last edited by 6pack; 02-25-2007 at 11:01. Reason: Request from KWO
6pack is offline
KWo
AMX Mod X Beta Tester
Join Date: Jul 2004
Location: Poland
Old 02-22-2007 , 08:39   Re: Dont remove weapons
Reply With Quote #2

Are You using the original CSDM 2.1 version or my beta 2.1f ?
__________________
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
6pack
BANNED
Join Date: Mar 2006
Location: Cedarhurst, Long Island
Old 02-22-2007 , 12:24   Re: Dont remove weapons
Reply With Quote #3

Quote:
Originally Posted by KWo View Post
Are You using the original CSDM 2.1 version or my beta 2.1f ?
I am using the one in your signature with podbot
6pack is offline
KWo
AMX Mod X Beta Tester
Join Date: Jul 2004
Location: Poland
Old 02-22-2007 , 14:48   Re: Dont remove weapons
Reply With Quote #4

OK - that's the beta...
Let me know - if You have that command to disable CSDM on that map - CSDM Equip menu is still displayed for You or You have only troubles with removed weapons they should be on the ground? My csdm_misc version is removing weapons they are on the ground form the map, but only if csdm is active (and 2 seconds after plugin_init called (to make sure CSDM is really in te correct state).
__________________
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
6pack
BANNED
Join Date: Mar 2006
Location: Cedarhurst, Long Island
Old 02-22-2007 , 15:17   Re: Dont remove weapons
Reply With Quote #5

I don't know what you are trying to say, sorry.
Can you be more clear please,
Thanks

P.S.
Also, this has not been a problem with past versions
6pack is offline
KWo
AMX Mod X Beta Tester
Join Date: Jul 2004
Location: Poland
Old 02-22-2007 , 16:50   Re: Dont remove weapons
Reply With Quote #6

Quote:
Originally Posted by KWo View Post
Let me know - if You have that command to disable CSDM on that map - CSDM Equip menu is still displayed for You or You have only troubles with removed weapons they should be on the ground?
I'm trying to say - if You are using "csdm disabled on certain maps(maps/mapname.cfg)" - the gun menu (from CSDM) is still displayed for You on these maps or the problem is concerning ONLY to the weapons they should be on the ground (equipped by that map), "but they are not there anymore"?
__________________
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
6pack
BANNED
Join Date: Mar 2006
Location: Cedarhurst, Long Island
Old 02-23-2007 , 09:23   Re: Dont remove weapons
Reply With Quote #7

Quote:
Originally Posted by KWo View Post
I'm trying to say - if You are using "csdm disabled on certain maps(maps/mapname.cfg)" - the gun menu (from CSDM) is still displayed for You on these maps or the problem is concerning ONLY to the weapons they should be on the ground (equipped by that map), "but they are not there anymore"?
The gun menu is not displayed and the only problem is the weapons not being on the ground like for example this map attached.
Install it, run it with a mod where CSDM is no where present
Attached Files
File Type: zip cf_mapzilla.zip (36.0 KB, 393 views)
6pack is offline
Arkshine
AMX Mod X Plugin Approver
Join Date: Oct 2005
Old 02-25-2007 , 06:44   Re: Dont remove weapons
Reply With Quote #8

I had the same trouble. And after some tests it was impossible to unload CSDM module.

Now, as I've already said in an another post, my method:

- csdm_main.amxx enabled in plugins.ini
- all csdm configuration is disabled by default. (csdm.cfg)
- all csdm_**.amxx files are disabled by default except csdm_main.amxx plugin.

If I want to enable csdm on a map, I use a per-map configuration file and per-map plugin configuration file.


Ie : de_dust

/configs/csdm/extraconfig/de_dust.cfg ( only need to include what's different from the master csdm.cfg file ) :

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

[items]
;Is item mode enabled?
enabled = 1

;[...] Just put here what you need

configs/maps/de_dust.cfg ( csdm is enabled now ):

Code:
csdm_reload csdm/extraconfigs/de_dust.cfg

configs/maps/plugins-de_dust.ini :

Code:
; // .respaw file
csdm_spawn_preset.amxx

; // Misc stuff
csdm_misc.amxx

; // Spawn protection
csdm_protection.amxx
	
; // Free For All mode
csdm_ffa.amxx
	
; // Bot ffa
csdm_bot_ffa.amxx

; // Item mode
csdm_itemmode.amxx


Team_Balancer.amxx	disabled
Bad_Camper.amxx	disabled

; [...] cetera..

So, by default, csdm_main.amxx plugin and csdm module are only loaded but not enabled. And there are no problems. All is working fine.
All my configuration is based on this advanced configuration.
__________________

Last edited by Arkshine; 02-25-2007 at 06:56.
Arkshine is offline
alencore
Senior Member
Join Date: Oct 2011
Old 10-31-2013 , 01:32   Re: Dont remove weapons
Reply With Quote #9

Quote:
Originally Posted by Arkshine View Post


/configs/csdm/extraconfig/mapname.cfg ( only need to include what's different from the master csdm.cfg file ) :
Took me awhile to get my little map rotation going with different game types along classic CS game play on certain maps and this technique worked perfect for me
along Kwo's plugins-mapname.ini guides as well. Tnx!

Also this command totally works pasted on one of my map's configs....
meta unload <index no. of csdm>
__________________

Last edited by alencore; 11-18-2013 at 09:26.
alencore is offline
craigy09
Senior Member
Join Date: Mar 2010
Old 05-09-2010 , 06:32   Re: How to disable CSDM for certain maps
Reply With Quote #10

how do u only disable awp form the menu for a certain map?
craigy09 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 07:49.


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