Quote:
Check those settings:
in csdm.cfg in [settings] section:
spawnmode = preset
|
It was already there..
Quote:
in plugins-csdm.ini this line should be enabled:
csdm_spawn_preset.amxx
|
There is no such file plugins-csdm.ini. There was a file called sample_plugins which contains that line csdm_spawn_preset and is enabled by default.
Quote:
|
The file with spawn points should be located ins amxmodx\configs\csdm and shoulbe be called mapname.spawns.cfg
|
Yes the new spawn files are being created there but no effect on spawns.
Quote:
Another thing. In csdm_spawn_presets.sma there is a limitation for the path length for Your files.
Code:
readSpawns()
{
new Map[32], config[32], MapFile[64]
get_mapname(Map, 31)
get_configsdir(config, 31)
format(MapFile, 63, "%s\csdm\%s.spawns.cfg", config, Map)
Change config[32] to config[256], MapFile[64] to MapFile[256], then get_mapname(Map, 31) to get_mapname(Map, 255) and format(MapFile, 63, "%s\csdm\%s.spawns.cfg", config, Map) to format(MapFile, 255, "%s\csdm\%s.spawns.cfg", config, Map)
save that sma and compile it once more. Copy compiled version to amxmodx\plugins folder. That should help.
|
Well, is this necessary??? I dont want to make large spawns.....
Have you tried those spawns which i attached. Do you want to create spawns for some more maps so that you can test it on your server???
__________________