Results 1 to 5 of 5

Thread: M6L3D

  1. #1

    Default M6L3D

    I have spawn protection and killstreaks built in on spawn and connected on maps but when I play this map everything shuts off. Is this map not included in the Patch?

  2. #2

    Default

    If you load from dmprecache, then check the map's .scr file to see if you are execing dmprecache.scr in there. That is most likely the problem.

  3. #3

    Default

    ja dmprecacher is in the map.scr and connected and spawn is in dmprecache. works on every map I have loaded up until this one.

    Code:
    	level waittill prespawn
    
    	local.master = spawn scriptmaster
    	local.master aliascache gasmask1 sound/characters/gasmask1.wav soundparms 0.7 0.0 1.0 0.0 86 100 dialog loaded maps "dm m obj train "
    	local.master aliascache gasmask2 sound/characters/gasmask2.wav soundparms 0.7 0.0 1.0 0.0 86 100 dialog loaded maps "dm m obj train "
    	local.master aliascache gasmask3 sound/characters/gasmask3.wav soundparms 0.7 0.0 1.0 0.0 86 100 dialog loaded maps "dm m obj train "
    	local.master aliascache steamloop sound/mechanics/Mec_SteamLoop_01.wav soundparms 1.0 0.3 1.0 0.0 320 2200 item loaded maps "m6l3c m6l3d m6l3e"
    
    	exec soundfix/mapswitch.scr
    	thread global/exploder.scr::main
    
    	level.fogplane = 900 //10000
    	$world farplane level.fogplane
    	level.fogred = .2
    	level.foggreen = .2
    	level.fogblue = .3
    	$world farplane_color (level.fogred + " " + level.foggreen + " " + level.fogblue)
    
    	exec global/door_locked.scr
    	exec global/ambient.scr m6l3d
    	exec globa/DMprecache.scr
    	exec global/night_mod_m6l3d.scr
    
    	thread pipeleak
    
    	level waittill spawn
    the dmprecache

    Code:
    level waittill spawn
    
    //REBORN EVENT REGISTERING
    local.result = registerev "kill" global/killhandler.scr
    local.result = registerev "connected" global/connectedhandler.scr
    local.result = registerev "spawn" global/spawnhandler.scr

  4. #4

    Default

    You made a type-o though:
    PHP Code:
    exec globa/DMprecache.scr 
    Should be:
    PHP Code:
    exec global/DMprecache.scr 
    =|UWS|=|SA|Vince - Head Serveradmin - mohaa.uwsclan.us (MOH:AA - FT)

  5. #5

    Default

    Sure did. Thanks eyes skipped right over that and checked spelling of dmprecache

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •