Adding back Classic/Survival Mode

Results 1 to 10 of 10
  1. #1
    Account Upgraded | Title Enabled! PenguinGuys is offline
    MemberRank
    Sep 2009 Join Date
    AlabamaLocation
    261Posts

    Adding back Classic/Survival Mode

    I've seen some people adding it back in the drop down list in the GameRoom options.

    Was it through .xml or ASM?


  2. #2
    Ā  Phoenix is offline
    ModeratorRank
    Mar 2009 Join Date
    6,890Posts

    Re: Adding back Classic/Survival Mode

    I'm quite sure it's ASM as it needs runnable edits to show it in the game mode menu.
    Posted via Mobile Device

  3. #3
    Account Upgraded | Title Enabled! PenguinGuys is offline
    MemberRank
    Sep 2009 Join Date
    AlabamaLocation
    261Posts

    Re: Adding back Classic/Survival Mode

    Well that's what I thought at first, but I've seen some people do it.. with them having no knowledge in ASM.

  4. #4
    Alpha Member gregon13 is offline
    MemberRank
    Nov 2007 Join Date
    CanadaLocation
    1,945Posts

    Re: Adding back Classic/Survival Mode

    Quote Originally Posted by PenguinGuy View Post
    Well that's what I thought at first, but I've seen some people do it.. with them having no knowledge in ASM.
    it is done in xml the only problem is it doesn't load it always crashes you'd have to do the rest in asm or obtain the newest files

  5. #5
    Account Upgraded | Title Enabled! PenguinGuys is offline
    MemberRank
    Sep 2009 Join Date
    AlabamaLocation
    261Posts

    Re: Adding back Classic/Survival Mode

    But that's all I care for now. On my new project, I can't find where the strings are push'd to show in the GameRoom.
    Last edited by PenguinGuys; 03-10-09 at 12:27 AM.

  6. #6
    Alpha Member gregon13 is offline
    MemberRank
    Nov 2007 Join Date
    CanadaLocation
    1,945Posts

    Re: Adding back Classic/Survival Mode

    Quote Originally Posted by PenguinGuy View Post
    But that's all I care for now. On my new project, I can't find where the strings are push'd to show in the GameRoom.
    to show in game room you add it in channelrule.xml

  7. #7
    Account Upgraded | Title Enabled! PenguinGuys is offline
    MemberRank
    Sep 2009 Join Date
    AlabamaLocation
    261Posts

    Re: Adding back Classic/Survival Mode

    Uhh, I don't think it's channelrule.xml
    Code:
    ?xml version="1.0" ?>
    <!--
    	GAMETYPE_DEATHMATCH_SOLO	= 0
     	GAMETYPE_DEATHMATCH_TEAM	= 1
    	GAMETYPE_GLADIATOR_SOLO		= 2
    	GAMETYPE_GLADIATOR_TEAM		= 3
    	GAMETYPE_ASSASSINATE		= 4
    	GAMETYPE_TRAINING		= 5
    	GAMETYPE_SURVIVAL		= 6
    	GAMETYPE_QUEST			= 7
    	GAMETYPE_BERSERKER		= 8 
    	GAMETYPE_DEATHMATCH_TEAM2	= 9
    	GAMETYPE_DEATHMATCH_DUEL	= 10
    -->
    
    <XML id="channelrule">
    
    	<CHANNELRULE id="0" name="novice">
    	    <GAMETYPE id="0" />			<!-- GAMETYPE_DEATHMATCH_SOLO -->
            <GAMETYPE id="1" />			<!-- GAMETYPE_DEATHMATCH_TEAM -->
    	    <GAMETYPE id="9" />			<!-- GAMETYPE_DEATHMATCH_TEAM2 -->
            <GAMETYPE id="2" />			<!-- GAMETYPE_GLADIATOR_SOLO -->
    	    <GAMETYPE id="3" />			<!-- GAMETYPE_GLADIATOR_TEAM -->
            <GAMETYPE id="4" />			<!-- GAMETYPE_ASSASSINATE -->
    	    <GAMETYPE id="5" />			<!-- GAMETYPE_TRAINING -->
    
    		<MAP name="Mansion" />
    		<MAP name="Prison" />
    		<MAP name="Prison II" />
    		<MAP name="Island" />
    		<MAP name="Garden" />
    		<MAP name="Station" />
    		<MAP name="Battle Arena" />
    		<MAP name="Factory" />
    		<MAP name="Town" />
    		<!-- <MAP name="Ruin" /> -->
    		<!-- <MAP name="Port" /> -->
    		<!-- <MAP name="Castle" /> -->
    		<!-- <MAP name="Dungeon" /> -->
    		<!-- <MAP name="Lost Shrine" /> -->
    		<!-- <MAP name="Stairway" /> -->
    		<!-- <MAP name="Snow_Town" /> -->
    	</CHANNELRULE>
    
    
    	<CHANNELRULE id="3" name="newbie">
    	    <GAMETYPE id="0" />			<!-- GAMETYPE_DEATHMATCH_SOLO -->
            <GAMETYPE id="1" />			<!-- GAMETYPE_DEATHMATCH_TEAM -->
    	    <GAMETYPE id="9" />			<!-- GAMETYPE_DEATHMATCH_TEAM2 -->
            <GAMETYPE id="2" />			<!-- GAMETYPE_GLADIATOR_SOLO -->
    	    <GAMETYPE id="3" />			<!-- GAMETYPE_GLADIATOR_TEAM -->
            <GAMETYPE id="4" />			<!-- GAMETYPE_ASSASSINATE -->
    	    <GAMETYPE id="5" />			<!-- GAMETYPE_TRAINING -->
    
    		<MAP name="Mansion" />
    		<MAP name="Prison" />
    		<MAP name="Prison II" />
    		<MAP name="Island" />
    		<MAP name="Garden" />
    		<MAP name="Station" />
    		<MAP name="Battle Arena" />
    		<MAP name="Factory" />
    		<MAP name="Town" />
    		<!-- <MAP name="Ruin" /> -->
    		<!-- <MAP name="Port" /> -->
    		<!-- <MAP name="Castle" /> -->
    		<!-- <MAP name="Dungeon" /> -->
    		<!-- <MAP name="Lost Shrine" /> -->
    		<!-- <MAP name="Stairway" /> -->
    		<!-- <MAP name="Snow_Town" /> -->
    	</CHANNELRULE>
    Just tells it what channels have different maps/game modes.

  8. #8
    Alpha Member gregon13 is offline
    MemberRank
    Nov 2007 Join Date
    CanadaLocation
    1,945Posts

    Re: Adding back Classic/Survival Mode

    GAMETYPE_SURVIVAL = 6

    add this to all your channels.... and make sure you have survivalscenario aand survivalmap in client and server and it shows it properly
    just crash when you try to load so you need to do the fixes in asm

  9. #9
    Account Upgraded | Title Enabled! PenguinGuys is offline
    MemberRank
    Sep 2009 Join Date
    AlabamaLocation
    261Posts

    Re: Adding back Classic/Survival Mode

    Lol, I'm so dumb. Thanks gregon.

  10. #10
    Alpha Member gregon13 is offline
    MemberRank
    Nov 2007 Join Date
    CanadaLocation
    1,945Posts

    Re: Adding back Classic/Survival Mode

    Quote Originally Posted by PenguinGuy View Post
    Lol, I'm so dumb. Thanks gregon.
    it's ok you just overlooked the files, i do that too



Advertisement